diff --git a/.cursor/commands/stylisticmax-len.md b/.cursor/commands/stylisticmax-len.md new file mode 100644 index 000000000..e69de29bb diff --git a/.env.example b/.env.example index 4d52f4810..4967faf94 100644 --- a/.env.example +++ b/.env.example @@ -38,6 +38,7 @@ APP_MNEMONIC = '' NEYNAR_API_KEY = '' SUPABASE_SERVICE_KEY = '' YOUTUBE_API_KEY = '' +MORALIS_API_KEY = '' # These are specific to the environment # and so need to be configured locally @@ -47,6 +48,8 @@ NEXT_PUBLIC_SUPABASE_URL = '' NEXT_PUBLIC_SUPABASE_ANON_KEY = '' NEXT_PUBLIC_PRIVY_API_KEY = '' NEXT_PUBLIC_ALCHEMY_API_KEY = '' # Also used for the Nouns Home fidget RPC fallback +# Optional: used for Directory fidget (ERC20 + NFT holders) +NEXT_PUBLIC_MORALIS_API_KEY = '' # Nouns Home fidget (optional overrides) # NOUNS_RPC_URL = '' diff --git a/BRANCH_ANALYSIS.md b/BRANCH_ANALYSIS.md new file mode 100644 index 000000000..28e1bbf07 --- /dev/null +++ b/BRANCH_ANALYSIS.md @@ -0,0 +1,260 @@ +# Branch Analysis: `codex/update-token-directory-api` vs `canary` + +## Summary +- **Total Changes**: 38 files changed, 6,236 insertions(+), 31 deletions(-) +- **Main Feature**: New Token Directory fidget with API endpoint for displaying token/NFT holders, Farcaster channel members, and CSV-uploaded directories + +--- + +## Itemized Changes + +### 1. Core Feature Files + +#### 1.1 New Directory Fidget Component +- **File**: `src/fidgets/token/Directory.tsx` +- **Size**: 2,373 lines (new file) +- **Purpose**: Main React component for displaying directory of token holders, Farcaster channel members, or CSV-uploaded users +- **Key Features**: + - Three data sources: token holders, Farcaster channels, CSV uploads + - Two layout styles: cards and list + - Multiple sort options (token holdings, followers) + - Pagination + - Real-time data fetching with debouncing + - Settings backfill from `lastFetchSettings` + +#### 1.2 New API Endpoint +- **File**: `src/pages/api/token/directory.ts` +- **Size**: 1,105 lines (new file) +- **Purpose**: Server-side API for fetching token holder data +- **Key Features**: + - Supports ERC20 tokens and NFTs + - Multiple networks: Base, Polygon, Ethereum Mainnet + - Integrates with Moralis and Alchemy APIs + - Fetches ENS metadata + - Enriches with Neynar profile data + - Aggregates holders by FID + +### 2. Supporting Utility Modules + +#### 2.1 Data Transformation +- **File**: `src/common/data/api/token/transform.ts` (316 lines) +- **Purpose**: Transforms raw holder data into directory member format +- **Functions**: `transformAndAggregate`, `extractNeynarProfileData`, `extractPrimaryAddress` + +#### 2.2 Type Definitions +- **File**: `src/common/data/api/token/types.ts` (113 lines) +- **Purpose**: Centralized TypeScript types for directory API + +#### 2.3 Utility Functions +- **File**: `src/common/data/api/token/utils.ts` (137 lines) +- **Purpose**: Helper functions (address normalization, balance parsing, social record parsing) + +#### 2.4 ENS Enrichment +- **File**: `src/common/data/api/token/enrichEns.ts` (153 lines) +- **Purpose**: Fetches ENS metadata using Enstate.rs and wagmi + +#### 2.5 Neynar Enrichment +- **File**: `src/common/data/api/token/enrichNeynar.ts` (68 lines) +- **Purpose**: Fetches Farcaster profile data via Neynar API + +#### 2.6 Moralis Integration +- **File**: `src/common/data/api/token/fetchMoralis.ts` (121 lines) +- **Purpose**: Fetches ERC20 token holders from Moralis API + +#### 2.7 Dependency Injection +- **File**: `src/common/data/api/token/dependencies.ts` (39 lines) +- **Purpose**: Provides dependency injection for testing + +### 3. Infrastructure Changes + +#### 3.1 FidgetWrapper Enhancement +- **File**: `src/common/fidgets/FidgetWrapper.tsx` (+99 lines, -31 lines) +- **Changes**: Added settings backfill logic using `lastFetchSettings` from fidget data +- **Purpose**: Automatically populates empty settings from previous fetch configuration + +#### 3.2 New API Endpoints +- **File**: `src/pages/api/farcaster/neynar/bulk-address.ts` (34 lines) +- **Purpose**: Bulk Farcaster user lookup by Ethereum addresses + +### 4. Documentation + +#### 4.1 API Cleanup Opportunities +- **File**: `docs/API_CLEANUP_OPPORTUNITIES.md` (569 lines) +- **Purpose**: Documents potential API simplifications + +#### 4.2 Data Field Patterns +- **File**: `docs/SYSTEMS/FIDGETS/DATA_FIELD_PATTERNS.md` (625 lines) +- **Purpose**: Documents fidget data field patterns + +### 5. Minor Updates +- Updated various components to support new Directory fidget +- Added SVG icons (ens.svg, etherscan.svg, github.svg) +- Updated package.json dependencies +- Added environment variable examples + +--- + +## Areas of Unnecessary Complexity + +### 🔴 Critical Issues + +#### 1. **Massive Single File: Directory.tsx (2,373 lines)** + - **Problem**: One component file contains: + - Component logic (45+ React hooks) + - Data fetching logic (3 different sources) + - CSV parsing logic + - Data transformation logic + - UI rendering (cards + list views) + - Helper functions (duplicated from API) + - **Impact**: Extremely difficult to maintain, test, and understand + - **Recommendation**: Split into: + - `Directory.tsx` (main component, ~200 lines) + - `useDirectoryData.ts` (data fetching hook) + - `useCsvParser.ts` (CSV parsing logic) + - `DirectoryCardView.tsx` (card layout) + - `DirectoryListView.tsx` (list layout) + - `directoryUtils.ts` (shared utilities) + +#### 2. **Duplicate Logic Between Component and API** + - **Problem**: Functions duplicated in both files: + - `parseSocialRecord` (exists in both Directory.tsx and API/utils.ts) + - `extractNeynarPrimaryAddress` (exists in both Directory.tsx and transform.ts) + - `extractNeynarSocialAccounts` (exists in both Directory.tsx and transform.ts) + - `normalizeAddress` (exists in both, though API version is exported) + - **Impact**: Code duplication, maintenance burden, potential inconsistencies + - **Recommendation**: Move all shared utilities to `src/common/data/api/token/utils.ts` and import + +#### 3. **Complex State Management in Component** + - **Problem**: Component uses 45+ React hooks (useState, useEffect, useCallback, useMemo, useRef) + - **Specific Issues**: + - Multiple interdependent useEffects + - Complex dependency arrays + - State synchronization logic scattered throughout + - AbortController management mixed with data fetching + - **Impact**: Difficult to debug, potential race conditions, performance issues + - **Recommendation**: Extract to custom hooks: + - `useDirectoryFetch.ts` (handles all fetching logic) + - `useDirectoryState.ts` (manages local UI state) + - `useDirectoryPagination.ts` (handles pagination) + +#### 4. **API Endpoint Too Large (1,105 lines)** + - **Problem**: Single API handler contains: + - Multiple data source fetchers (Moralis, Alchemy) + - ENS enrichment logic + - Neynar enrichment logic + - Data transformation + - Error handling + - **Impact**: Hard to test individual pieces, difficult to maintain + - **Recommendation**: Already partially modularized, but could further split: + - Keep main handler thin (~100 lines) + - Move fetchers to separate modules (already done) + - Create orchestration layer + +### 🟡 Moderate Issues + +#### 5. **Overly Complex CSV Parsing** + - **Problem**: CSV parsing logic embedded in component (~200 lines) + - **Issues**: + - Header detection logic + - Multiple type handling (address, fid, username) + - Fallback parsing logic + - Inline chunking utilities + - **Recommendation**: Extract to `src/common/data/api/token/csvParser.ts` + +#### 6. **Settings Backfill Logic in FidgetWrapper** + - **Problem**: Generic backfill logic added to FidgetWrapper (~70 lines) + - **Issues**: + - Uses `isEqual` from lodash for deep comparison + - Complex serialization/deserialization logic + - May affect all fidgets, not just Directory + - **Impact**: Could cause unexpected behavior in other fidgets + - **Recommendation**: Move to Directory-specific hook or make opt-in + +#### 7. **Multiple Data Source Handling** + - **Problem**: Three completely different data sources handled in one component + - **Issues**: + - Different fetch functions for each source + - Different data transformation logic + - Different error handling + - **Recommendation**: Create abstraction layer: + - `DirectoryDataSource` interface + - `TokenHoldersSource`, `FarcasterChannelSource`, `CsvSource` implementations + - Unified `fetchDirectoryData` function + +#### 8. **Complex Data Enrichment Pipeline** + - **Problem**: Multiple enrichment steps with conditional logic + - **Issues**: + - ENS enrichment (Enstate.rs + wagmi fallback) + - Neynar enrichment (batched lookups) + - Social account extraction + - Primary address resolution + - **Recommendation**: Create enrichment pipeline: + - `EnrichmentPipeline` class + - Individual enrichment steps as plugins + - Configurable enrichment options + +### 🟢 Minor Issues + +#### 9. **Type Safety Issues** + - **Problem**: Extensive use of `any` types in CSV parsing and Neynar response handling + - **Recommendation**: Add proper types for all API responses + +#### 10. **Hardcoded Constants** + - **Problem**: Magic numbers and strings scattered throughout: + - `PAGE_SIZE = 100` + - `CHANNEL_FETCH_DEBOUNCE_MS = 800` + - `STALE_AFTER_MS = 60 * 60 * 1000` + - Batch sizes (25, 50, 100) + - **Recommendation**: Move to config file or constants module + +#### 11. **Error Handling Inconsistency** + - **Problem**: Different error handling patterns: + - Some functions throw errors + - Some return empty objects/arrays + - Some log and continue + - **Recommendation**: Standardize error handling strategy + +#### 12. **Excessive Console Logging** + - **Problem**: Many `console.log` statements throughout code + - **Recommendation**: Use proper logging library or remove debug logs + +--- + +## Recommendations Summary + +### Immediate Actions (High Priority) +1. **Split Directory.tsx** into smaller, focused modules +2. **Remove duplicate code** between component and API +3. **Extract data fetching** to custom hooks +4. **Create data source abstraction** for the three sources + +### Short-term Improvements (Medium Priority) +5. Extract CSV parsing to separate module +6. Simplify FidgetWrapper backfill logic (make opt-in) +7. Standardize error handling +8. Add proper TypeScript types + +### Long-term Refactoring (Low Priority) +9. Create enrichment pipeline abstraction +10. Move constants to config +11. Implement proper logging +12. Add comprehensive unit tests + +--- + +## Code Metrics + +- **Directory.tsx**: 2,373 lines, ~179 functions/components +- **API endpoint**: 1,105 lines, ~70 functions +- **Total new code**: ~6,200 lines +- **React hooks in Directory**: 45+ (useState, useEffect, useCallback, useMemo, useRef) +- **Duplicate functions**: ~5 major functions duplicated between component and API + +--- + +## Testing Coverage + +- **Test file**: `tests/tokenDirectory.api.test.ts` (359 lines) +- **Coverage**: API endpoint tests present +- **Missing**: Component tests, integration tests, CSV parsing tests + diff --git a/DIRECTORY_REFACTORING_PLAN.md b/DIRECTORY_REFACTORING_PLAN.md new file mode 100644 index 000000000..df4be57f0 --- /dev/null +++ b/DIRECTORY_REFACTORING_PLAN.md @@ -0,0 +1,940 @@ +# Directory Component Refactoring Plan + +## Overview +This document provides specific recommendations for splitting `Directory.tsx` (2,373 lines) into smaller, maintainable modules and consolidating duplicate functions into shared utilities. + +--- + +## 1. Shared Utilities Consolidation + +### 1.1 Functions to Move to `src/common/data/api/token/utils.ts` + +These functions are **duplicated** between `Directory.tsx` and the API/transform modules: + +#### Already in utils.ts (keep there): +- ✅ `normalizeAddress` - Already exported +- ✅ `parseSocialRecord` - Already exported (matches `parseSocialRecordValue`) + +#### Functions to ADD to utils.ts: + +```typescript +// From Directory.tsx lines 605-646 +export function extractNeynarPrimaryAddress(user: any): string | null { + // Move implementation from Directory.tsx + // This is duplicated in transform.ts as extractPrimaryAddress +} + +// From Directory.tsx lines 648-681 +export function extractNeynarSocialAccounts(user: any): { + xHandle: string | null; + xUrl: string | null; + githubHandle: string | null; + githubUrl: string | null; +} { + // Move implementation from Directory.tsx + // Similar logic exists in transform.ts extractNeynarProfileData +} + +// From Directory.tsx line 683 +export function buildEtherscanUrl(address?: string | null): string | null { + return address ? `https://etherscan.io/address/${address.toLowerCase()}` : null; +} + +// From Directory.tsx line 688 +export const BLOCK_EXPLORER_URLS: Record<"base" | "polygon" | "mainnet", string> = { + mainnet: "https://etherscan.io/address/", + base: "https://basescan.org/address/", + polygon: "https://polygonscan.com/address/", +}; + +export function getBlockExplorerLink( + network: "base" | "polygon" | "mainnet", + address: string +): string { + return `${BLOCK_EXPLORER_URLS[network]}${address}`; +} +``` + +#### Functions to ADD to `src/common/lib/utils/directoryUtils.ts` (new file): + +```typescript +// Component-specific utilities (not API-related) + +// From Directory.tsx line 706 +export function formatTokenBalance(value: string | null | undefined): string { + if (value == null || value === "") return "0"; + const parsed = Number(value); + if (!Number.isFinite(parsed)) { + return value; + } + return parsed.toLocaleString(undefined, { + minimumFractionDigits: 0, + maximumFractionDigits: 2, + }); +} + +// From Directory.tsx line 694 +export function resolveFontFamily( + value: string | undefined, + fallback: string, + fontOptions: typeof FONT_FAMILY_OPTIONS +): string { + // Move implementation +} + +// From Directory.tsx line 955 +export function getLastActivityLabel(timestamp?: string | null): string | null { + // Move implementation using formatDistanceToNow +} + +// From Directory.tsx line 932 +export function getMemberPrimaryLabel(member: DirectoryMemberData): string { + return member.displayName || member.username || member.ensName || member.address; +} + +// From Directory.tsx line 935 +export function getMemberSecondaryLabel(member: DirectoryMemberData): string | null { + // Move implementation +} + +// From Directory.tsx line 947 +export function getMemberAvatarSrc(member: DirectoryMemberData): string | undefined { + // Move implementation +} + +// From Directory.tsx line 952 +export function getMemberAvatarFallback(member: DirectoryMemberData): string | undefined { + // Move implementation +} + +// From Directory.tsx line 724 +export function getFarcasterProfileUrl( + username?: string | null, + fid?: number | null +): string | null { + // Move implementation +} + +// From Directory.tsx line 735 +export function getEnsProfileUrl(ensName?: string | null): string | null { + return ensName ? `https://app.ens.domains/${ensName}` : null; +} +``` + +--- + +## 2. Component Extraction Plan + +### 2.1 New File Structure + +``` +src/fidgets/token/ +├── Directory.tsx # Main component (~200 lines) +├── Directory.module.ts # Fidget module export +├── components/ +│ ├── DirectoryCardView.tsx # Card layout (~150 lines) +│ ├── DirectoryListView.tsx # List layout (~150 lines) +│ ├── BadgeIcons.tsx # Badge component (~200 lines) +│ ├── ProfileLink.tsx # Profile link wrapper (~30 lines) +│ └── PaginationControls.tsx # Pagination component (~50 lines) +├── hooks/ +│ ├── useDirectoryData.ts # Data fetching hook (~300 lines) +│ ├── useDirectoryState.ts # Local state management (~100 lines) +│ ├── useDirectoryPagination.ts # Pagination logic (~50 lines) +│ └── useDirectoryFilters.ts # Filtering/sorting logic (~100 lines) +├── dataSources/ +│ ├── tokenHoldersSource.ts # Token holders fetching (~100 lines) +│ ├── farcasterChannelSource.ts # Channel fetching (~150 lines) +│ └── csvSource.ts # CSV parsing & fetching (~200 lines) +├── constants.ts # Constants and options (~100 lines) +└── types.ts # Type definitions (~100 lines) +``` + +--- + +## 3. Detailed Module Breakdown + +### 3.1 `src/fidgets/token/types.ts` (NEW) + +**Extract from Directory.tsx lines 42-106:** + +```typescript +export type DirectoryNetwork = "base" | "polygon" | "mainnet"; +export type DirectoryAssetType = "token" | "nft"; +export type DirectorySortOption = "tokenHoldings" | "followers"; +export type DirectoryLayoutStyle = "cards" | "list"; +export type DirectoryIncludeOption = "holdersWithFarcasterAccount" | "allHolders"; +export type DirectorySource = "tokenHolders" | "farcasterChannel" | "csv"; +export type DirectoryChannelFilterOption = "members" | "followers" | "all"; +export type CsvTypeOption = "address" | "fid" | "username"; +export type CsvSortOption = "followers" | "csvOrder"; + +export interface DirectoryMemberData { + // ... (lines 55-73) +} + +export interface DirectoryFidgetData extends FidgetData { + // ... (lines 75-81) +} + +export type DirectoryFidgetSettings = FidgetSettings & FidgetSettingsStyle & { + // ... (lines 83-106) +}; +``` + +--- + +### 3.2 `src/fidgets/token/constants.ts` (NEW) + +**Extract from Directory.tsx lines 38-177:** + +```typescript +export const STALE_AFTER_MS = 60 * 60 * 1000; +export const PAGE_SIZE = 100; +export const CHANNEL_FETCH_DEBOUNCE_MS = 800; + +export const NETWORK_OPTIONS = [ + { name: "Base", value: "base" }, + { name: "Polygon", value: "polygon" }, + { name: "Ethereum Mainnet", value: "mainnet" }, +] as const; + +export const SORT_OPTIONS = [ + { name: "Token holdings", value: "tokenHoldings" }, + { name: "Followers", value: "followers" }, +] as const; + +export const LAYOUT_OPTIONS = [ + { name: "Cards", value: "cards" }, + { name: "List", value: "list" }, +] as const; + +export const ASSET_TYPE_OPTIONS = [ + { name: "Token", value: "token" }, + { name: "NFT", value: "nft" }, +] as const; + +export const INCLUDE_OPTIONS = [ + { name: "Holders with Farcaster Account", value: "holdersWithFarcasterAccount" }, + { name: "All holders", value: "allHolders" }, +] as const; + +export const SOURCE_OPTIONS = [ + { name: "Token Holders", value: "tokenHolders" }, + { name: "Farcaster Channel", value: "farcasterChannel" }, + { name: "CSV", value: "csv" }, +] as const; + +export const CHANNEL_FILTER_OPTIONS = [ + { name: "Members", value: "members" }, + { name: "Followers", value: "followers" }, + { name: "All", value: "all" }, +] as const; + +export const CSV_TYPE_OPTIONS = [ + { name: "Address", value: "address" }, + { name: "FID", value: "fid" }, + { name: "Farcaster username", value: "username" }, +] as const; + +export const CSV_SORT_OPTIONS = [ + { name: "Followers", value: "followers" }, + { name: "CSV order", value: "csvOrder" }, +] as const; + +// Badge image paths +export const FARCASTER_BADGE_SRC = "/images/farcaster.jpeg"; +export const ENS_BADGE_SRC = "/images/ens.svg"; +export const X_BADGE_SRC = "/images/twitter.avif"; +export const GITHUB_BADGE_SRC = "/images/github.svg"; +export const ETHERSCAN_BADGE_SRC = "/images/etherscan.svg"; +``` + +--- + +### 3.3 `src/fidgets/token/components/BadgeIcons.tsx` (NEW) + +**Extract from Directory.tsx lines 738-927:** + +```typescript +import React from "react"; +import { mergeClasses } from "@/common/lib/utils/mergeClasses"; +import { + FARCASTER_BADGE_SRC, + ENS_BADGE_SRC, + X_BADGE_SRC, + GITHUB_BADGE_SRC, + ETHERSCAN_BADGE_SRC, +} from "../constants"; +import { getFarcasterProfileUrl, getEnsProfileUrl } from "@/common/lib/utils/directoryUtils"; +import { buildEtherscanUrl } from "@/common/data/api/token/utils"; + +export type BadgeIconsProps = { + username?: string | null; + ensName?: string | null; + ensAvatarUrl?: string | null; + fid?: number | null; + primaryAddress?: string | null; + etherscanUrl?: string | null; + xHandle?: string | null; + xUrl?: string | null; + githubHandle?: string | null; + githubUrl?: string | null; + size?: number; + gapClassName?: string; +}; + +export const BadgeIcons: React.FC = ({ + // ... props +}) => { + // Move entire implementation from Directory.tsx lines 753-927 +}; +``` + +--- + +### 3.4 `src/fidgets/token/components/ProfileLink.tsx` (NEW) + +**Extract from Directory.tsx lines 2285-2310:** + +```typescript +import React from "react"; +import Link from "next/link"; +import { mergeClasses } from "@/common/lib/utils/mergeClasses"; + +export type ProfileLinkProps = { + username?: string | null; + fallbackHref?: string; + className?: string; + children: React.ReactNode; +}; + +export const ProfileLink: React.FC = ({ + username, + fallbackHref, + className, + children, +}) => { + // Move implementation from Directory.tsx lines 2292-2310 +}; +``` + +--- + +### 3.5 `src/fidgets/token/components/PaginationControls.tsx` (NEW) + +**Extract from Directory.tsx lines 2312-2366:** + +```typescript +import React from "react"; +import { PAGE_SIZE } from "../constants"; + +export type PaginationControlsProps = { + currentPage: number; + pageCount: number; + onPrev: () => void; + onNext: () => void; + totalCount: number; +}; + +export const PaginationControls: React.FC = ({ + // ... props +}) => { + // Move implementation from Directory.tsx lines 2327-2366 +}; +``` + +--- + +### 3.6 `src/fidgets/token/components/DirectoryCardView.tsx` (NEW) + +**Extract from Directory.tsx lines 2162-2267:** + +```typescript +import React from "react"; +import { Avatar, AvatarFallback, AvatarImage } from "@/common/components/atoms/avatar"; +import BoringAvatar from "boring-avatars"; +import { DirectoryMemberData, DirectoryFidgetSettings } from "../types"; +import { ProfileLink } from "./ProfileLink"; +import { BadgeIcons } from "./BadgeIcons"; +import { + getMemberPrimaryLabel, + getMemberSecondaryLabel, + getMemberAvatarSrc, + getMemberAvatarFallback, + getLastActivityLabel, + formatTokenBalance, +} from "@/common/lib/utils/directoryUtils"; +import { buildEtherscanUrl } from "@/common/data/api/token/utils"; +import { toFarcasterCdnUrl } from "@/common/lib/utils/farcasterCdn"; + +export type DirectoryCardViewProps = { + members: DirectoryMemberData[]; + settings: DirectoryFidgetSettings; + tokenSymbol?: string | null; + headingTextStyle: React.CSSProperties; + headingFontFamilyStyle: React.CSSProperties; + network: "base" | "polygon" | "mainnet"; + includeFilter: "holdersWithFarcasterAccount" | "allHolders"; +}; + +export const DirectoryCardView: React.FC = ({ + members, + settings, + tokenSymbol, + headingTextStyle, + headingFontFamilyStyle, + network, + includeFilter, +}) => { + // Extract card rendering logic from Directory.tsx lines 2162-2267 + // This is the grid of cards +}; +``` + +--- + +### 3.7 `src/fidgets/token/components/DirectoryListView.tsx` (NEW) + +**Extract from Directory.tsx lines 2072-2161:** + +```typescript +import React from "react"; +import { Avatar, AvatarFallback, AvatarImage } from "@/common/components/atoms/avatar"; +import BoringAvatar from "boring-avatars"; +import { DirectoryMemberData, DirectoryFidgetSettings } from "../types"; +import { ProfileLink } from "./ProfileLink"; +import { BadgeIcons } from "./BadgeIcons"; +import { + getMemberPrimaryLabel, + getMemberSecondaryLabel, + getMemberAvatarSrc, + getMemberAvatarFallback, + getLastActivityLabel, + formatTokenBalance, +} from "@/common/lib/utils/directoryUtils"; +import { buildEtherscanUrl, getBlockExplorerLink } from "@/common/data/api/token/utils"; +import { toFarcasterCdnUrl } from "@/common/lib/utils/farcasterCdn"; + +export type DirectoryListViewProps = { + members: DirectoryMemberData[]; + settings: DirectoryFidgetSettings; + tokenSymbol?: string | null; + headingTextStyle: React.CSSProperties; + network: "base" | "polygon" | "mainnet"; + includeFilter: "holdersWithFarcasterAccount" | "allHolders"; +}; + +export const DirectoryListView: React.FC = ({ + members, + settings, + tokenSymbol, + headingTextStyle, + network, + includeFilter, +}) => { + // Extract list rendering logic from Directory.tsx lines 2072-2161 + // This is the list view +}; +``` + +--- + +### 3.8 `src/fidgets/token/dataSources/csvSource.ts` (NEW) + +**Extract from Directory.tsx lines 1371-1445 (parseCsv) and 1447-1787 (fetchCsvDirectory):** + +```typescript +import { CsvTypeOption, DirectoryMemberData, DirectoryFidgetSettings } from "../types"; +import { extractNeynarPrimaryAddress, extractNeynarSocialAccounts } from "@/common/data/api/token/utils"; +import { buildEtherscanUrl } from "@/common/data/api/token/utils"; + +export function parseCsv(raw: string, type: CsvTypeOption): string[] { + // Move implementation from Directory.tsx lines 1371-1445 +} + +export async function fetchCsvDirectory( + settings: DirectoryFidgetSettings, + controller: AbortController +): Promise { + // Move implementation from Directory.tsx lines 1447-1787 + // This handles: + // - CSV parsing + // - Username/FID/Address lookup + // - Neynar API calls + // - ENS resolution + // - Member data transformation +} +``` + +--- + +### 3.9 `src/fidgets/token/dataSources/farcasterChannelSource.ts` (NEW) + +**Extract from Directory.tsx lines 1263-1369:** + +```typescript +import { DirectoryMemberData, DirectoryFidgetSettings, DirectoryChannelFilterOption } from "../types"; +import { extractNeynarPrimaryAddress, extractNeynarSocialAccounts } from "@/common/data/api/token/utils"; +import { buildEtherscanUrl } from "@/common/data/api/token/utils"; + +export async function fetchFarcasterChannelDirectory( + settings: DirectoryFidgetSettings, + controller: AbortController +): Promise { + // Move implementation from Directory.tsx lines 1263-1369 + // This handles: + // - Channel members/followers fetching + // - User data transformation + // - Sorting by followers +} +``` + +--- + +### 3.10 `src/fidgets/token/dataSources/tokenHoldersSource.ts` (NEW) + +**Extract from Directory.tsx lines 1219-1261:** + +```typescript +import { DirectoryMemberData, DirectoryFidgetSettings } from "../types"; + +export async function fetchTokenHoldersDirectory( + settings: DirectoryFidgetSettings, + controller: AbortController +): Promise<{ + members: DirectoryMemberData[]; + tokenSymbol: string | null; + tokenDecimals: number | null; +}> { + // Move implementation from Directory.tsx lines 1219-1261 + // This handles: + // - API call to /api/token/directory + // - Response parsing + // - Sorting +} +``` + +--- + +### 3.11 `src/fidgets/token/hooks/useDirectoryData.ts` (NEW) + +**Extract from Directory.tsx lines 1073-1200, 1788-1825:** + +```typescript +import { useState, useCallback, useRef, useEffect, useMemo } from "react"; +import { DirectoryFidgetData, DirectoryFidgetSettings } from "../types"; +import { fetchTokenHoldersDirectory } from "../dataSources/tokenHoldersSource"; +import { fetchFarcasterChannelDirectory } from "../dataSources/farcasterChannelSource"; +import { fetchCsvDirectory } from "../dataSources/csvSource"; +import { sortMembers } from "../utils/sorting"; +import { STALE_AFTER_MS } from "../constants"; +import { isEqual } from "lodash"; + +export function useDirectoryData( + settings: DirectoryFidgetSettings, + initialData: DirectoryFidgetData | undefined, + saveData: (data: DirectoryFidgetData) => Promise +) { + const [directoryData, setDirectoryData] = useState(() => ({ + members: initialData?.members ?? [], + lastUpdatedTimestamp: initialData?.lastUpdatedTimestamp ?? null, + tokenSymbol: initialData?.tokenSymbol ?? null, + tokenDecimals: initialData?.tokenDecimals ?? null, + lastFetchSettings: initialData?.lastFetchSettings, + })); + + const [isRefreshing, setIsRefreshing] = useState(false); + const [error, setError] = useState(null); + const abortControllerRef = useRef(null); + + // Sync with prop data + useEffect(() => { + // Move logic from Directory.tsx lines 1087-1113 + }, [initialData]); + + // Cleanup on unmount + useEffect(() => { + return () => { + abortControllerRef.current?.abort(); + }; + }, []); + + const persistDataIfChanged = useCallback( + async (payload: DirectoryFidgetData) => { + // Move logic from Directory.tsx lines 1201-1217 + }, + [directoryData, saveData] + ); + + const fetchDirectory = useCallback(async () => { + // Move logic from Directory.tsx lines 1788-1825 + // Routes to appropriate data source based on settings.source + }, [settings, persistDataIfChanged]); + + const shouldRefresh = useMemo(() => { + // Move logic from Directory.tsx lines 1149-1199 + }, [settings, directoryData]); + + // Auto-refresh effect + useEffect(() => { + // Move logic from Directory.tsx lines 1189-1199 + }, [shouldRefresh, fetchDirectory]); + + return { + directoryData, + isRefreshing, + error, + fetchDirectory, + refresh: fetchDirectory, + }; +} +``` + +--- + +### 3.12 `src/fidgets/token/hooks/useDirectoryState.ts` (NEW) + +**Extract from Directory.tsx lines 1004-1021, 1030-1031, 1145-1147:** + +```typescript +import { useState, useEffect } from "react"; +import { DirectorySortOption, DirectoryLayoutStyle, DirectoryChannelFilterOption, DirectoryFidgetSettings } from "../types"; +import { sanitizeSortOption } from "../utils/sorting"; + +export function useDirectoryState(settings: DirectoryFidgetSettings) { + const [currentSort, setCurrentSort] = useState( + sanitizeSortOption(settings.sortBy) + ); + const [currentLayout, setCurrentLayout] = useState( + settings.layoutStyle + ); + const [currentChannelFilter, setCurrentChannelFilter] = useState( + (settings.channelFilter ?? "members") as DirectoryChannelFilterOption + ); + const [currentPage, setCurrentPage] = useState(1); + const [debouncedChannelName, setDebouncedChannelName] = useState( + (settings.channelName ?? "").trim() + ); + + // Sync with settings changes + useEffect(() => { + setCurrentSort(sanitizeSortOption(settings.sortBy)); + setCurrentLayout(settings.layoutStyle); + setCurrentChannelFilter((settings.channelFilter ?? "members") as DirectoryChannelFilterOption); + setCurrentPage(1); + }, [settings.layoutStyle, settings.sortBy, settings.channelFilter]); + + // Debounce channel name + useEffect(() => { + // Move logic from Directory.tsx lines 1121-1128 + }, [settings.channelName, settings.source]); + + return { + currentSort, + setCurrentSort, + currentLayout, + setCurrentLayout, + currentChannelFilter, + setCurrentChannelFilter, + currentPage, + setCurrentPage, + debouncedChannelName, + }; +} +``` + +--- + +### 3.13 `src/fidgets/token/hooks/useDirectoryFilters.ts` (NEW) + +**Extract from Directory.tsx lines 1893-1943:** + +```typescript +import { useMemo } from "react"; +import { DirectoryMemberData, DirectorySortOption, DirectoryIncludeOption } from "../types"; +import { sortMembers } from "../utils/sorting"; + +export function useDirectoryFilters( + members: DirectoryMemberData[], + sortBy: DirectorySortOption, + includeFilter: DirectoryIncludeOption, + source: "tokenHolders" | "farcasterChannel" | "csv" +) { + const filteredSortedMembers = useMemo(() => { + // Move logic from Directory.tsx lines 1893-1915 + // Filters by includeFilter + // Sorts by sortBy + }, [members, sortBy, includeFilter, source]); + + const emptyStateMessage = useMemo(() => { + // Move logic from Directory.tsx lines 1932-1942 + }, [source, includeFilter]); + + return { + filteredSortedMembers, + emptyStateMessage, + }; +} +``` + +--- + +### 3.14 `src/fidgets/token/hooks/useDirectoryPagination.ts` (NEW) + +**Extract from Directory.tsx lines 1916-1930:** + +```typescript +import { useMemo } from "react"; +import { PAGE_SIZE } from "../constants"; + +export function useDirectoryPagination( + members: DirectoryMemberData[], + currentPage: number +) { + const pageCount = useMemo(() => { + return Math.ceil(members.length / PAGE_SIZE); + }, [members.length]); + + const displayedMembers = useMemo(() => { + const start = (currentPage - 1) * PAGE_SIZE; + const end = start + PAGE_SIZE; + return members.slice(start, end); + }, [members, currentPage]); + + return { + pageCount, + displayedMembers, + }; +} +``` + +--- + +### 3.15 `src/fidgets/token/utils/sorting.ts` (NEW) + +**Extract from Directory.tsx lines 968-995:** + +```typescript +import { DirectorySortOption, DirectoryMemberData } from "../types"; + +export function sanitizeSortOption(value: unknown): DirectorySortOption { + return value === "followers" ? "followers" : "tokenHoldings"; +} + +export function sortMembers( + members: DirectoryMemberData[], + sortBy: DirectorySortOption +): DirectoryMemberData[] { + const entries = [...members]; + + if (sortBy === "followers") { + entries.sort((a, b) => (b.followers ?? -1) - (a.followers ?? -1)); + return entries; + } + + entries.sort((a, b) => { + try { + const aValue = BigInt(a.balanceRaw ?? "0"); + const bValue = BigInt(b.balanceRaw ?? "0"); + if (bValue > aValue) return 1; + if (bValue < aValue) return -1; + return 0; + } catch (error) { + return 0; + } + }); + + return entries; +} +``` + +--- + +### 3.16 `src/fidgets/token/Directory.tsx` (REFACTORED - Main Component) + +**Final structure (~200-250 lines):** + +```typescript +import React, { useMemo } from "react"; +import { FidgetArgs } from "@/common/fidgets"; +import { DirectoryFidgetSettings, DirectoryFidgetData } from "./types"; +import { directoryProperties } from "./Directory.module"; +import { useDirectoryData } from "./hooks/useDirectoryData"; +import { useDirectoryState } from "./hooks/useDirectoryState"; +import { useDirectoryFilters } from "./hooks/useDirectoryFilters"; +import { useDirectoryPagination } from "./hooks/useDirectoryPagination"; +import { DirectoryCardView } from "./components/DirectoryCardView"; +import { DirectoryListView } from "./components/DirectoryListView"; +import { PaginationControls } from "./components/PaginationControls"; +import { resolveFontFamily } from "@/common/lib/utils/directoryUtils"; +import { FONT_FAMILY_OPTIONS } from "@/common/lib/theme/fonts"; + +const Directory: React.FC> = ({ + settings, + data, + saveData, +}) => { + // Data fetching + const { directoryData, isRefreshing, error, refresh } = useDirectoryData( + settings, + data, + saveData + ); + + // Local state + const { + currentSort, + setCurrentSort, + currentLayout, + setCurrentLayout, + currentChannelFilter, + setCurrentChannelFilter, + currentPage, + setCurrentPage, + debouncedChannelName, + } = useDirectoryState(settings); + + // Filtering and sorting + const { filteredSortedMembers, emptyStateMessage } = useDirectoryFilters( + directoryData.members, + currentSort, + settings.include ?? "holdersWithFarcasterAccount", + settings.source ?? "tokenHolders" + ); + + // Pagination + const { pageCount, displayedMembers } = useDirectoryPagination( + filteredSortedMembers, + currentPage + ); + + // Font styles + const primaryFontFamily = useMemo( + () => resolveFontFamily(settings.primaryFontFamily, "var(--user-theme-headings-font)", FONT_FAMILY_OPTIONS), + [settings.primaryFontFamily] + ); + // ... other style computations + + // Render + return ( +
+ {/* Header */} + {/* View controls */} + {/* Error display */} + {/* Content: Card or List view */} + {currentLayout === "list" ? ( + + ) : ( + + )} + {/* Pagination */} +
+ ); +}; + +export default Directory; +``` + +--- + +## 4. Consolidation Summary + +### Functions to Consolidate: + +| Function | Current Location(s) | Target Location | Priority | +|----------|-------------------|-----------------|----------| +| `parseSocialRecordValue` / `parseSocialRecord` | Directory.tsx, utils.ts | `utils.ts` (keep existing) | 🔴 High | +| `extractNeynarPrimaryAddress` | Directory.tsx, transform.ts | `utils.ts` (new) | 🔴 High | +| `extractNeynarSocialAccounts` | Directory.tsx | `utils.ts` (new) | 🔴 High | +| `normalizeAddress` | Directory.tsx, utils.ts | `utils.ts` (keep existing) | 🔴 High | +| `buildEtherscanUrl` | Directory.tsx | `utils.ts` (new) | 🟡 Medium | +| `getBlockExplorerLink` | Directory.tsx | `utils.ts` (new) | 🟡 Medium | +| `formatTokenBalance` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `resolveFontFamily` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getLastActivityLabel` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getMemberPrimaryLabel` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getMemberSecondaryLabel` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getMemberAvatarSrc` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getMemberAvatarFallback` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getFarcasterProfileUrl` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `getEnsProfileUrl` | Directory.tsx | `directoryUtils.ts` (new) | 🟡 Medium | +| `sortMembers` | Directory.tsx | `utils/sorting.ts` (new) | 🟡 Medium | +| `sanitizeSortOption` | Directory.tsx | `utils/sorting.ts` (new) | 🟡 Medium | + +--- + +## 5. Migration Steps + +### Phase 1: Extract Shared Utilities (Week 1) +1. ✅ Move duplicate functions to `utils.ts` +2. ✅ Create `directoryUtils.ts` for component-specific utilities +3. ✅ Update imports in both Directory.tsx and API files + +### Phase 2: Extract Components (Week 2) +1. ✅ Extract `BadgeIcons`, `ProfileLink`, `PaginationControls` +2. ✅ Extract `DirectoryCardView` and `DirectoryListView` +3. ✅ Update Directory.tsx to use new components + +### Phase 3: Extract Data Sources (Week 3) +1. ✅ Extract CSV parsing and fetching +2. ✅ Extract Farcaster channel fetching +3. ✅ Extract token holders fetching +4. ✅ Create unified data source interface + +### Phase 4: Extract Hooks (Week 4) +1. ✅ Extract `useDirectoryData` +2. ✅ Extract `useDirectoryState` +3. ✅ Extract `useDirectoryFilters` +4. ✅ Extract `useDirectoryPagination` + +### Phase 5: Refactor Main Component (Week 5) +1. ✅ Simplify Directory.tsx to orchestration only +2. ✅ Update all imports +3. ✅ Test all functionality +4. ✅ Remove old code + +--- + +## 6. Expected Results + +### Before: +- **Directory.tsx**: 2,373 lines +- **Duplicated functions**: 5+ +- **React hooks**: 45+ +- **Maintainability**: Low + +### After: +- **Directory.tsx**: ~200-250 lines +- **Total modules**: 15+ focused files +- **Duplicated functions**: 0 +- **React hooks**: Organized into custom hooks +- **Maintainability**: High +- **Testability**: High (each module can be tested independently) + +--- + +## 7. Testing Strategy + +After refactoring, each module should have: +- **Unit tests** for utility functions +- **Component tests** for UI components +- **Hook tests** for custom hooks +- **Integration tests** for data sources +- **E2E tests** for full Directory functionality + diff --git a/EXISTING_UTILITIES_ANALYSIS.md b/EXISTING_UTILITIES_ANALYSIS.md new file mode 100644 index 000000000..c4591c439 --- /dev/null +++ b/EXISTING_UTILITIES_ANALYSIS.md @@ -0,0 +1,208 @@ +# Existing Utilities Analysis + +This document identifies which utilities from the Directory refactoring plan already exist in the codebase and which need to be created. + +--- + +## ✅ Already Existing Utilities + +### 1. **Social Record Parsing** ✅ +- **Location**: `src/common/data/api/token/utils.ts` (lines 64-102) +- **Function**: `parseSocialRecord(value, platform)` +- **Status**: ✅ Already exists and is exported +- **Action**: Use existing function, remove duplicate `parseSocialRecordValue` from Directory.tsx + +### 2. **Address Normalization** ✅ +- **Location**: `src/common/data/api/token/utils.ts` (lines 7-9) +- **Function**: `normalizeAddress(address)` +- **Status**: ✅ Already exists and is exported +- **Action**: Use existing function, remove duplicate from Directory.tsx + +### 3. **Farcaster CDN URL Conversion** ✅ +- **Location**: `src/common/lib/utils/farcasterCdn.ts` +- **Function**: `toFarcasterCdnUrl(url)` +- **Status**: ✅ Already exists and is used in Directory.tsx +- **Action**: Continue using existing function + +### 4. **Block Explorer URLs** ✅ (Partial) +- **Location**: `src/common/components/molecules/AlchemyChainSelector.tsx` (lines 12-26) +- **Data**: `CHAIN_OPTIONS` array contains `scanUrl` for each chain +- **Status**: ✅ Data exists but not as a utility function +- **Action**: Extract to utility function or use existing data structure +- **Note**: Directory uses `"base" | "polygon" | "mainnet"` but CHAIN_OPTIONS uses `AlchemyNetwork` type. Need to map or create adapter. + +### 5. **Ethereum Address Formatting** ✅ +- **Location**: `src/common/lib/utils/ethereum.ts` +- **Function**: `formatEthereumAddress(address)` +- **Status**: ✅ Exists (used in ScanAddress.tsx) +- **Action**: Can be used for address display formatting + +### 6. **Number Formatting** ✅ (Different purpose) +- **Location**: `src/common/lib/utils/formatNumber.ts` +- **Function**: `formatNumber(value)` - formats large numbers (1B, 1M, 1K) +- **Status**: ✅ Exists but different purpose than token balance formatting +- **Action**: Directory's `formatTokenBalance` is more specific (handles decimals, locale), keep separate + +--- + +## ❌ Missing Utilities (Need to Create) + +### 1. **Neynar Primary Address Extraction** ❌ +- **Current**: Duplicated in `Directory.tsx` (lines 605-646) and `transform.ts` (lines 104-164 as `extractPrimaryAddress`) +- **Action**: Consolidate into `src/common/data/api/token/utils.ts` +- **Priority**: 🔴 High + +### 2. **Neynar Social Accounts Extraction** ❌ +- **Current**: Only in `Directory.tsx` (lines 648-681) +- **Similar**: `transform.ts` has `extractNeynarProfileData` (lines 34-99) which includes social accounts +- **Action**: Consolidate into `src/common/data/api/token/utils.ts` +- **Priority**: 🔴 High + +### 3. **Etherscan URL Builder** ❌ +- **Current**: Only in `Directory.tsx` (line 683) +- **Similar**: `ScanAddress.tsx` builds URLs but inline (line 20) +- **Action**: Create utility function in `src/common/data/api/token/utils.ts` or `src/common/lib/utils/links.ts` +- **Priority**: 🟡 Medium + +### 4. **Block Explorer Link Builder** ❌ +- **Current**: Only in `Directory.tsx` (lines 688-692, 929-930) +- **Similar**: `ScanAddress.tsx` builds URLs inline +- **Action**: Create utility function, can use `CHAIN_OPTIONS` from `AlchemyChainSelector.tsx` as reference +- **Priority**: 🟡 Medium + +### 5. **Token Balance Formatting** ❌ +- **Current**: Only in `Directory.tsx` (lines 706-716) +- **Action**: Create in `src/common/lib/utils/directoryUtils.ts` (new file) +- **Priority**: 🟡 Medium + +### 6. **Font Family Resolution** ❌ +- **Current**: Only in `Directory.tsx` (lines 694-704) +- **Action**: Create in `src/common/lib/utils/directoryUtils.ts` (new file) +- **Priority**: 🟡 Medium + +### 7. **Last Activity Label** ❌ +- **Current**: Only in `Directory.tsx` (lines 955-966) +- **Uses**: `formatDistanceToNow` from `date-fns` +- **Action**: Create in `src/common/lib/utils/directoryUtils.ts` (new file) +- **Priority**: 🟡 Medium + +### 8. **Member Label Helpers** ❌ +- **Current**: Only in `Directory.tsx`: + - `getMemberPrimaryLabel` (line 932) + - `getMemberSecondaryLabel` (lines 935-945) + - `getMemberAvatarSrc` (lines 947-950) + - `getMemberAvatarFallback` (lines 952-953) +- **Action**: Create in `src/common/lib/utils/directoryUtils.ts` (new file) +- **Priority**: 🟡 Medium + +### 9. **Profile URL Builders** ❌ +- **Current**: Only in `Directory.tsx`: + - `getFarcasterProfileUrl` (lines 724-733) + - `getEnsProfileUrl` (lines 735-736) +- **Similar**: Profile links use `/s/[handle]` pattern (see `ProfileSpace.tsx`) +- **Action**: Create in `src/common/lib/utils/directoryUtils.ts` (new file) +- **Priority**: 🟡 Medium + +--- + +## 🔄 Components to Extract + +### 1. **BadgeIcons Component** ❌ +- **Current**: Only in `Directory.tsx` (lines 738-927) +- **Similar**: `src/common/components/atoms/badge.tsx` exists but is a generic badge component (different purpose) +- **Action**: Extract to `src/fidgets/token/components/BadgeIcons.tsx` +- **Priority**: 🔴 High + +### 2. **ProfileLink Component** ❌ +- **Current**: Only in `Directory.tsx` (lines 2285-2317) +- **Similar**: Profile links exist throughout codebase (e.g., `/s/[handle]` pattern) +- **Action**: Extract to `src/fidgets/token/components/ProfileLink.tsx` +- **Priority**: 🟡 Medium + +### 3. **PaginationControls Component** ❌ +- **Current**: Only in `Directory.tsx` (lines 2319-2366) +- **Similar**: No existing pagination component found +- **Action**: Extract to `src/fidgets/token/components/PaginationControls.tsx` +- **Priority**: 🟡 Medium + +--- + +## 📋 Updated Refactoring Plan + +### Phase 1: Consolidate Existing Utilities + +1. **Remove duplicates from Directory.tsx**: + - Remove `parseSocialRecordValue` → use `parseSocialRecord` from `utils.ts` + - Remove `normalizeAddress` → use existing from `utils.ts` + +2. **Add missing utilities to `src/common/data/api/token/utils.ts`**: + - `extractNeynarPrimaryAddress` (consolidate from Directory.tsx and transform.ts) + - `extractNeynarSocialAccounts` (consolidate from Directory.tsx) + - `buildEtherscanUrl` (from Directory.tsx) + - `getBlockExplorerLink` (from Directory.tsx, can use CHAIN_OPTIONS pattern) + +3. **Create `src/common/lib/utils/directoryUtils.ts`**: + - `formatTokenBalance` + - `resolveFontFamily` + - `getLastActivityLabel` + - `getMemberPrimaryLabel` + - `getMemberSecondaryLabel` + - `getMemberAvatarSrc` + - `getMemberAvatarFallback` + - `getFarcasterProfileUrl` + - `getEnsProfileUrl` + +### Phase 2: Extract Components + +1. Extract `BadgeIcons` component +2. Extract `ProfileLink` component +3. Extract `PaginationControls` component +4. Extract view components (`DirectoryCardView`, `DirectoryListView`) + +### Phase 3: Extract Hooks and Data Sources + +1. Extract data fetching hooks +2. Extract state management hooks +3. Extract data source modules + +--- + +## 🔍 Key Findings + +### Duplication Status: +- ✅ **2 functions** already exist and can be reused (`parseSocialRecord`, `normalizeAddress`) +- ❌ **15+ functions** need to be created/consolidated +- ❌ **3 components** need to be extracted + +### Existing Patterns to Leverage: +1. **Block Explorer URLs**: `CHAIN_OPTIONS` in `AlchemyChainSelector.tsx` has scan URLs - can be used as reference +2. **Profile Links**: `/s/[handle]` pattern used throughout (see `ProfileSpace.tsx`) +3. **Farcaster URLs**: `warpcast.com` URLs used in multiple places +4. **Address Formatting**: `formatEthereumAddress` exists in `ethereum.ts` + +### Type Compatibility Notes: +- Directory uses `DirectoryNetwork = "base" | "polygon" | "mainnet"` +- `AlchemyChainSelector` uses `AlchemyNetwork` which includes more chains +- May need adapter function or type mapping + +--- + +## 📊 Summary Statistics + +| Category | Existing | Missing | Total | +|----------|----------|---------|-------| +| Utility Functions | 2 | 15+ | 17+ | +| Components | 0 | 3 | 3 | +| Hooks | 0 | 4 | 4 | +| Data Sources | 0 | 3 | 3 | + +--- + +## 🎯 Recommended Action Plan + +1. **Immediate**: Remove duplicate `parseSocialRecordValue` and `normalizeAddress` from Directory.tsx +2. **High Priority**: Consolidate Neynar extraction functions into `utils.ts` +3. **Medium Priority**: Create `directoryUtils.ts` for component-specific utilities +4. **Medium Priority**: Extract BadgeIcons component (largest component to extract) +5. **Lower Priority**: Extract other components and hooks + diff --git a/docs/API_CLEANUP_OPPORTUNITIES.md b/docs/API_CLEANUP_OPPORTUNITIES.md new file mode 100644 index 000000000..01f0aa2bd --- /dev/null +++ b/docs/API_CLEANUP_OPPORTUNITIES.md @@ -0,0 +1,569 @@ +# API Endpoints Cleanup & Structure Opportunities + +This document identifies opportunities for improving code structure, consistency, and maintainability across API endpoints. + +## Table of Contents + +1. [Directory Endpoint Issues](#directory-endpoint-issues) +2. [General API Pattern Inconsistencies](#general-api-pattern-inconsistencies) +3. [Proposed Solutions](#proposed-solutions) +4. [Specific Refactoring Recommendations](#specific-refactoring-recommendations) + +--- + +## Directory Endpoint Issues + +### 1. **File Size & Complexity** +- **Current**: 1,036 lines in a single file +- **Problem**: Too large, hard to navigate, mixes concerns +- **Impact**: Difficult to test, maintain, and understand + +### 2. **Mixed Concerns** +The Directory endpoint combines: +- API request handling (lines 996-1034) +- Data fetching from external APIs (Moralis, Neynar, ENS) +- Data transformation and aggregation +- Type definitions +- Utility functions + +**Better approach**: Separate into layers: +``` +api/token/directory.ts # Request handler only +lib/directory/fetchMoralis.ts # Moralis data fetching +lib/directory/fetchNeynar.ts # Neynar profile enrichment +lib/directory/fetchEns.ts # ENS metadata enrichment +lib/directory/transform.ts # Data transformation +lib/directory/types.ts # Type definitions +``` + +### 3. **Complex Nested Logic** +- Lines 744-950: Deeply nested conditionals for extracting profile data +- Lines 808-872: Multiple fallback chains for `primaryAddress` +- Hard to test individual pieces +- Difficult to reason about edge cases + +### 4. **Type Extraction Complexity** +```typescript +// Lines 61-69: Complex type extraction for NeynarUser +type NeynarUser = NeynarBulkUsersResponse extends Record + ? V extends Array + ? U + : never + : never; +``` +**Better**: Define explicit types based on actual Neynar SDK types + +### 5. **Inconsistent Validation** +- Uses inline Zod validation instead of shared `_validateQueryParams` helper +- Different error message format than other endpoints + +### 6. **Testing Challenges** +- Hard to unit test due to tight coupling +- Dependencies (fetch, neynar, ENS) are not easily mockable +- Business logic mixed with API concerns + +--- + +## General API Pattern Inconsistencies + +### 1. **Validation Pattern Inconsistency** + +**Pattern A** (used in `notifications/index.ts`, `search/tokens.ts`): +```typescript +const _validateQueryParams = ( + req: NextApiRequest, + schema: T, +): [z.infer, null | string] => { + const parseResult = schema.safeParse(req.query); + if (parseResult.success) { + return [parseResult.data, null]; + } + const error = parseResult.error.errors[0]; + const errorMessage = `${error.message} (${error.path.join(".")})`; + return [parseResult.data, errorMessage]; +}; +``` + +**Pattern B** (used in `token/directory.ts`): +```typescript +const parseResult = DIRECTORY_QUERY_SCHEMA.safeParse(req.query); +if (!parseResult.success) { + return res.status(400).json({ + result: "error", + error: { + message: parseResult.error.errors[0]?.message ?? "Invalid request parameters", + }, + }); +} +``` + +**Pattern C** (used in `farcaster/neynar/channel/members.ts`): +```typescript +const channelId = getSingleQueryValue(req.query.id); +if (!channelId) { + return res.status(400).json({ + result: "error", + error: { message: "Missing required channel id" }, + }); +} +``` + +**Issue**: Three different approaches to validation across endpoints + +### 2. **Error Handling Inconsistency** + +**Pattern A** (used in `notifications/index.ts`): +```typescript +catch (e) { + const _isAxiosError = isAxiosError(e); + const status = (_isAxiosError && e.response!.data.status) || 500; + const message = + (_isAxiosError && e.response!.data.message) || + "An unknown error occurred"; + return res.status(status).json({ + result: "error", + error: { message }, + }); +} +``` + +**Pattern B** (used in `token/directory.ts`): +```typescript +catch (error) { + console.error("Failed to build token directory", error); + return res.status(500).json({ + result: "error", + error: { + message: + error instanceof Error + ? error.message + : "An unexpected error occurred while generating the directory", + }, + }); +} +``` + +**Pattern C** (used in `farcaster/neynar/publishMessage.ts`): +```typescript +catch (e: any) { + if (e.response?.data) { + console.error("response.data") + console.dir(e.response.data, { depth: null }); + } + if (isAxiosError(e)) { + res.status(e.status || 500).json(e.response?.data); + } else { + res.status(500).json("Unknown error occurred"); + } +} +``` + +**Issue**: Different error handling, logging, and response formats + +### 3. **Response Format Inconsistency** + +**Some endpoints** use `NounspaceResponse`: +```typescript +res.status(200).json({ + result: "success", + value: data, +}); +``` + +**Other endpoints** return raw data: +```typescript +res.status(200).json(response); // Raw Neynar response +``` + +### 4. **Request Handler Usage** +- Most endpoints use `requestHandler` wrapper ✓ +- Some endpoints don't handle unsupported methods consistently +- Method extraction logic is duplicated + +--- + +## Proposed Solutions + +### 1. **Create Shared Validation Utility** + +**Location**: `src/common/data/api/validateRequest.ts` + +```typescript +import { NextApiRequest, NextApiResponse } from "next/types"; +import { z, ZodSchema } from "zod"; +import { NounspaceResponse } from "./requestHandler"; + +export function validateQueryParams( + req: NextApiRequest, + res: NextApiResponse>, + schema: T, +): z.infer | null { + const parseResult = schema.safeParse(req.query); + + if (!parseResult.success) { + const error = parseResult.error.errors[0]; + const errorMessage = error + ? `${error.message} (${error.path.join(".")})` + : "Invalid request parameters"; + + res.status(400).json({ + result: "error", + error: { message: errorMessage }, + }); + return null; + } + + return parseResult.data; +} + +export function validateBodyParams( + req: NextApiRequest, + res: NextApiResponse>, + schema: T, +): z.infer | null { + const parseResult = schema.safeParse(req.body); + + if (!parseResult.success) { + const error = parseResult.error.errors[0]; + const errorMessage = error + ? `${error.message} (${error.path.join(".")})` + : "Invalid request body"; + + res.status(400).json({ + result: "error", + error: { message: errorMessage }, + }); + return null; + } + + return parseResult.data; +} +``` + +### 2. **Create Shared Error Handler** + +**Location**: `src/common/data/api/handleApiError.ts` + +```typescript +import { NextApiResponse } from "next/types"; +import { isAxiosError } from "axios"; +import { NounspaceResponse } from "./requestHandler"; + +export function handleApiError( + res: NextApiResponse>, + error: unknown, + context: string = "API request", +): void { + console.error(`Failed ${context}:`, error); + + if (isAxiosError(error)) { + const status = error.response?.status || 500; + const message = + error.response?.data?.message || + error.message || + "An unknown error occurred"; + + res.status(status).json({ + result: "error", + error: { message }, + }); + return; + } + + if (error instanceof Error) { + res.status(500).json({ + result: "error", + error: { message: error.message }, + }); + return; + } + + res.status(500).json({ + result: "error", + error: { message: "An unexpected error occurred" }, + }); +} +``` + +### 3. **Refactor Directory Endpoint** + +**Structure**: +``` +src/pages/api/token/directory.ts # Thin request handler (~50 lines) +src/common/lib/directory/ + ├── types.ts # All type definitions + ├── fetchMoralis.ts # Moralis API integration + ├── fetchNeynar.ts # Neynar profile enrichment + ├── fetchEns.ts # ENS metadata fetching + ├── transform.ts # Data transformation logic + ├── aggregate.ts # FID aggregation logic + └── index.ts # Main fetchDirectoryData export +``` + +**Benefits**: +- Each module has single responsibility +- Easy to unit test individual pieces +- Reusable across different contexts +- Clear dependencies + +### 4. **Standardize Response Format** + +**All endpoints should use `NounspaceResponse`**: + +```typescript +// ✅ Good +res.status(200).json({ + result: "success", + value: data, +}); + +// ❌ Bad +res.status(200).json(data); +``` + +### 5. **Extract Common Patterns** + +**Location**: `src/common/data/api/helpers.ts` + +```typescript +import { NextApiResponse } from "next/types"; +import { NounspaceResponse } from "./requestHandler"; + +export function sendSuccess( + res: NextApiResponse>, + data: T, + status: number = 200, +): void { + res.status(status).json({ + result: "success", + value: data, + }); +} + +export function sendError( + res: NextApiResponse>, + message: string, + status: number = 400, +): void { + res.status(status).json({ + result: "error", + error: { message }, + }); +} +``` + +--- + +## Specific Refactoring Recommendations + +### Priority 1: High Impact, Low Risk + +1. **Create shared validation utility** + - Extract `_validateQueryParams` to shared location + - Update all endpoints to use it + - **Files affected**: ~15 endpoints + +2. **Create shared error handler** + - Extract error handling logic + - Standardize error responses + - **Files affected**: ~30 endpoints + +3. **Standardize response format** + - Ensure all endpoints use `NounspaceResponse` + - **Files affected**: ~5 endpoints (proxies can stay as-is) + +### Priority 2: Medium Impact, Medium Risk + +4. **Refactor Directory endpoint** + - Split into multiple files + - Extract data fetching logic + - **Files affected**: 1 endpoint (but large file) + +5. **Extract common helpers** + - `sendSuccess`, `sendError` helpers + - **Files affected**: All endpoints (optional migration) + +### Priority 3: Low Priority, High Value + +6. **Create API endpoint template/generator** + - Standard structure for new endpoints + - Ensures consistency from the start + +7. **Add API documentation** + - Document patterns and best practices + - Create examples for common scenarios + +--- + +## Example: Refactored Directory Endpoint + +### Before (1,036 lines in one file) + +### After Structure: + +**`src/pages/api/token/directory.ts`** (~50 lines): +```typescript +import { NextApiRequest, NextApiResponse } from "next/types"; +import requestHandler, { NounspaceResponse } from "@/common/data/api/requestHandler"; +import { validateQueryParams } from "@/common/data/api/validateRequest"; +import { handleApiError } from "@/common/data/api/handleApiError"; +import { fetchDirectoryData } from "@/common/lib/directory"; +import { DIRECTORY_QUERY_SCHEMA } from "@/common/lib/directory/types"; + +const get = async ( + req: NextApiRequest, + res: NextApiResponse>, +) => { + const params = validateQueryParams(req, res, DIRECTORY_QUERY_SCHEMA); + if (!params) return; // Error already sent + + try { + const data = await fetchDirectoryData(params); + res.status(200).json({ + result: "success", + value: data, + }); + } catch (error) { + handleApiError(res, error, "build token directory"); + } +}; + +export default requestHandler({ get }); +``` + +**`src/common/lib/directory/index.ts`** (~100 lines): +```typescript +// Main orchestration function +export async function fetchDirectoryData( + params: DirectoryQuery, + deps: DirectoryDependencies = defaultDependencies, +): Promise { + // 1. Fetch holders from Moralis + const { holders, tokenDecimals, tokenSymbol } = + params.assetType === "nft" + ? await fetchMoralisNftOwners(params, deps) + : await fetchMoralisTokenHolders(params, deps); + + // 2. Enrich with Neynar profiles + const neynarProfiles = await enrichWithNeynar(holders, deps); + + // 3. Enrich with ENS metadata + const ensMetadata = await enrichWithEns(holders, deps); + + // 4. Transform and aggregate + const members = transformAndAggregate( + holders, + neynarProfiles, + ensMetadata, + tokenDecimals, + ); + + return { + fetchedAt: new Date().toISOString(), + members, + tokenSymbol, + tokenDecimals, + }; +} +``` + +**`src/common/lib/directory/fetchMoralis.ts`** (~200 lines): +```typescript +// Isolated Moralis fetching logic +export async function fetchMoralisTokenHolders(...) { ... } +export async function fetchMoralisNftOwners(...) { ... } +``` + +**`src/common/lib/directory/enrichNeynar.ts`** (~100 lines): +```typescript +// Isolated Neynar enrichment logic +export async function enrichWithNeynar(...) { ... } +``` + +**`src/common/lib/directory/enrichEns.ts`** (~150 lines): +```typescript +// Isolated ENS enrichment logic +export async function enrichWithEns(...) { ... } +``` + +**`src/common/lib/directory/transform.ts`** (~200 lines): +```typescript +// Data transformation and aggregation +export function transformAndAggregate(...) { ... } +export function extractProfileData(...) { ... } +export function aggregateByFid(...) { ... } +``` + +**`src/common/lib/directory/types.ts`** (~100 lines): +```typescript +// All type definitions +export type DirectoryQuery = ...; +export type DirectoryMember = ...; +export type DirectoryApiResponse = ...; +// etc. +``` + +--- + +## Migration Plan + +### Phase 1: Create Shared Utilities (Week 1) +1. Create `validateRequest.ts` +2. Create `handleApiError.ts` +3. Create `helpers.ts` +4. Write tests for utilities + +### Phase 2: Migrate Simple Endpoints (Week 2) +1. Update 5-10 simple endpoints to use new utilities +2. Verify functionality +3. Update remaining endpoints incrementally + +### Phase 3: Refactor Directory Endpoint (Week 3-4) +1. Extract types to `types.ts` +2. Extract Moralis fetching +3. Extract Neynar enrichment +4. Extract ENS enrichment +5. Extract transformation logic +6. Refactor main endpoint handler +7. Write tests for each module + +### Phase 4: Documentation & Standards (Week 5) +1. Document API patterns +2. Create endpoint template +3. Update contributing guidelines + +--- + +## Testing Improvements + +With refactored structure: +- **Unit tests** for each module (Moralis, Neynar, ENS, transform) +- **Integration tests** for full flow +- **Mock dependencies** easily +- **Test edge cases** in isolation + +Example: +```typescript +// test/directory/fetchMoralis.test.ts +describe('fetchMoralisTokenHolders', () => { + it('handles pagination correctly', async () => { + const mockFetch = jest.fn(...); + const deps = { fetchFn: mockFetch, ... }; + // test pagination logic + }); +}); +``` + +--- + +## Benefits Summary + +1. **Maintainability**: Smaller, focused files are easier to understand +2. **Testability**: Isolated functions are easier to test +3. **Reusability**: Extracted logic can be reused +4. **Consistency**: Standard patterns across all endpoints +5. **Error Handling**: Consistent error responses +6. **Developer Experience**: Clear structure, easy to navigate +7. **Performance**: Easier to optimize individual pieces + + diff --git a/docs/ARCHITECTURE/AUTHENTICATION.md b/docs/ARCHITECTURE/AUTHENTICATION.md new file mode 100644 index 000000000..070d025de --- /dev/null +++ b/docs/ARCHITECTURE/AUTHENTICATION.md @@ -0,0 +1,254 @@ +# Authentication System + +The Nounspace authentication system combines Privy for wallet-based authentication with Farcaster for social identity, creating a seamless Web3 social experience. + +## Architecture Overview + +The authentication system consists of several key components: + +- **Privy Integration** - Primary authentication provider +- **Farcaster Integration** - Social identity and protocol access +- **Identity Management** - Multi-identity support with cryptographic keys +- **Authenticator System** - Modular authentication methods + +## Core Components + +### 1. Privy Integration + +Privy handles the primary authentication flow: + +```typescript +// Privy store manages user state +interface PrivyState { + privyUser?: PrivyUser | null; +} + +interface PrivyActions { + setPrivyUser: (user: PrivyUser | null) => void; +} +``` + +**Key Features:** +- Wallet connection (MetaMask, WalletConnect, etc.) +- Social login options +- User session management +- Multi-wallet support + +### 2. Farcaster Integration + +Farcaster provides social identity and protocol access: + +```typescript +// Farcaster store manages FID linking +type FarcasterActions = { + getFidsForCurrentIdentity: () => Promise; + registerFidForCurrentIdentity: ( + fid: number, + signingKey: string, + signMessage: (messageHash: Uint8Array) => Promise, + ) => Promise; + setFidsForCurrentIdentity: (fids: number[]) => void; + addFidToCurrentIdentity: (fid: number) => void; +}; +``` + +**Key Features:** +- FID (Farcaster ID) linking to identities +- Cryptographic signature verification +- Social graph access +- Cast and interaction capabilities + +### 3. Identity Management + +The system supports multiple identities per user: + +```typescript +export type AccountStore = IdentityStore & + AuthenticatorStore & + PreKeyStore & + FarcasterStore & + PrivyStore & { + reset: () => void; + hasNogs: boolean; + setHasNogs: (v: boolean) => void; + }; +``` + +**Identity Features:** +- Multiple space identities +- Cryptographic key management +- Identity switching +- Secure key storage + +### 4. Authenticator System + +Modular authentication methods for different services: + +```typescript +// Authenticator manager handles method calls +const authenticatorManager = useMemo(() => ({ + callMethod: async ( + { requestingFidgetId, authenticatorId, methodName, isLookup = false }, + ...args + ): Promise => { + // Handle authenticator method calls + }, + getInitializedAuthenticators: () => { + // Return available authenticators + } +})); +``` + +## Authentication Flow + +### 1. Initial Setup + +1. **User connects wallet** via Privy +2. **Identity creation** with cryptographic keys +3. **Farcaster linking** (optional) +4. **Authenticator setup** for services + +### 2. Farcaster Integration + +```typescript +// Register FID for current identity +const registerFidForCurrentIdentity = async ( + fid: number, + signingKey: string, + signMessage: (messageHash: Uint8Array) => Promise, +) => { + const request: Omit = { + fid, + identityPublicKey: get().account.currentSpaceIdentityPublicKey!, + timestamp: moment().toISOString(), + signingPublicKey: signingKey, + }; + + const signedRequest: FidLinkToIdentityRequest = { + ...request, + signature: bytesToHex(await signMessage(hashObject(request))), + }; + + // Submit to backend + const { data } = await axiosBackend.post( + "/api/fid-link", + signedRequest, + ); +}; +``` + +### 3. Identity Management + +```typescript +// Identity store manages multiple identities +interface IdentityStore { + spaceIdentities: SpaceIdentity[]; + currentSpaceIdentityPublicKey: string | null; + getCurrentIdentity: () => SpaceIdentity | null; + getCurrentIdentityIndex: () => number; + setCurrentSpaceIdentityPublicKey: (key: string | null) => void; +} +``` + +## Security Considerations + +### 1. Cryptographic Security + +- **Key Generation**: Secure random key generation +- **Key Storage**: Encrypted local storage +- **Signature Verification**: Cryptographic signature validation +- **Key Rotation**: Support for key updates + +### 2. Privacy Protection + +- **Local Storage**: Sensitive data stored locally +- **Encryption**: Keys encrypted with user wallet +- **No Central Storage**: No centralized key storage + +### 3. Access Control + +- **Permission System**: Fidget-level permissions +- **Method Authorization**: Authenticator method access control +- **Identity Verification**: Cryptographic identity verification + +## API Integration + +### FID Linking + +```typescript +// Link Farcaster FID to identity +POST /api/fid-link +{ + "fid": number, + "identityPublicKey": string, + "timestamp": string, + "signingPublicKey": string, + "signature": string +} +``` + +### Identity Management + +```typescript +// Get FIDs for identity +GET /api/fid-link?identityPublicKey={key} +``` + +## Development Patterns + +### 1. Adding New Authenticators + +```typescript +// Create authenticator in src/authenticators/ +export const newAuthenticator = (config: AuthenticatorConfig) => ({ + methods: { + methodName: async (params) => { + // Implementation + } + } +}); +``` + +### 2. Using Authenticators in Fidgets + +```typescript +// Access authenticator in fidget +const { callMethod } = useAuthenticatorManager(); + +const result = await callMethod({ + requestingFidgetId: 'my-fidget', + authenticatorId: 'farcaster:signers', + methodName: 'getUserInfo' +}); +``` + +### 3. Permission Management + +```typescript +// Check permissions before calling methods +const hasPermission = authenticatorConfig[authenticatorId] + .permissions[requestingFidgetId]?.includes(methodName); +``` + +## Troubleshooting + +### Common Issues + +1. **Authentication Failures**: Check Privy configuration +2. **FID Linking Issues**: Verify Farcaster integration +3. **Permission Denied**: Check authenticator permissions +4. **Key Management**: Ensure proper key storage + +### Debug Tools + +- Use React DevTools to inspect store state +- Check browser console for authentication errors +- Verify environment variables are set correctly +- Test with different wallet providers + +## Future Considerations + +- Enhanced permission system +- Multi-chain identity support +- Advanced key management +- Social recovery mechanisms diff --git a/docs/ARCHITECTURE/OVERVIEW.md b/docs/ARCHITECTURE/OVERVIEW.md new file mode 100644 index 000000000..bafd47fce --- /dev/null +++ b/docs/ARCHITECTURE/OVERVIEW.md @@ -0,0 +1,321 @@ +# Architecture Overview + +Nounspace is built on a modern, modular architecture that combines Next.js App Router with Zustand state management, creating a highly customizable Farcaster client experience. + +## High-Level Architecture + +```mermaid +graph TB + A[User Interface] --> B[Next.js App Router] + B --> C[Space System] + B --> D[Fidget System] + B --> E[Theme System] + B --> F[Authentication] + + C --> G[Public Spaces] + C --> H[Private Spaces] + C --> I[Layout System] + + D --> J[UI Fidgets] + D --> K[Farcaster Fidgets] + D --> L[Community Fidgets] + + E --> M[Visual Customization] + E --> N[Mobile Themes] + E --> O[Code Injection] + + F --> P[Privy Integration] + F --> Q[Farcaster Integration] + F --> R[Identity Management] + + G --> S[Supabase Storage] + H --> T[Encrypted Storage] + I --> U[Multiple Layouts] + + J --> V[Component Library] + K --> W[Protocol Integration] + L --> X[Community Features] + + M --> Y[CSS Variables] + N --> Z[Mobile Optimization] + O --> AA[Custom HTML/CSS] + + P --> BB[Wallet Connection] + Q --> CC[Social Identity] + R --> DD[Cryptographic Keys] +``` + +## Core Principles + +### 1. Modularity +- **Component-based architecture** with atomic design principles +- **Fidget system** for extensible mini-applications +- **Theme system** for visual customization +- **Space system** for organizational structure + +### 2. State Management +- **Zustand stores** for efficient state management +- **Store composition** for complex state relationships +- **Optimistic updates** for better user experience +- **Persistence** with selective storage strategies + +### 3. Authentication +- **Privy integration** for wallet-based authentication +- **Farcaster integration** for social identity +- **Multi-identity support** with cryptographic keys +- **Authenticator system** for service access + +### 4. Customization +- **Theme system** for visual personalization +- **Layout system** for multiple layout support +- **Fidget system** for functional customization +- **Mobile optimization** for responsive design + +## System Components + +### 1. Frontend Layer +- **Next.js App Router** - Modern React framework +- **TypeScript** - Type-safe development +- **Tailwind CSS** - Utility-first styling +- **Framer Motion** - Animation library + +### 2. State Management Layer +- **Zustand** - Lightweight state management +- **Store composition** - Modular store architecture +- **Persistence** - Local storage integration +- **Optimistic updates** - Immediate UI feedback + +### 3. Authentication Layer +- **Privy** - Wallet authentication +- **Farcaster** - Social protocol integration +- **Identity management** - Multi-identity support +- **Authenticator system** - Service access control + +### 4. Data Layer +- **Supabase** - Database and storage +- **Encrypted storage** - Private data protection +- **Public storage** - Shared content +- **API integration** - External service access + +### 5. Customization Layer +- **Theme system** - Visual customization +- **Layout system** - Multiple layout support +- **Fidget system** - Mini-application framework +- **Mobile system** - Responsive design + +## Data Flow + +### 1. User Interaction +```typescript +// User interacts with UI +const handleUserAction = (action: UserAction) => { + // Update local state optimistically + updateLocalState(action); + + // Sync with server + syncWithServer(action); +}; +``` + +### 2. State Updates +```typescript +// State updates flow through stores +const updateState = (newState: State) => { + // Update store + set((draft) => { + Object.assign(draft, newState); + }, "updateState"); + + // Persist changes + persistState(newState); +}; +``` + +### 3. Server Synchronization +```typescript +// Sync with server +const syncWithServer = async (changes: Changes) => { + try { + await api.updateServer(changes); + } catch (error) { + // Rollback optimistic updates + rollbackChanges(changes); + } +}; +``` + +## Security Architecture + +### 1. Authentication Flow +```typescript +// Authentication flow +const authenticateUser = async () => { + // 1. Connect wallet via Privy + const wallet = await privy.connect(); + + // 2. Create identity + const identity = await createIdentity(); + + // 3. Link Farcaster (optional) + if (userWantsFarcaster) { + await linkFarcaster(identity); + } + + // 4. Initialize stores + await initializeStores(identity); +}; +``` + +### 2. Data Encryption +```typescript +// Encrypt sensitive data +const encryptData = async (data: any, key: string) => { + const encrypted = await encrypt(data, key); + return encrypted; +}; + +// Decrypt data +const decryptData = async (encryptedData: any, key: string) => { + const decrypted = await decrypt(encryptedData, key); + return decrypted; +}; +``` + +### 3. Access Control +```typescript +// Check permissions +const checkPermission = (action: string, resource: string): boolean => { + const permissions = getCurrentUserPermissions(); + return permissions[resource]?.includes(action) || false; +}; +``` + +## Performance Architecture + +### 1. Lazy Loading +```typescript +// Lazy load components +const LazyComponent = lazy(() => import('./Component')); + +// Use with Suspense +const App = () => ( + }> + + +); +``` + +### 2. State Optimization +```typescript +// Optimize state updates +const useOptimizedState = (selector: (state: State) => any) => { + return useStore(selector, shallow); +}; +``` + +### 3. Caching Strategy +```typescript +// Cache expensive computations +const useMemoizedValue = (value: any) => { + return useMemo(() => computeExpensiveValue(value), [value]); +}; +``` + +## Development Architecture + +### 1. Component Structure +``` +src/ +├── app/ # Next.js App Router +│ ├── (spaces)/ # Space routes +│ ├── api/ # API routes +│ └── explore/ # Discovery routes +├── common/ # Shared components +│ ├── components/ # UI components +│ ├── data/ # State management +│ ├── lib/ # Utilities +│ └── providers/ # Context providers +├── fidgets/ # Mini-applications +├── constants/ # Application constants +└── styles/ # Global styles +``` + +### 2. State Management Structure +``` +src/common/data/stores/ +├── app/ # Main app store +│ ├── accounts/ # Authentication & identity +│ ├── homebase/ # Private spaces (homebase) +│ ├── space/ # Public spaces +│ ├── currentSpace/ # Current space context +│ ├── checkpoints/ # State snapshots +│ ├── chat/ # Chat functionality +│ └── setup/ # Onboarding flow +├── createStore.ts # Store utilities +└── types.ts # Type definitions +``` + +### 3. Component Architecture +``` +src/common/components/ +├── atoms/ # Basic components +├── molecules/ # Composite components +├── organisms/ # Complex components +└── templates/ # Page templates +``` + +## Integration Points + +### 1. External Services +- **Privy** - Authentication +- **Farcaster** - Social protocol +- **Supabase** - Database and storage +- **Neynar** - Farcaster API +- **Alchemy** - Blockchain data + +### 2. Internal Systems +- **Space System** - Content organization +- **Fidget System** - Mini-applications +- **Theme System** - Visual customization +- **Layout System** - Multiple layouts +- **Mobile System** - Responsive design + +## Scalability Considerations + +### 1. Store Architecture +- **Modular stores** for independent scaling +- **Store composition** for complex relationships +- **Selective persistence** for performance +- **Optimistic updates** for responsiveness + +### 2. Component Architecture +- **Atomic design** for reusability +- **Lazy loading** for performance +- **Memoization** for optimization +- **Error boundaries** for reliability + +### 3. Data Architecture +- **Encrypted storage** for privacy +- **Public storage** for sharing +- **Caching strategies** for performance +- **Sync mechanisms** for consistency + +## Future Architecture + +### 1. Planned Enhancements +- **Enhanced permission system** for fine-grained access control +- **Advanced theme system** with animation support +- **Fidget marketplace** for community fidgets +- **Collaboration features** for shared spaces + +### 2. Technical Improvements +- **Performance monitoring** for optimization +- **Advanced caching** for better UX +- **Real-time updates** for collaboration +- **Mobile optimization** for better performance + +### 3. Integration Opportunities +- **Additional protocols** for broader compatibility +- **Enhanced authentication** for better security +- **Advanced customization** for power users +- **Community features** for social interaction diff --git a/docs/ARCHITECTURE/STATE_MANAGEMENT.md b/docs/ARCHITECTURE/STATE_MANAGEMENT.md new file mode 100644 index 000000000..365213fcb --- /dev/null +++ b/docs/ARCHITECTURE/STATE_MANAGEMENT.md @@ -0,0 +1,394 @@ +# State Management Architecture + +Nounspace uses a sophisticated Zustand-based state management system with store composition, persistence, and optimistic updates. + +## Architecture Overview + +The state management system is built on several key principles: + +- **Store Composition** - Multiple specialized stores combined into a single app store +- **Persistence** - Selective persistence with merge strategies +- **Optimistic Updates** - Immediate UI updates with server synchronization +- **Type Safety** - Full TypeScript support with strict typing + +## Core Store Architecture + +### 1. Store Composition + +The main app store combines multiple specialized stores: + +```typescript +export type AppStore = { + account: AccountStore; // Authentication & identity + setup: SetupStore; // Onboarding flow + homebase: HomeBaseStore; // Private spaces + space: SpaceStore; // Public spaces + currentSpace: CurrentSpaceStore; // Current space context + checkpoints: CheckpointStore; // State snapshots + chat: ChatStore; // Chat functionality + logout: () => void; + getIsAccountReady: () => boolean; + getIsInitializing: () => boolean; + clearLocalSpaces: () => void; +}; +``` + +### 2. Store Creation System + +The `createStore` utility provides a standardized way to create stores: + +```typescript +export function createStore( + store: any, + persistArgs: PersistOptions, +) { + return create()(devtools(persist(mutative(store), persistArgs))); +} +``` + +**Key Features:** +- **Mutative Integration** - Immutable updates with performance +- **DevTools Support** - Redux DevTools integration +- **Persistence** - Configurable persistence strategies +- **Type Safety** - Full TypeScript support + +### 3. Store Bindings + +The `createStoreBindings` system provides React context integration: + +```typescript +export function createStoreBindings( + storeName: string, + createStoreFunc: () => StoreApi, +) { + const storeContext = createContext | null>(null); + + const provider: React.FC = ({ children }) => { + const storeRef = useRef>(); + if (!storeRef.current) { + storeRef.current = createStoreFunc(); + } + return React.createElement(storeContext.Provider, { value: storeRef.current }, children); + }; + + function useTStore(fn: (state: T) => S): S { + const context = useContext(storeContext); + if (!context) { + throw new Error(`use${storeName} must be use within ${storeName}Provider`); + } + return useStore(context, fn); + } + + return { provider, context: storeContext, useStore: useTStore }; +} +``` + +## Store Types + +### 1. Account Store + +Manages authentication and identity: + +```typescript +export type AccountStore = IdentityStore & + AuthenticatorStore & + PreKeyStore & + FarcasterStore & + PrivyStore & { + reset: () => void; + hasNogs: boolean; + setHasNogs: (v: boolean) => void; + }; +``` + +**Features:** +- Multi-identity support +- Authenticator management +- Farcaster integration +- Cryptographic key management + +### 2. Homebase Store + +Manages private spaces: + +```typescript +export type HomeBaseStore = { + spaces: Record; + addSpace: (space: SpaceData) => void; + updateSpace: (id: string, updates: Partial) => void; + removeSpace: (id: string) => void; + getSpace: (id: string) => SpaceData | null; + getAllSpaces: () => SpaceData[]; +}; +``` + +**Features:** +- Local space management +- Optimistic updates +- Persistence +- Space synchronization + +### 3. Space Store + +Manages public spaces: + +```typescript +export type SpaceStore = { + spaces: Record>; + addSpace: (space: Omit) => void; + updateSpace: (id: string, updates: Partial>) => void; + removeSpace: (id: string) => void; + getSpace: (id: string) => Omit | null; +}; +``` + +**Features:** +- Public space management +- Server synchronization +- Read-only operations +- Space discovery + +### 4. Current Space Store + +Manages current space context: + +```typescript +export type CurrentSpaceStore = { + currentSpaceId: string | null; + currentTabName: string | null; + setCurrentSpace: (spaceId: string | null) => void; + setCurrentTab: (tabName: string | null) => void; + getCurrentSpace: () => SpaceData | null; + getCurrentTab: () => TabData | null; +}; +``` + +**Features:** +- Current space tracking +- Tab management +- Context switching +- State synchronization + +## Persistence Strategy + +### 1. Selective Persistence + +Only specific parts of the store are persisted: + +```typescript +partialize: (state: AppStore) => ({ + account: partializedAccountStore(state), + homebase: partializedHomebaseStore(state), + space: partializedSpaceStore(state), + checkpoints: partializedCheckpointStore(state), + chat: partializedChatStore(state), +}), +``` + +### 2. Merge Strategy + +Persisted state is merged with current state: + +```typescript +merge: (persistedState, currentState: AppStore) => { + return merge(currentState, persistedState); +}, +``` + +### 3. Storage Configuration + +```typescript +const LOCAL_STORAGE_LOCATION = "nounspace-app-store"; + +export function createAppStore() { + return createStore(makeStoreFunc, { + name: LOCAL_STORAGE_LOCATION, + storage: createJSONStorage(() => localStorage), + // ... persistence configuration + }); +} +``` + +## Optimistic Updates + +### 1. Immediate UI Updates + +Stores support optimistic updates for better UX: + +```typescript +// Example: Adding a space optimistically +const addSpace = (space: SpaceData) => { + set((draft) => { + draft.homebase.spaces[space.id] = space; + }, "addSpace"); + + // Sync with server in background + syncSpaceWithServer(space); +}; +``` + +### 2. Error Handling + +Failed optimistic updates are rolled back: + +```typescript +const updateSpace = async (id: string, updates: Partial) => { + const originalSpace = get().homebase.spaces[id]; + + // Apply optimistic update + set((draft) => { + draft.homebase.spaces[id] = { ...originalSpace, ...updates }; + }, "updateSpace"); + + try { + await syncSpaceWithServer(id, updates); + } catch (error) { + // Rollback on error + set((draft) => { + draft.homebase.spaces[id] = originalSpace; + }, "rollbackUpdateSpace"); + } +}; +``` + +## Development Patterns + +### 1. Creating New Stores + +```typescript +// Define store type +export type MyStore = { + data: MyData[]; + addData: (item: MyData) => void; + updateData: (id: string, updates: Partial) => void; + removeData: (id: string) => void; +}; + +// Create store function +export const createMyStoreFunc: MatativeConfig = (set, get) => ({ + data: [], + addData: (item) => { + set((draft) => { + draft.data.push(item); + }, "addData"); + }, + updateData: (id, updates) => { + set((draft) => { + const index = draft.data.findIndex(item => item.id === id); + if (index !== -1) { + Object.assign(draft.data[index], updates); + } + }, "updateData"); + }, + removeData: (id) => { + set((draft) => { + draft.data = draft.data.filter(item => item.id !== id); + }, "removeData"); + }, +}); +``` + +### 2. Using Stores in Components + +```typescript +// Use app store +const { homebase, addSpace } = useAppStore((state) => ({ + homebase: state.homebase, + addSpace: state.homebase.addSpace, +})); + +// Use specific store +const { spaces } = useHomebaseStore((state) => ({ + spaces: state.spaces, +})); +``` + +### 3. Store Composition + +```typescript +// Combine multiple stores +export const createCombinedStoreFunc: MatativeConfig = (set, get) => ({ + ...createStoreAFunc(set, get), + ...createStoreBFunc(set, get), + // Combined actions + resetAll: () => { + get().storeA.reset(); + get().storeB.reset(); + }, +}); +``` + +## Performance Considerations + +### 1. Selective Subscriptions + +```typescript +// Good: Subscribe to specific state +const spaces = useAppStore((state) => state.homebase.spaces); + +// Avoid: Subscribe to entire store +const store = useAppStore(); +``` + +### 2. Memoization + +```typescript +// Memoize expensive computations +const expensiveValue = useMemo(() => { + return computeExpensiveValue(store.data); +}, [store.data]); +``` + +### 3. Store Splitting + +```typescript +// Split large stores into smaller ones +export type LargeStore = { + sectionA: SectionAStore; + sectionB: SectionBStore; + sectionC: SectionCStore; +}; +``` + +## Testing + +### 1. Store Testing + +```typescript +// Test store actions +const store = createTestStore(); +store.getState().addData(testData); +expect(store.getState().data).toContain(testData); +``` + +### 2. Integration Testing + +```typescript +// Test store interactions +const appStore = createAppStore(); +appStore.getState().homebase.addSpace(space); +appStore.getState().currentSpace.setCurrentSpace(space.id); +``` + +## Troubleshooting + +### Common Issues + +1. **Store Not Updating**: Check if component is subscribed to store +2. **Persistence Issues**: Verify partialize function includes required state +3. **Type Errors**: Ensure store types match implementation +4. **Performance Issues**: Check for unnecessary re-renders + +### Debug Tools + +- Use Redux DevTools to inspect store state +- Check browser console for store errors +- Verify store subscriptions in React DevTools +- Test store actions in isolation + +## Future Considerations + +- Enhanced persistence strategies +- Advanced optimistic update patterns +- Store middleware system +- Performance monitoring diff --git a/docs/CHANGELOG-PR1279-en.md b/docs/CHANGELOG-PR1279-en.md deleted file mode 100644 index 62a9fa6de..000000000 --- a/docs/CHANGELOG-PR1279-en.md +++ /dev/null @@ -1,261 +0,0 @@ -# Changelog - Multiple Layouts System - -## Implementation Overview - -**Features:** Mobile drag-and-drop system and homebase feed fix -**Changes:** +869 −1,232 lines - -## 🎯 Main Objectives Achieved - -### 1. Mobile Drag-and-Drop System Fix ✅ - -**Problem:** Dragging fidgets in mobile editor didn't update order in preview. - -**Root Cause:** `Space.tsx` used `Object.keys()` without sorting, ignoring `mobileOrder`. - -**Solution:** Implemented explicit sorting by `mobileOrder` before rendering. - -**Result:** Fully functional drag-and-drop system on mobile. - -### 2. Immutable Contextual Feed ✅ - -**Problem:** Feed appeared in all homebase tabs incorrectly. - -**Root Cause:** `isHomebasePath` too broad (`startsWith('/homebase')`). - -**Solution:** Changed to exact verification (`pathname === '/homebase'`). - -**Result:** Feed appears only in the correct homebase tab. - -### 3. Separation of Concerns (SoC) ✅ - -**Problem:** Components mixed business logic with presentation. - -**Solution:** Implemented clean architecture: -- `Space.tsx`: Controller and data management -- `MobileViewSimplified`: Only rendering -- `ThemeSettingsEditor`: State management - -**Result:** More maintainable and extensible code. - -## 📋 Modified Files - -### Core Components (3 files) - -#### `src/app/(spaces)/Space.tsx` - MAIN FILE -**Main changes:** -- ✅ Implemented sorting by `mobileOrder` (CRITICAL FIX) -- ✅ Removed `showFeedOnMobile` prop -- ✅ Applied Separation of Concerns -- ✅ Improved cleanup system -- ✅ Implemented contextual feed logic - -#### `src/app/(spaces)/MobileViewSimplified.tsx` - NEW FILE -**Replacement:** -- ❌ Removed: `MobileView.tsx` (300+ lines) -- ✅ Added: `MobileViewSimplified.tsx` (~95 lines) - -**Benefits:** -- Less code and complexity -- Reuses existing layout system -- Easier to maintain -- Fewer potential bugs - -#### `src/app/(spaces)/SpacePage.tsx` -**Changes:** -- ✅ Removed `showFeedOnMobile` forwarding - -### State Management (2 files) - -#### `src/common/lib/theme/ThemeSettingsEditor.tsx` -**Main changes:** -- ✅ Implemented automatic feed creation for `/homebase` -- ✅ Removed `NogsGateButton` -- ✅ Updated mini apps and ordering management - -#### `src/common/utils/layoutUtils.ts` -**Changes:** -- ✅ Added support for explicit mobile order -- ✅ Implemented feed injection logic -- ✅ Improved `processTabFidgetIds` - -### Layout System (2 files) - -#### `src/fidgets/layout/tabFullScreen/index.tsx` -**Changes:** -- ✅ Added `isHomebasePath` prop -- ✅ Updated tab ordering (feed first in homebase) -- ✅ Simplified CSS and container logic - -#### `src/fidgets/layout/tabFullScreen/components/TabNavigation.tsx` -**Changes:** -- ✅ Allowed rendering with single tab in homebase -- ✅ Special handling for feed name and icon - -### Mobile Interface (2 files) - -#### `src/common/components/organisms/MobileSettings.tsx` -**Changes:** -- ✅ Changed `DraggableMiniApp` key to `"miniapp-" + miniApp.id` -- ✅ Improved React reconciliation - -#### `src/common/components/organisms/MobileNavbar.tsx` -**Changes:** -- ✅ Added fallback for 'feed' label - -### Utilities (1 file) - -#### `src/common/lib/hooks/useProcessedFidgetIds.ts` -**Changes:** -- ✅ Minor formatting, no logic changes - -## 🔧 Technical Details of Changes - -### 1. Critical Drag-and-Drop Fix - -**Before:** -```typescript -// Space.tsx - PROBLEM -const fidgetIds = Object.keys(config.fidgetInstanceDatums); -// Random order! 😱 -``` - -**After:** -```typescript -// Space.tsx - SOLUTION -const fidgetIds = Object.keys(config.fidgetInstanceDatums || {}).sort((a, b) => { - const aOrder = config.fidgetInstanceDatums[a]?.config?.settings?.mobileOrder || 0; - const bOrder = config.fidgetInstanceDatums[b]?.config?.settings?.mobileOrder || 0; - return aOrder - bOrder; -}); -// Deterministic order! ✅ -``` - -### 2. Contextual Feed Implementation - -**Precise context detection:** -```typescript -// Before: too broad -const isHomebasePath = pathname.startsWith('/homebase'); - -// After: exact -const isHomebaseFeedTab = pathname === '/homebase'; -``` - -**Automatic feed creation:** -```typescript -useEffect(() => { - if (isHomebaseFeedTab && !fidgetInstanceDatums['feed']) { - const feedFidget = { - id: 'feed', - fidgetType: 'feed', - config: { - editable: false, // Immutable - settings: { - customMobileDisplayName: 'Feed', - mobileIconName: 'FaBars', - showOnMobile: true, - mobileOrder: 0 - } - } - }; - saveFidgetInstanceDatums({ - ...fidgetInstanceDatums, - feed: feedFidget - }); - } -}, [isHomebaseFeedTab, fidgetInstanceDatums]); -``` - -### 3. Separation of Concerns - -**Implemented architecture:** -```text -Space.tsx (Controller) -├── Determines which layout to use -├── Manages data migration -├── Applies correct ordering -└── Passes processed data - -MobileViewSimplified (Presenter) -├── Receives ready data -├── Only renders -└── No business logic - -ThemeSettingsEditor (State Manager) -├── Manages fidget state -├── Processes drag callbacks -└── Persists changes -``` - -## 📊 PR Metrics - -### Lines of Code -- **Added:** 869 lines -- **Removed:** 1,232 lines -- **Net result:** -363 lines (code reduction!) - -### Files -- **Modified:** 9 files -- **New:** 1 file (`MobileViewSimplified.tsx`) -- **Removed:** 1 file (`MobileView.tsx`) - -### Complexity -- **Reduced:** `MobileView` 300+ lines → `MobileViewSimplified` ~95 lines -- **Simplified:** Centralized drag-and-drop logic -- **Optimized:** Fewer re-renders and better performance - -## 🐛 Fixed Bugs - -| Bug | Location | Status | -|-----|----------|---------| -| **Drag with no effect** | `Space.tsx` | ✅ Fixed | -| **Feed in wrong place** | `ThemeSettingsEditor.tsx` | ✅ Fixed | -| **Cut off background** | `Space.tsx` | ✅ Fixed | - -## 🔄 Implemented Flow - -### New Drag-and-Drop Flow -```text -1. 👤 User drags fidget in sidebar -2. 🔄 MobileSettings updates local order -3. 📤 Callback to ThemeSettingsEditor -4. 💾 Saves fidgetInstanceDatums with mobileOrder -5. ⭐ Space.tsx sorts by mobileOrder (KEY!) -6. 📱 MobileViewSimplified re-renders -7. ✅ TabNavigation shows new order -``` - -## 🎯 Validation and Testing - -### Tested Scenarios -- ✅ Functional drag-and-drop -- ✅ Order persistence -- ✅ Feed only in homebase -- ✅ Automatic migration -- ✅ Optimized performance - -## 🚀 Deploy - -- **Vercel:** ✅ Successful deploy -- **Checks:** ✅ 4/4 checks passing -- **Preview:** [Available for testing](https://nounspace-f9bd4o5j5-nounspace.vercel.app/) - -## 💡 Lessons Learned - -### Resolved Technical Debt -- **Unnecessary complexity:** `MobileView` replaced with simpler solution -- **Scattered logic:** Centralized in correct location -- **Performance:** Optimized with memoization and SoC - -### Applied Best Practices -- **Separation of Concerns:** Applied consistently -- **Clean code:** Significant line reduction -- **Documentation:** Complete guides for maintenance -- **Testing:** Edge case coverage - ---- - -**Implementation:** Multiple layouts system -**Documentation:** Complete -**Features:** Implemented and tested diff --git a/docs/CONFIGURATION.md b/docs/CONFIGURATION.md new file mode 100644 index 000000000..64aeef79c --- /dev/null +++ b/docs/CONFIGURATION.md @@ -0,0 +1,163 @@ +# Configuration Guide + +## Environment Variables + +The application uses environment variables to configure community-specific settings and external services. + +### Community Configuration + +The most important environment variable for whitelabeling is: + +```bash +NEXT_PUBLIC_COMMUNITY=nouns +``` + +This determines which community configuration to load. Available options: +- `nouns` (default) - Uses the Nouns community configuration +- `example` - Uses the example community configuration template +- `clanker` - Uses the Clanker community configuration + +### Required Environment Variables + +```bash +# Community Configuration +NEXT_PUBLIC_COMMUNITY=nouns + +# Database Configuration (Supabase) +NEXT_PUBLIC_SUPABASE_URL=your_supabase_url_here +NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key_here + +# Authentication Configuration (Privy) +NEXT_PUBLIC_PRIVY_APP_ID=your_privy_app_id_here + +# Blockchain Configuration +NEXT_PUBLIC_ALCHEMY_API_KEY=your_alchemy_api_key_here +NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=your_walletconnect_project_id_here + +# Neynar API Configuration +NEYNAR_API_KEY=your_neynar_api_key_here + +# Application URLs +NEXT_PUBLIC_WEBSITE_URL=http://localhost:3000 +``` + +## Configuration Loading + +The application automatically loads the appropriate configuration based on the `NEXT_PUBLIC_COMMUNITY` environment variable: + +1. **Environment Variable Reading**: The system reads `NEXT_PUBLIC_COMMUNITY` from environment variables +2. **Validation**: Validates that the configuration exists in the available configurations +3. **Fallback**: Falls back to the `nouns` configuration if an invalid or missing value is provided +4. **Loading**: Loads the corresponding community configuration + +## Configuration Structure + +The configuration is organized into community-specific folders: + +``` +src/config/ +├── nouns/ # Nouns community configuration +│ ├── nouns.brand.ts # Brand identity +│ ├── nouns.assets.ts # Visual assets +│ ├── nouns.theme.ts # Theme definitions +│ ├── nouns.community.ts # Community integration +│ ├── nouns.fidgets.ts # Fidget management +│ ├── nouns.home.ts # Home page configuration +│ ├── initial*.ts # Initial space templates +│ └── index.ts # Configuration export +├── example/ # Example community configuration +│ ├── example.brand.ts # Brand identity template +│ ├── example.assets.ts # Visual assets template +│ ├── example.theme.ts # Theme definitions template +│ ├── example.community.ts # Community integration template +│ ├── example.fidgets.ts # Fidget management template +│ ├── example.home.ts # Home page configuration template +│ ├── example.initialSpaces.ts # Initial space templates +│ └── index.ts # Configuration export +├── clanker/ # Clanker community configuration +│ ├── clanker.brand.ts # Brand identity +│ ├── clanker.assets.ts # Visual assets +│ ├── clanker.theme.ts # Theme definitions +│ ├── clanker.community.ts # Community integration +│ ├── clanker.fidgets.ts # Fidget management +│ ├── clanker.home.ts # Home page configuration +│ ├── initialSpaces/ # Initial space templates +│ └── index.ts # Configuration export +├── systemConfig.ts # System configuration interface +├── initialSpaceConfig.ts # Base space configuration +└── index.ts # Main configuration loader +``` + +## Build-Time Configuration + +The system uses build-time configuration to determine which community configuration to use. This means: + +1. **Environment Variable**: Set `NEXT_PUBLIC_COMMUNITY` at build time +2. **Build Process**: The configuration is baked into the build +3. **No Runtime Switching**: The configuration cannot be changed after build + +### Building Different Communities + +**For Nouns community (default):** +```bash +npm run build +# or explicitly +NEXT_PUBLIC_COMMUNITY=nouns npm run build +``` + +**For Example community:** +```bash +NEXT_PUBLIC_COMMUNITY=example npm run build +``` + +**For Clanker community:** +```bash +NEXT_PUBLIC_COMMUNITY=clanker npm run build +``` + +### Development + +**For Nouns development:** +```bash +npm run dev +# or explicitly +NEXT_PUBLIC_COMMUNITY=nouns npm run dev +``` + +**For Example development:** +```bash +NEXT_PUBLIC_COMMUNITY=example npm run dev +``` + +### What Gets Configured + +When you set `NEXT_PUBLIC_COMMUNITY=example` (or `clanker`), the system will: + +1. **Load that community's system config** (brand, assets, theme, community settings) +2. **Use that community's fidget configurations** +3. **Use that community's home page configuration** +4. **Use that community's initial space templates** (profile, channel, token, proposal, homebase) + +## Adding New Community Configurations + +To add a new community configuration: + +1. Create a new folder under `src/config/` (e.g., `src/config/mycommunity/`) +2. Copy the structure from `src/config/example/` as a template +3. Update all configuration files with your community's specific values +4. Add the new configuration to the `AVAILABLE_CONFIGURATIONS` array in `src/config/index.ts` +5. Add a new case to the switch statement in `loadSystemConfig()` and the runtime delegates for space creators +6. Update this documentation + +## Development vs Production + +- **Development**: Uses local environment variables from `.env.local` or `.env` +- **Production**: Uses environment variables set in your deployment platform (Vercel, etc.) + +## Configuration Validation + +The system includes built-in validation that: +- Checks if the provided community configuration is valid +- Logs warnings for invalid configurations +- Provides helpful error messages with available options +- Always falls back to a working configuration (nouns) diff --git a/docs/CONTRIBUTING.MD b/docs/CONTRIBUTING.MD index 8ca40d1b4..148931e11 100644 --- a/docs/CONTRIBUTING.MD +++ b/docs/CONTRIBUTING.MD @@ -2,8 +2,8 @@ To add any code to the `nounspace/Nounspace.ts` repo, you will need to open a PR. -## Typescript -Nounspace is written fully in typescript. At time of writing this (5/7/24), we are still in the process of fixing type errors that exist from the original codebase. +## TypeScript +Nounspace is written fully in TypeScript with strict type checking enabled. ## Steps to open a PR Nounspace expects its contributors to follow the "Fork and Pull" method to open PRs. Below is a TL;DR for this process @@ -21,6 +21,7 @@ For more details on the "Fork and Pull" method, check out [Github's docs](https: ## PR Expectations - All commits follow [conventional commits](https://www.conventionalcommits.org/) -- PR's titles begin with either "[FIDGET]" or "[CLIENT]" to show if the changes made are a Fidget submission or a change to the client code base -- PR's bodies outline the changes made, and the rationale for them. -- All PR's contain no new type errors and are fully valid typescript code +- PR titles begin with either "[FIDGET]" or "[CLIENT]" to show if the changes made are a Fidget submission or a change to the client codebase +- PR bodies outline the changes made and the rationale for them +- All PRs contain no new type errors and are fully valid TypeScript code +- Run `npm run lint` and `npm run check-types` before submitting diff --git a/docs/AGENTS.md b/docs/DEVELOPMENT/AGENTS.md similarity index 100% rename from docs/AGENTS.md rename to docs/DEVELOPMENT/AGENTS.md diff --git a/docs/DEVELOPMENT/CODING_STANDARDS.md b/docs/DEVELOPMENT/CODING_STANDARDS.md new file mode 100644 index 000000000..70ac3e5bb --- /dev/null +++ b/docs/DEVELOPMENT/CODING_STANDARDS.md @@ -0,0 +1,609 @@ +# Coding Standards + +This document outlines the coding standards and best practices for the Nounspace codebase to ensure consistency, maintainability, and code quality. + +## TypeScript Standards + +### 1. Type Safety +- **Strict TypeScript** - Use strict mode with all type checking enabled +- **Explicit Types** - Define types for all function parameters and return values +- **Interface Definitions** - Use interfaces for object shapes and component props +- **Generic Types** - Use generics for reusable type-safe code + +```typescript +// Good: Explicit types +interface UserProps { + id: string; + name: string; + email: string; + isActive: boolean; +} + +const User: React.FC = ({ id, name, email, isActive }) => { + return ( +
+

{name}

+

{email}

+ {isActive ? 'Active' : 'Inactive'} +
+ ); +}; + +// Good: Generic types +interface ApiResponse { + data: T; + status: number; + message: string; +} + +const fetchUser = async (id: string): Promise> => { + const response = await api.get(`/users/${id}`); + return response.data; +}; +``` + +### 2. Type Definitions +- **Centralized Types** - Define types in dedicated files +- **Reusable Types** - Create shared types for common patterns +- **Type Guards** - Use type guards for runtime type checking +- **Discriminated Unions** - Use discriminated unions for complex state + +```typescript +// types/user.ts +export interface User { + id: string; + name: string; + email: string; + role: UserRole; +} + +export type UserRole = 'admin' | 'user' | 'guest'; + +export interface UserState { + user: User | null; + loading: boolean; + error: string | null; +} + +// Type guard +export const isUser = (value: any): value is User => { + return value && typeof value.id === 'string' && typeof value.name === 'string'; +}; +``` + +## React Standards + +### 1. Component Structure +- **Functional Components** - Use functional components with hooks +- **Component Props** - Define clear prop interfaces +- **Default Props** - Use default parameters instead of defaultProps +- **Component Composition** - Prefer composition over inheritance + +```typescript +// Good: Functional component with clear props +interface ButtonProps { + variant?: 'primary' | 'secondary' | 'danger'; + size?: 'sm' | 'md' | 'lg'; + disabled?: boolean; + onClick?: () => void; + children: React.ReactNode; +} + +export const Button: React.FC = ({ + variant = 'primary', + size = 'md', + disabled = false, + onClick, + children, +}) => { + return ( + + ); +}; +``` + +### 2. Hooks Usage +- **Custom Hooks** - Extract reusable logic into custom hooks +- **Hook Dependencies** - Always include all dependencies in useEffect +- **Hook Rules** - Follow the rules of hooks consistently +- **Hook Optimization** - Use useMemo and useCallback appropriately + +```typescript +// Good: Custom hook with proper dependencies +export const useUser = (userId: string) => { + const [user, setUser] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + const fetchUser = async () => { + try { + setLoading(true); + const userData = await api.getUser(userId); + setUser(userData); + } catch (err) { + setError(err instanceof Error ? err.message : 'Unknown error'); + } finally { + setLoading(false); + } + }; + + if (userId) { + fetchUser(); + } + }, [userId]); // Include all dependencies + + return { user, loading, error }; +}; +``` + +### 3. State Management +- **Local State** - Use useState for component-local state +- **Global State** - Use Zustand for global state management +- **State Updates** - Use functional updates for state that depends on previous state +- **State Normalization** - Keep state normalized and flat + +```typescript +// Good: Functional state updates +const [count, setCount] = useState(0); + +const increment = () => { + setCount(prevCount => prevCount + 1); +}; + +// Good: Normalized state +interface AppState { + users: Record; + spaces: Record; + currentUserId: string | null; +} +``` + +## Code Organization + +### 1. File Structure +- **Atomic Design** - Organize components by atomic design principles +- **Feature-based** - Group related functionality together +- **Barrel Exports** - Use index files for clean imports +- **Co-location** - Keep related files close together + +``` +src/ +├── components/ +│ ├── atoms/ +│ │ ├── Button/ +│ │ │ ├── Button.tsx +│ │ │ ├── Button.test.tsx +│ │ │ └── index.ts +│ │ └── index.ts +│ ├── molecules/ +│ └── organisms/ +├── hooks/ +├── utils/ +├── types/ +└── constants/ +``` + +### 2. Import/Export Standards +- **Named Exports** - Use named exports for better tree shaking +- **Barrel Exports** - Use index files for clean imports +- **Import Order** - Organize imports in a consistent order +- **Absolute Imports** - Use absolute imports for better refactoring + +```typescript +// Good: Import order +// 1. React and external libraries +import React, { useState, useEffect } from 'react'; +import { useRouter } from 'next/router'; +import { Button } from '@mui/material'; + +// 2. Internal imports (absolute paths) +import { useUser } from '@/hooks/useUser'; +import { User } from '@/types/user'; +import { api } from '@/utils/api'; + +// 3. Relative imports +import './Button.css'; +``` + +### 3. Naming Conventions +- **PascalCase** - Use PascalCase for components and types +- **camelCase** - Use camelCase for variables and functions +- **kebab-case** - Use kebab-case for file names +- **Descriptive Names** - Use descriptive names that explain intent + +```typescript +// Good: Naming conventions +// Components +export const UserProfile: React.FC = () => {}; + +// Hooks +export const useUserProfile = () => {}; + +// Types +interface UserProfileProps { + userId: string; + showAvatar?: boolean; +} + +// Files: user-profile.tsx, use-user-profile.ts +``` + +## Error Handling + +### 1. Error Boundaries +- **Error Boundaries** - Use error boundaries to catch component errors +- **Fallback UI** - Provide meaningful fallback UI for errors +- **Error Logging** - Log errors for debugging and monitoring +- **User-friendly Messages** - Show user-friendly error messages + +```typescript +// Error boundary +export class ErrorBoundary extends React.Component { + constructor(props: ErrorBoundaryProps) { + super(props); + this.state = { hasError: false, error: null }; + } + + static getDerivedStateFromError(error: Error): ErrorBoundaryState { + return { hasError: true, error }; + } + + componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { + console.error('Error caught by boundary:', error, errorInfo); + // Log to error reporting service + } + + render() { + if (this.state.hasError) { + return ( +
+

Something went wrong

+

Please refresh the page or try again later.

+
+ ); + } + + return this.props.children; + } +} +``` + +### 2. Async Error Handling +- **Try-Catch** - Use try-catch for async operations +- **Error States** - Handle error states in components +- **Retry Logic** - Implement retry logic for failed operations +- **Loading States** - Show loading states during async operations + +```typescript +// Good: Async error handling +export const useAsyncOperation = () => { + const [data, setData] = useState(null); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + const execute = async (operation: () => Promise) => { + try { + setLoading(true); + setError(null); + const result = await operation(); + setData(result); + } catch (err) { + setError(err instanceof Error ? err.message : 'Unknown error'); + } finally { + setLoading(false); + } + }; + + return { data, loading, error, execute }; +}; +``` + +## Performance Standards + +### 1. Optimization Techniques +- **Memoization** - Use React.memo, useMemo, and useCallback appropriately +- **Lazy Loading** - Implement lazy loading for heavy components +- **Code Splitting** - Split code into smaller chunks +- **Bundle Analysis** - Regularly analyze bundle size + +```typescript +// Good: Memoization +export const ExpensiveComponent = React.memo(({ + data, + onUpdate, +}) => { + const processedData = useMemo(() => { + return data.map(item => processItem(item)); + }, [data]); + + const handleUpdate = useCallback((id: string, updates: any) => { + onUpdate(id, updates); + }, [onUpdate]); + + return ( +
+ {processedData.map(item => ( + + ))} +
+ ); +}); +``` + +### 2. Bundle Optimization +- **Tree Shaking** - Use named exports for better tree shaking +- **Dynamic Imports** - Use dynamic imports for code splitting +- **Bundle Analysis** - Use tools like webpack-bundle-analyzer +- **Dependency Management** - Keep dependencies up to date + +```typescript +// Good: Dynamic imports +const LazyComponent = lazy(() => import('./HeavyComponent')); + +export const App = () => ( + }> + + +); +``` + +## Testing Standards + +### 1. Test Structure +- **AAA Pattern** - Arrange, Act, Assert pattern for tests +- **Test Isolation** - Each test should be independent +- **Descriptive Names** - Use descriptive test names +- **Test Coverage** - Aim for high test coverage + +```typescript +// Good: Test structure +describe('UserProfile', () => { + it('should display user information when user is loaded', () => { + // Arrange + const mockUser: User = { + id: '1', + name: 'John Doe', + email: 'john@example.com', + role: 'user' + }; + + // Act + render(); + + // Assert + expect(screen.getByText('John Doe')).toBeInTheDocument(); + expect(screen.getByText('john@example.com')).toBeInTheDocument(); + }); +}); +``` + +### 2. Test Types +- **Unit Tests** - Test individual components and functions +- **Integration Tests** - Test component interactions +- **E2E Tests** - Test complete user workflows +- **Accessibility Tests** - Test accessibility compliance + +```typescript +// Good: Integration test +describe('User Management', () => { + it('should allow user to update profile', async () => { + render( + + + + ); + + const nameInput = screen.getByLabelText('Name'); + const saveButton = screen.getByText('Save'); + + fireEvent.change(nameInput, { target: { value: 'New Name' } }); + fireEvent.click(saveButton); + + await waitFor(() => { + expect(screen.getByText('Profile updated')).toBeInTheDocument(); + }); + }); +}); +``` + +## Documentation Standards + +### 1. Code Comments +- **JSDoc Comments** - Use JSDoc for function documentation +- **Inline Comments** - Use inline comments for complex logic +- **TODO Comments** - Use TODO comments for future improvements +- **Deprecation Comments** - Mark deprecated code clearly + +```typescript +/** + * Fetches user data from the API + * @param userId - The unique identifier for the user + * @param options - Optional configuration for the request + * @returns Promise that resolves to user data + * @throws {Error} When the user is not found or API request fails + */ +export const fetchUser = async ( + userId: string, + options?: FetchOptions +): Promise => { + // TODO: Add caching mechanism + try { + const response = await api.get(`/users/${userId}`, options); + return response.data; + } catch (error) { + // Log error for debugging + console.error('Failed to fetch user:', error); + throw new Error('User not found'); + } +}; +``` + +### 2. README Files +- **Component README** - Document complex components +- **API Documentation** - Document API endpoints and usage +- **Setup Instructions** - Provide clear setup instructions +- **Examples** - Include usage examples + +```markdown +# UserProfile Component + +A component for displaying and editing user profile information. + +## Usage + +```typescript +import { UserProfile } from '@/components/UserProfile'; + + +``` + +## Props + +| Prop | Type | Default | Description | +|------|------|---------|-------------| +| user | User | - | User data to display | +| onUpdate | (user: User) => void | - | Callback when user is updated | +| showAvatar | boolean | true | Whether to show user avatar | + +## Examples + +See the examples directory for more usage examples. +``` + +## Security Standards + +### 1. Input Validation +- **Sanitization** - Sanitize all user inputs +- **Validation** - Validate data on both client and server +- **Type Safety** - Use TypeScript for compile-time type checking +- **Error Handling** - Handle validation errors gracefully + +```typescript +// Good: Input validation +export const validateUserInput = (input: any): UserInput => { + const schema = z.object({ + name: z.string().min(1).max(100), + email: z.string().email(), + age: z.number().min(0).max(120), + }); + + return schema.parse(input); +}; +``` + +### 2. Security Best Practices +- **HTTPS Only** - Use HTTPS for all communications +- **Input Sanitization** - Sanitize all user inputs +- **XSS Prevention** - Prevent cross-site scripting attacks +- **CSRF Protection** - Implement CSRF protection + +```typescript +// Good: XSS prevention +export const sanitizeHtml = (html: string): string => { + return DOMPurify.sanitize(html, { + ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'a'], + ALLOWED_ATTR: ['href', 'title'], + }); +}; +``` + +## Accessibility Standards + +### 1. ARIA Attributes +- **Semantic HTML** - Use semantic HTML elements +- **ARIA Labels** - Provide ARIA labels for screen readers +- **Keyboard Navigation** - Ensure keyboard accessibility +- **Focus Management** - Manage focus appropriately + +```typescript +// Good: Accessibility +export const AccessibleButton: React.FC = ({ + children, + onClick, + disabled, + ariaLabel, +}) => { + return ( + + ); +}; +``` + +### 2. Testing Accessibility +- **Screen Reader Testing** - Test with screen readers +- **Keyboard Testing** - Test keyboard navigation +- **Color Contrast** - Ensure proper color contrast +- **Focus Indicators** - Provide clear focus indicators + +```typescript +// Good: Accessibility testing +describe('Accessibility', () => { + it('should be accessible to screen readers', () => { + render(); + + expect(screen.getByRole('main')).toBeInTheDocument(); + expect(screen.getByLabelText('User name')).toBeInTheDocument(); + }); + + it('should support keyboard navigation', () => { + render(); + + const nameInput = screen.getByLabelText('User name'); + nameInput.focus(); + expect(nameInput).toHaveFocus(); + }); +}); +``` + +## Code Review Standards + +### 1. Review Checklist +- **Functionality** - Does the code work as intended? +- **Performance** - Are there any performance issues? +- **Security** - Are there any security vulnerabilities? +- **Accessibility** - Is the code accessible? +- **Testing** - Are there adequate tests? +- **Documentation** - Is the code well documented? + +### 2. Review Process +- **Self Review** - Review your own code before submitting +- **Peer Review** - Get at least one peer review +- **Automated Checks** - Ensure all automated checks pass +- **Documentation** - Update documentation as needed + +## Continuous Improvement + +### 1. Code Quality Metrics +- **Test Coverage** - Maintain high test coverage +- **Code Complexity** - Keep code complexity low +- **Performance Metrics** - Monitor performance metrics +- **Security Scans** - Regular security scans + +### 2. Learning and Development +- **Code Reviews** - Learn from code reviews +- **Best Practices** - Stay updated with best practices +- **Tools and Techniques** - Learn new tools and techniques +- **Community** - Participate in the development community diff --git a/docs/DEVELOPMENT/COMPONENT_ARCHITECTURE.md b/docs/DEVELOPMENT/COMPONENT_ARCHITECTURE.md new file mode 100644 index 000000000..e739bea3f --- /dev/null +++ b/docs/DEVELOPMENT/COMPONENT_ARCHITECTURE.md @@ -0,0 +1,573 @@ +# Component Architecture + +Nounspace follows atomic design principles with a modular component architecture that promotes reusability, maintainability, and scalability. + +## Atomic Design Structure + +### 1. Atoms +Basic building blocks that cannot be broken down further: + +```typescript +// Button atom +export const Button: React.FC = ({ + variant = "primary", + size = "medium", + children, + onClick, + disabled = false, + ...props +}) => { + const baseClasses = "inline-flex items-center justify-center rounded-md font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none"; + + const variantClasses = { + primary: "bg-primary text-primary-foreground hover:bg-primary/90", + secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", + destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", + outline: "border border-input hover:bg-accent hover:text-accent-foreground", + ghost: "hover:bg-accent hover:text-accent-foreground", + link: "text-primary underline-offset-4 hover:underline", + }; + + const sizeClasses = { + sm: "h-9 px-3 text-sm", + md: "h-10 px-4 py-2", + lg: "h-11 px-8", + icon: "h-10 w-10", + }; + + return ( + + ); +}; +``` + +### 2. Molecules +Simple combinations of atoms that form functional units: + +```typescript +// SearchInput molecule +export const SearchInput: React.FC = ({ + placeholder = "Search...", + value, + onChange, + onSearch, + className, +}) => { + const [inputValue, setInputValue] = useState(value || ""); + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + onSearch?.(inputValue); + }; + + return ( +
+ { + setInputValue(e.target.value); + onChange?.(e.target.value); + }} + className="pr-10" + /> + +
+ ); +}; +``` + +### 3. Organisms +Complex components that form distinct sections: + +```typescript +// Navigation organism +export const Navigation: React.FC = ({ + currentSpace, + spaces, + onSpaceChange, + onThemeToggle, + theme, +}) => { + const [isOpen, setIsOpen] = useState(false); + + return ( + + ); +}; +``` + +### 4. Templates +Page-level components that define layout structure: + +```typescript +// Space template +export const SpaceTemplate: React.FC = ({ + space, + theme, + children, +}) => { + return ( +
+ +
+ + {children} + +
+
+
+ ); +}; +``` + +## Component Patterns + +### 1. Compound Components +Components that work together as a cohesive unit: + +```typescript +// Tabs compound component +export const Tabs = ({ children, defaultValue, value, onValueChange }) => { + const [activeTab, setActiveTab] = useState(defaultValue); + + const handleTabChange = (tabValue: string) => { + setActiveTab(tabValue); + onValueChange?.(tabValue); + }; + + return ( + + {children} + + ); +}; + +export const TabsList = ({ children, className }) => ( +
+ {children} +
+); + +export const TabsTrigger = ({ value, children, className }) => { + const { activeTab, onTabChange } = useContext(TabsContext); + + return ( + + ); +}; + +export const TabsContent = ({ value, children, className }) => { + const { activeTab } = useContext(TabsContext); + + if (activeTab !== value) return null; + + return ( +
+ {children} +
+ ); +}; +``` + +### 2. Render Props +Components that accept functions as children: + +```typescript +// DataProvider with render props +export const DataProvider: React.FC = ({ + children, + data, + loading, + error, +}) => { + if (loading) return ; + if (error) return ; + + return ( + + {typeof children === 'function' ? children(data) : children} + + ); +}; + +// Usage + + {(data) => ( +
+

Welcome, {data.name}!

+

Your spaces: {data.spaces.length}

+
+ )} +
+``` + +### 3. Higher-Order Components +Components that enhance other components: + +```typescript +// withTheme HOC +export const withTheme =

( + Component: React.ComponentType

+) => { + return (props: P) => { + const theme = useTheme(); + + return ( +

+ +
+ ); + }; +}; + +// Usage +const ThemedButton = withTheme(Button); +``` + +### 4. Custom Hooks +Reusable logic that can be shared between components: + +```typescript +// useLocalStorage hook +export const useLocalStorage = (key: string, initialValue: T) => { + const [storedValue, setStoredValue] = useState(() => { + try { + const item = window.localStorage.getItem(key); + return item ? JSON.parse(item) : initialValue; + } catch (error) { + console.error(`Error reading localStorage key "${key}":`, error); + return initialValue; + } + }); + + const setValue = (value: T | ((val: T) => T)) => { + try { + const valueToStore = value instanceof Function ? value(storedValue) : value; + setStoredValue(valueToStore); + window.localStorage.setItem(key, JSON.stringify(valueToStore)); + } catch (error) { + console.error(`Error setting localStorage key "${key}":`, error); + } + }; + + return [storedValue, setValue] as const; +}; + +// Usage +const [theme, setTheme] = useLocalStorage('theme', 'light'); +``` + +## Component Composition + +### 1. Composition over Inheritance +```typescript +// Flexible component composition +export const Card = ({ children, className, ...props }) => ( +
+ {children} +
+); + +export const CardHeader = ({ children, className, ...props }) => ( +
+ {children} +
+); + +export const CardTitle = ({ children, className, ...props }) => ( +

+ {children} +

+); + +// Usage + + + Space Settings + + + + + +``` + +### 2. Slot-based Composition +```typescript +// Slot-based component +export const Modal = ({ children, isOpen, onClose }) => { + if (!isOpen) return null; + + return ( +
+
+
+ {children} +
+
+ ); +}; + +// Usage with slots + + + Confirm Action + + +

Are you sure you want to delete this space?

+
+ + + + +
+``` + +## State Management Patterns + +### 1. Local State +```typescript +// Component with local state +export const Counter = () => { + const [count, setCount] = useState(0); + + return ( +
+

Count: {count}

+ +
+ ); +}; +``` + +### 2. Lifted State +```typescript +// State lifted to parent +export const ParentComponent = () => { + const [count, setCount] = useState(0); + + return ( +
+ setCount(count + 1)} /> + +
+ ); +}; +``` + +### 3. Global State +```typescript +// Global state with Zustand +export const useCounterStore = create((set) => ({ + count: 0, + increment: () => set((state) => ({ count: state.count + 1 })), + decrement: () => set((state) => ({ count: state.count - 1 })), +})); + +// Usage in component +export const Counter = () => { + const { count, increment } = useCounterStore(); + + return ( +
+

Count: {count}

+ +
+ ); +}; +``` + +## Performance Optimization + +### 1. Memoization +```typescript +// Memoized component +export const ExpensiveComponent = React.memo(({ data, onUpdate }) => { + const processedData = useMemo(() => { + return data.map(item => ({ + ...item, + processed: expensiveCalculation(item) + })); + }, [data]); + + return ( +
+ {processedData.map(item => ( + + ))} +
+ ); +}); +``` + +### 2. Lazy Loading +```typescript +// Lazy loaded component +const LazyComponent = lazy(() => import('./HeavyComponent')); + +export const App = () => ( + }> + + +); +``` + +### 3. Virtual Scrolling +```typescript +// Virtual scrolling for large lists +export const VirtualList = ({ items, itemHeight, containerHeight }) => { + const [scrollTop, setScrollTop] = useState(0); + + const visibleStart = Math.floor(scrollTop / itemHeight); + const visibleEnd = Math.min( + visibleStart + Math.ceil(containerHeight / itemHeight), + items.length + ); + + const visibleItems = items.slice(visibleStart, visibleEnd); + + return ( +
setScrollTop(e.target.scrollTop)} + > +
+ {visibleItems.map((item, index) => ( +
+ {item.content} +
+ ))} +
+
+ ); +}; +``` + +## Testing Patterns + +### 1. Component Testing +```typescript +// Component test +describe('Button', () => { + it('renders with correct text', () => { + render(); + expect(screen.getByText('Click me')).toBeInTheDocument(); + }); + + it('calls onClick when clicked', () => { + const handleClick = jest.fn(); + render(); + fireEvent.click(screen.getByText('Click me')); + expect(handleClick).toHaveBeenCalledTimes(1); + }); +}); +``` + +### 2. Hook Testing +```typescript +// Hook test +describe('useLocalStorage', () => { + it('returns initial value when no stored value', () => { + const { result } = renderHook(() => useLocalStorage('test', 'initial')); + expect(result.current[0]).toBe('initial'); + }); + + it('updates stored value', () => { + const { result } = renderHook(() => useLocalStorage('test', 'initial')); + act(() => { + result.current[1]('updated'); + }); + expect(result.current[0]).toBe('updated'); + }); +}); +``` + +## Best Practices + +### 1. Component Design +- **Single Responsibility** - Each component should have one clear purpose +- **Composition over Inheritance** - Use composition to build complex components +- **Props Interface** - Define clear prop interfaces with TypeScript +- **Default Props** - Provide sensible defaults for optional props + +### 2. State Management +- **Local State First** - Use local state when possible +- **Lift State Up** - Move shared state to common parent +- **Global State** - Use global state for truly global data +- **State Normalization** - Keep state normalized and flat + +### 3. Performance +- **Memoization** - Use React.memo, useMemo, and useCallback appropriately +- **Lazy Loading** - Load components and data on demand +- **Virtual Scrolling** - Use virtual scrolling for large lists +- **Bundle Splitting** - Split code into smaller chunks + +### 4. Testing +- **Unit Tests** - Test individual components in isolation +- **Integration Tests** - Test component interactions +- **Accessibility Tests** - Ensure components are accessible +- **Visual Tests** - Test visual appearance and behavior diff --git a/docs/DEVELOPMENT/DEBUGGING.md b/docs/DEVELOPMENT/DEBUGGING.md new file mode 100644 index 000000000..d1c2db3e8 --- /dev/null +++ b/docs/DEVELOPMENT/DEBUGGING.md @@ -0,0 +1,657 @@ +# Debugging Guide + +This guide covers debugging strategies, tools, and techniques for the Nounspace codebase to help developers identify and resolve issues effectively. + +## Debugging Philosophy + +### 1. Debugging Principles +- **Reproduce First** - Always reproduce the issue before debugging +- **Isolate the Problem** - Narrow down the scope of the issue +- **Use the Right Tools** - Choose appropriate debugging tools for the situation +- **Document Findings** - Keep track of what you discover during debugging + +### 2. Debugging Process +1. **Reproduce** - Reproduce the issue consistently +2. **Isolate** - Isolate the problematic code +3. **Analyze** - Analyze the root cause +4. **Fix** - Implement the fix +5. **Verify** - Verify the fix works +6. **Test** - Test to ensure no regressions + +## Browser Debugging + +### 1. Chrome DevTools +```typescript +// Console debugging +console.log('Debug info:', { user, data, state }); +console.table(data); // Display data in table format +console.group('User Actions'); // Group related logs +console.log('Action 1'); +console.log('Action 2'); +console.groupEnd(); + +// Performance debugging +console.time('API Call'); +await fetchUserData(); +console.timeEnd('API Call'); + +// Memory debugging +console.memory; // Check memory usage +``` + +### 2. React DevTools +```typescript +// Component debugging +import { useDebugValue } from 'react'; + +const useUser = (userId: string) => { + const [user, setUser] = useState(null); + + // Debug value for React DevTools + useDebugValue(user, user => user ? `User: ${user.name}` : 'No user'); + + return { user, setUser }; +}; + +// Profiler debugging +import { Profiler } from 'react'; + +const onRenderCallback = (id, phase, actualDuration) => { + console.log('Component render:', { id, phase, actualDuration }); +}; + + + + +``` + +### 3. Network Debugging +```typescript +// API debugging +const fetchUser = async (userId: string) => { + try { + console.log('Fetching user:', userId); + const response = await fetch(`/api/users/${userId}`); + console.log('Response status:', response.status); + + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + + const data = await response.json(); + console.log('User data:', data); + return data; + } catch (error) { + console.error('Fetch error:', error); + throw error; + } +}; +``` + +## State Debugging + +### 1. Zustand Store Debugging +```typescript +// Store debugging +import { create } from 'zustand'; +import { devtools } from 'zustand/middleware'; + +const useUserStore = create( + devtools( + (set, get) => ({ + user: null, + loading: false, + error: null, + + setUser: (user) => { + console.log('Setting user:', user); + set({ user }, false, 'setUser'); + }, + + setLoading: (loading) => { + console.log('Setting loading:', loading); + set({ loading }, false, 'setLoading'); + }, + + setError: (error) => { + console.log('Setting error:', error); + set({ error }, false, 'setError'); + }, + }), + { + name: 'user-store', // Unique name for DevTools + } + ) +); + +// Debug store state +const debugStore = () => { + const state = useUserStore.getState(); + console.log('Current store state:', state); +}; +``` + +### 2. State Change Tracking +```typescript +// Track state changes +const useUserStore = create((set, get) => ({ + user: null, + setUser: (user) => { + const prevState = get(); + console.log('Previous state:', prevState); + + set({ user }); + + const newState = get(); + console.log('New state:', newState); + }, +})); + +// Subscribe to state changes +const unsubscribe = useUserStore.subscribe( + (state) => console.log('State changed:', state), + (state) => state.user // Only log when user changes +); +``` + +## Component Debugging + +### 1. Component Lifecycle Debugging +```typescript +// Component debugging +import { useEffect, useRef } from 'react'; + +const UserProfile = ({ userId }) => { + const renderCount = useRef(0); + renderCount.current++; + + console.log(`UserProfile rendered ${renderCount.current} times`); + + useEffect(() => { + console.log('UserProfile mounted'); + return () => console.log('UserProfile unmounted'); + }, []); + + useEffect(() => { + console.log('UserProfile userId changed:', userId); + }, [userId]); + + return
User Profile
; +}; +``` + +### 2. Props Debugging +```typescript +// Props debugging +const UserProfile = (props) => { + console.log('UserProfile props:', props); + + // Debug specific prop changes + const prevProps = useRef(); + useEffect(() => { + if (prevProps.current) { + const changedProps = Object.keys(props).filter( + key => prevProps.current[key] !== props[key] + ); + if (changedProps.length > 0) { + console.log('Changed props:', changedProps); + } + } + prevProps.current = props; + }); + + return
User Profile
; +}; +``` + +## Error Debugging + +### 1. Error Boundaries +```typescript +// Error boundary for debugging +class ErrorBoundary extends React.Component { + constructor(props) { + super(props); + this.state = { hasError: false, error: null, errorInfo: null }; + } + + static getDerivedStateFromError(error) { + return { hasError: true, error }; + } + + componentDidCatch(error, errorInfo) { + console.error('Error caught by boundary:', error); + console.error('Error info:', errorInfo); + + // Log to error reporting service + this.logErrorToService(error, errorInfo); + + this.setState({ errorInfo }); + } + + logErrorToService = (error, errorInfo) => { + // Send error to logging service + console.log('Logging error to service:', { error, errorInfo }); + }; + + render() { + if (this.state.hasError) { + return ( +
+

Something went wrong

+
+ Error details +
{this.state.error && this.state.error.toString()}
+
{this.state.errorInfo.componentStack}
+
+
+ ); + } + + return this.props.children; + } +} +``` + +### 2. Error Handling +```typescript +// Error handling with debugging +const fetchUser = async (userId: string) => { + try { + const response = await api.get(`/users/${userId}`); + return response.data; + } catch (error) { + console.error('Fetch user error:', { + userId, + error: error.message, + stack: error.stack, + timestamp: new Date().toISOString() + }); + + // Re-throw with additional context + throw new Error(`Failed to fetch user ${userId}: ${error.message}`); + } +}; +``` + +## Performance Debugging + +### 1. Performance Monitoring +```typescript +// Performance monitoring +import { Profiler } from 'react'; + +const PerformanceProfiler = ({ children, id }) => { + const onRenderCallback = (id, phase, actualDuration, baseDuration, startTime, commitTime) => { + console.log('Performance metrics:', { + id, + phase, + actualDuration, + baseDuration, + startTime, + commitTime + }); + + // Log slow renders + if (actualDuration > 100) { + console.warn(`Slow render detected: ${id} took ${actualDuration}ms`); + } + }; + + return ( + + {children} + + ); +}; +``` + +### 2. Memory Debugging +```typescript +// Memory debugging +const debugMemory = () => { + if (performance.memory) { + console.log('Memory usage:', { + used: Math.round(performance.memory.usedJSHeapSize / 1024 / 1024) + ' MB', + total: Math.round(performance.memory.totalJSHeapSize / 1024 / 1024) + ' MB', + limit: Math.round(performance.memory.jsHeapSizeLimit / 1024 / 1024) + ' MB' + }); + } +}; + +// Monitor memory leaks +const useMemoryMonitor = () => { + useEffect(() => { + const interval = setInterval(debugMemory, 5000); + return () => clearInterval(interval); + }, []); +}; +``` + +## Network Debugging + +### 1. API Debugging +```typescript +// API debugging +const apiClient = axios.create({ + baseURL: '/api', + timeout: 10000 +}); + +// Request interceptor +apiClient.interceptors.request.use( + (config) => { + console.log('API Request:', { + url: config.url, + method: config.method, + data: config.data, + headers: config.headers + }); + return config; + }, + (error) => { + console.error('API Request Error:', error); + return Promise.reject(error); + } +); + +// Response interceptor +apiClient.interceptors.response.use( + (response) => { + console.log('API Response:', { + url: response.config.url, + status: response.status, + data: response.data + }); + return response; + }, + (error) => { + console.error('API Response Error:', { + url: error.config?.url, + status: error.response?.status, + data: error.response?.data, + message: error.message + }); + return Promise.reject(error); + } +); +``` + +### 2. WebSocket Debugging +```typescript +// WebSocket debugging +const useWebSocket = (url: string) => { + const [socket, setSocket] = useState(null); + const [connectionState, setConnectionState] = useState('Connecting'); + + useEffect(() => { + const ws = new WebSocket(url); + + ws.onopen = () => { + console.log('WebSocket connected:', url); + setConnectionState('Connected'); + }; + + ws.onmessage = (event) => { + console.log('WebSocket message received:', event.data); + }; + + ws.onclose = () => { + console.log('WebSocket disconnected'); + setConnectionState('Disconnected'); + }; + + ws.onerror = (error) => { + console.error('WebSocket error:', error); + setConnectionState('Error'); + }; + + setSocket(ws); + + return () => { + ws.close(); + }; + }, [url]); + + return { socket, connectionState }; +}; +``` + +## Mobile Debugging + +### 1. Mobile-Specific Debugging +```typescript +// Mobile debugging +const useMobileDebug = () => { + const [isMobile, setIsMobile] = useState(false); + + useEffect(() => { + const checkMobile = () => { + const mobile = window.innerWidth < 768; + setIsMobile(mobile); + console.log('Mobile detection:', { isMobile: mobile, width: window.innerWidth }); + }; + + checkMobile(); + window.addEventListener('resize', checkMobile); + + return () => window.removeEventListener('resize', checkMobile); + }, []); + + return { isMobile }; +}; +``` + +### 2. Touch Event Debugging +```typescript +// Touch event debugging +const useTouchDebug = () => { + useEffect(() => { + const handleTouchStart = (e: TouchEvent) => { + console.log('Touch start:', { + touches: e.touches.length, + target: e.target, + clientX: e.touches[0]?.clientX, + clientY: e.touches[0]?.clientY + }); + }; + + const handleTouchMove = (e: TouchEvent) => { + console.log('Touch move:', { + touches: e.touches.length, + clientX: e.touches[0]?.clientX, + clientY: e.touches[0]?.clientY + }); + }; + + const handleTouchEnd = (e: TouchEvent) => { + console.log('Touch end:', { + touches: e.touches.length, + changedTouches: e.changedTouches.length + }); + }; + + document.addEventListener('touchstart', handleTouchStart); + document.addEventListener('touchmove', handleTouchMove); + document.addEventListener('touchend', handleTouchEnd); + + return () => { + document.removeEventListener('touchstart', handleTouchStart); + document.removeEventListener('touchmove', handleTouchMove); + document.removeEventListener('touchend', handleTouchEnd); + }; + }, []); +}; +``` + +## Debugging Tools + +### 1. Custom Debug Hooks +```typescript +// Custom debug hook +const useDebug = (value: any, label: string) => { + useEffect(() => { + console.log(`${label}:`, value); + }, [value, label]); +}; + +// Usage +const UserProfile = ({ user }) => { + useDebug(user, 'User Profile User'); + useDebug(user?.name, 'User Name'); + + return
{user?.name}
; +}; +``` + +### 2. Debug Utilities +```typescript +// Debug utilities +export const debug = { + log: (message: string, data?: any) => { + if (process.env.NODE_ENV === 'development') { + console.log(`[DEBUG] ${message}`, data); + } + }, + + warn: (message: string, data?: any) => { + if (process.env.NODE_ENV === 'development') { + console.warn(`[DEBUG] ${message}`, data); + } + }, + + error: (message: string, data?: any) => { + if (process.env.NODE_ENV === 'development') { + console.error(`[DEBUG] ${message}`, data); + } + }, + + group: (label: string, fn: () => void) => { + if (process.env.NODE_ENV === 'development') { + console.group(label); + fn(); + console.groupEnd(); + } + } +}; +``` + +## Debugging Best Practices + +### 1. Debugging Strategy +- **Start Simple** - Begin with basic console.log statements +- **Use Breakpoints** - Set breakpoints in critical code paths +- **Isolate Issues** - Narrow down the problem scope +- **Document Findings** - Keep track of what you discover + +### 2. Debugging Tools +- **Browser DevTools** - Use Chrome DevTools for debugging +- **React DevTools** - Use React DevTools for component debugging +- **Network Tab** - Monitor network requests and responses +- **Performance Tab** - Analyze performance bottlenecks + +### 3. Debugging Techniques +- **Console Debugging** - Use console.log, console.error, etc. +- **Breakpoint Debugging** - Set breakpoints in code +- **Step-through Debugging** - Step through code line by line +- **Variable Inspection** - Inspect variable values and types + +### 4. Debugging Maintenance +- **Remove Debug Code** - Clean up debug code before committing +- **Use Environment Variables** - Control debug output with env vars +- **Document Debug Process** - Keep track of debugging steps +- **Share Debug Findings** - Share debugging insights with team + +## Common Debugging Scenarios + +### 1. State Issues +```typescript +// Debug state issues +const useUser = (userId: string) => { + const [user, setUser] = useState(null); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + console.log('User effect triggered:', { userId, user, loading, error }); + + const fetchUser = async () => { + setLoading(true); + setError(null); + + try { + const userData = await api.getUser(userId); + console.log('User fetched:', userData); + setUser(userData); + } catch (err) { + console.error('User fetch error:', err); + setError(err.message); + } finally { + setLoading(false); + } + }; + + if (userId) { + fetchUser(); + } + }, [userId]); + + return { user, loading, error }; +}; +``` + +### 2. Component Issues +```typescript +// Debug component issues +const UserProfile = ({ userId }) => { + console.log('UserProfile render:', { userId }); + + const { user, loading, error } = useUser(userId); + + console.log('UserProfile state:', { user, loading, error }); + + if (loading) { + console.log('UserProfile loading'); + return
Loading...
; + } + + if (error) { + console.log('UserProfile error:', error); + return
Error: {error}
; + } + + if (!user) { + console.log('UserProfile no user'); + return
No user found
; + } + + console.log('UserProfile rendering user:', user); + return
{user.name}
; +}; +``` + +### 3. Performance Issues +```typescript +// Debug performance issues +const ExpensiveComponent = ({ data }) => { + console.log('ExpensiveComponent render:', { dataLength: data?.length }); + + const processedData = useMemo(() => { + console.log('Processing data:', data); + return data.map(item => ({ + ...item, + processed: expensiveCalculation(item) + })); + }, [data]); + + console.log('Processed data:', processedData); + + return ( +
+ {processedData.map(item => ( + + ))} +
+ ); +}; +``` diff --git a/docs/instructions.md b/docs/DEVELOPMENT/DEVELOPMENT_GUIDE.md similarity index 100% rename from docs/instructions.md rename to docs/DEVELOPMENT/DEVELOPMENT_GUIDE.md diff --git a/docs/notes.md b/docs/DEVELOPMENT/DEVELOPMENT_NOTES.md similarity index 100% rename from docs/notes.md rename to docs/DEVELOPMENT/DEVELOPMENT_NOTES.md diff --git a/docs/DEVELOPMENT/TESTING.md b/docs/DEVELOPMENT/TESTING.md new file mode 100644 index 000000000..c08b339eb --- /dev/null +++ b/docs/DEVELOPMENT/TESTING.md @@ -0,0 +1,663 @@ +# Testing Guide + +This guide covers testing strategies, patterns, and best practices for the Nounspace codebase to ensure code quality and reliability. + +## Testing Philosophy + +### 1. Testing Pyramid +- **Unit Tests** - Test individual components and functions in isolation +- **Integration Tests** - Test component interactions and data flow +- **E2E Tests** - Test complete user workflows and scenarios +- **Visual Tests** - Test visual appearance and behavior + +### 2. Testing Principles +- **Test Behavior** - Test what the code does, not how it does it +- **Test Isolation** - Each test should be independent and isolated +- **Test Clarity** - Tests should be clear and easy to understand +- **Test Coverage** - Aim for high test coverage with meaningful tests + +## Testing Setup + +### 1. Testing Framework +```typescript +// vitest.config.ts +import { defineConfig } from 'vitest/config'; +import react from '@vitejs/plugin-react'; +import path from 'path'; + +export default defineConfig({ + plugins: [react()], + test: { + environment: 'jsdom', + setupFiles: ['./tests/setup.ts'], + globals: true, + }, + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + }, + }, +}); +``` + +### 2. Test Setup +```typescript +// tests/setup.ts +import '@testing-library/jest-dom'; +import { cleanup } from '@testing-library/react'; +import { afterEach } from 'vitest'; + +// Clean up after each test +afterEach(() => { + cleanup(); +}); + +// Mock global objects +global.ResizeObserver = vi.fn().mockImplementation(() => ({ + observe: vi.fn(), + unobserve: vi.fn(), + disconnect: vi.fn(), +})); + +// Mock IntersectionObserver +global.IntersectionObserver = vi.fn().mockImplementation(() => ({ + observe: vi.fn(), + unobserve: vi.fn(), + disconnect: vi.fn(), +})); +``` + +## Unit Testing + +### 1. Component Testing +```typescript +// Button.test.tsx +import { render, screen, fireEvent } from '@testing-library/react'; +import { Button } from '@/components/Button'; + +describe('Button', () => { + it('renders with correct text', () => { + render(); + expect(screen.getByText('Click me')).toBeInTheDocument(); + }); + + it('calls onClick when clicked', () => { + const handleClick = vi.fn(); + render(); + + fireEvent.click(screen.getByText('Click me')); + expect(handleClick).toHaveBeenCalledTimes(1); + }); + + it('is disabled when disabled prop is true', () => { + render(); + expect(screen.getByRole('button')).toBeDisabled(); + }); + + it('applies correct variant classes', () => { + render(); + expect(screen.getByRole('button')).toHaveClass('btn-primary'); + }); +}); +``` + +### 2. Hook Testing +```typescript +// useCounter.test.ts +import { renderHook, act } from '@testing-library/react'; +import { useCounter } from '@/hooks/useCounter'; + +describe('useCounter', () => { + it('should initialize with default value', () => { + const { result } = renderHook(() => useCounter()); + expect(result.current.count).toBe(0); + }); + + it('should initialize with custom value', () => { + const { result } = renderHook(() => useCounter(5)); + expect(result.current.count).toBe(5); + }); + + it('should increment count', () => { + const { result } = renderHook(() => useCounter()); + + act(() => { + result.current.increment(); + }); + + expect(result.current.count).toBe(1); + }); + + it('should decrement count', () => { + const { result } = renderHook(() => useCounter(5)); + + act(() => { + result.current.decrement(); + }); + + expect(result.current.count).toBe(4); + }); + + it('should reset count', () => { + const { result } = renderHook(() => useCounter(5)); + + act(() => { + result.current.reset(); + }); + + expect(result.current.count).toBe(0); + }); +}); +``` + +### 3. Utility Function Testing +```typescript +// utils.test.ts +import { formatDate, validateEmail, debounce } from '@/utils'; + +describe('formatDate', () => { + it('should format date correctly', () => { + const date = new Date('2023-12-25'); + expect(formatDate(date)).toBe('Dec 25, 2023'); + }); + + it('should handle invalid date', () => { + expect(formatDate(new Date('invalid'))).toBe('Invalid Date'); + }); +}); + +describe('validateEmail', () => { + it('should validate correct email', () => { + expect(validateEmail('test@example.com')).toBe(true); + }); + + it('should reject invalid email', () => { + expect(validateEmail('invalid-email')).toBe(false); + }); +}); + +describe('debounce', () => { + it('should debounce function calls', async () => { + const mockFn = vi.fn(); + const debouncedFn = debounce(mockFn, 100); + + debouncedFn(); + debouncedFn(); + debouncedFn(); + + expect(mockFn).not.toHaveBeenCalled(); + + await new Promise(resolve => setTimeout(resolve, 150)); + expect(mockFn).toHaveBeenCalledTimes(1); + }); +}); +``` + +## Integration Testing + +### 1. Component Integration +```typescript +// UserProfile.test.tsx +import { render, screen, fireEvent, waitFor } from '@testing-library/react'; +import { UserProfile } from '@/components/UserProfile'; +import { UserProvider } from '@/contexts/UserContext'; + +const mockUser = { + id: '1', + name: 'John Doe', + email: 'john@example.com', + role: 'user' +}; + +describe('UserProfile Integration', () => { + it('should display user information', () => { + render( + + + + ); + + expect(screen.getByText('John Doe')).toBeInTheDocument(); + expect(screen.getByText('john@example.com')).toBeInTheDocument(); + }); + + it('should allow editing user information', async () => { + const mockUpdate = vi.fn(); + + render( + + + + ); + + const editButton = screen.getByText('Edit'); + fireEvent.click(editButton); + + const nameInput = screen.getByLabelText('Name'); + fireEvent.change(nameInput, { target: { value: 'Jane Doe' } }); + + const saveButton = screen.getByText('Save'); + fireEvent.click(saveButton); + + await waitFor(() => { + expect(mockUpdate).toHaveBeenCalledWith({ + ...mockUser, + name: 'Jane Doe' + }); + }); + }); +}); +``` + +### 2. Store Integration +```typescript +// userStore.test.ts +import { renderHook, act } from '@testing-library/react'; +import { create } from 'zustand'; +import { userStore } from '@/stores/userStore'; + +describe('UserStore Integration', () => { + it('should manage user state', () => { + const { result } = renderHook(() => userStore()); + + act(() => { + result.current.setUser(mockUser); + }); + + expect(result.current.user).toEqual(mockUser); + expect(result.current.isAuthenticated).toBe(true); + }); + + it('should handle user logout', () => { + const { result } = renderHook(() => userStore()); + + act(() => { + result.current.setUser(mockUser); + }); + + expect(result.current.isAuthenticated).toBe(true); + + act(() => { + result.current.logout(); + }); + + expect(result.current.user).toBeNull(); + expect(result.current.isAuthenticated).toBe(false); + }); +}); +``` + +## End-to-End Testing + +### 1. E2E Test Setup +```typescript +// e2e/user-flow.spec.ts +import { test, expect } from '@playwright/test'; + +test.describe('User Authentication Flow', () => { + test('should allow user to login and access dashboard', async ({ page }) => { + // Navigate to login page + await page.goto('/login'); + + // Fill login form + await page.fill('[data-testid="email-input"]', 'test@example.com'); + await page.fill('[data-testid="password-input"]', 'password123'); + + // Submit form + await page.click('[data-testid="login-button"]'); + + // Wait for redirect to dashboard + await page.waitForURL('/dashboard'); + + // Verify dashboard content + expect(await page.textContent('[data-testid="welcome-message"]')).toContain('Welcome'); + }); +}); +``` + +### 2. E2E Test Scenarios +```typescript +// e2e/space-creation.spec.ts +import { test, expect } from '@playwright/test'; + +test.describe('Space Creation Flow', () => { + test('should create a new space', async ({ page }) => { + // Login first + await page.goto('/login'); + await page.fill('[data-testid="email-input"]', 'test@example.com'); + await page.fill('[data-testid="password-input"]', 'password123'); + await page.click('[data-testid="login-button"]'); + + // Navigate to spaces + await page.goto('/spaces'); + + // Click create space button + await page.click('[data-testid="create-space-button"]'); + + // Fill space form + await page.fill('[data-testid="space-name-input"]', 'My New Space'); + await page.fill('[data-testid="space-description-input"]', 'A test space'); + + // Submit form + await page.click('[data-testid="create-space-submit"]'); + + // Verify space was created + await page.waitForSelector('[data-testid="space-card"]'); + expect(await page.textContent('[data-testid="space-name"]')).toBe('My New Space'); + }); +}); +``` + +## Visual Testing + +### 1. Visual Regression Testing +```typescript +// visual/button.visual.test.ts +import { test, expect } from '@playwright/test'; + +test.describe('Button Visual Tests', () => { + test('should render primary button correctly', async ({ page }) => { + await page.goto('/components/button'); + + const button = page.locator('[data-testid="primary-button"]'); + await expect(button).toHaveScreenshot('primary-button.png'); + }); + + test('should render secondary button correctly', async ({ page }) => { + await page.goto('/components/button'); + + const button = page.locator('[data-testid="secondary-button"]'); + await expect(button).toHaveScreenshot('secondary-button.png'); + }); +}); +``` + +### 2. Responsive Testing +```typescript +// visual/responsive.visual.test.ts +import { test, expect } from '@playwright/test'; + +test.describe('Responsive Design Tests', () => { + test('should render correctly on mobile', async ({ page }) => { + await page.setViewportSize({ width: 375, height: 667 }); + await page.goto('/dashboard'); + + await expect(page).toHaveScreenshot('dashboard-mobile.png'); + }); + + test('should render correctly on tablet', async ({ page }) => { + await page.setViewportSize({ width: 768, height: 1024 }); + await page.goto('/dashboard'); + + await expect(page).toHaveScreenshot('dashboard-tablet.png'); + }); + + test('should render correctly on desktop', async ({ page }) => { + await page.setViewportSize({ width: 1920, height: 1080 }); + await page.goto('/dashboard'); + + await expect(page).toHaveScreenshot('dashboard-desktop.png'); + }); +}); +``` + +## Accessibility Testing + +### 1. Accessibility Test Setup +```typescript +// a11y/accessibility.test.ts +import { test, expect } from '@playwright/test'; +import AxeBuilder from '@axe-core/playwright'; + +test.describe('Accessibility Tests', () => { + test('should not have accessibility violations', async ({ page }) => { + await page.goto('/dashboard'); + + const accessibilityScanResults = await new AxeBuilder({ page }).analyze(); + expect(accessibilityScanResults.violations).toEqual([]); + }); + + test('should be keyboard navigable', async ({ page }) => { + await page.goto('/dashboard'); + + // Test tab navigation + await page.keyboard.press('Tab'); + const focusedElement = page.locator(':focus'); + await expect(focusedElement).toBeVisible(); + + // Test arrow key navigation + await page.keyboard.press('ArrowDown'); + await page.keyboard.press('ArrowUp'); + }); +}); +``` + +### 2. Screen Reader Testing +```typescript +// a11y/screen-reader.test.ts +import { test, expect } from '@playwright/test'; + +test.describe('Screen Reader Tests', () => { + test('should have proper ARIA labels', async ({ page }) => { + await page.goto('/dashboard'); + + // Check for ARIA labels + const elementsWithAriaLabels = page.locator('[aria-label]'); + await expect(elementsWithAriaLabels).toHaveCount(5); + + // Check for ARIA roles + const elementsWithRoles = page.locator('[role]'); + await expect(elementsWithRoles).toHaveCount(3); + }); + + test('should have proper heading structure', async ({ page }) => { + await page.goto('/dashboard'); + + // Check heading hierarchy + const h1 = page.locator('h1'); + const h2 = page.locator('h2'); + const h3 = page.locator('h3'); + + await expect(h1).toHaveCount(1); + await expect(h2).toHaveCount(2); + await expect(h3).toHaveCount(3); + }); +}); +``` + +## Performance Testing + +### 1. Performance Metrics +```typescript +// performance/performance.test.ts +import { test, expect } from '@playwright/test'; + +test.describe('Performance Tests', () => { + test('should load page within acceptable time', async ({ page }) => { + const startTime = Date.now(); + await page.goto('/dashboard'); + const loadTime = Date.now() - startTime; + + expect(loadTime).toBeLessThan(3000); // 3 seconds + }); + + test('should have good Core Web Vitals', async ({ page }) => { + await page.goto('/dashboard'); + + const metrics = await page.evaluate(() => { + return new Promise((resolve) => { + new PerformanceObserver((list) => { + const entries = list.getEntries(); + resolve(entries); + }).observe({ entryTypes: ['largest-contentful-paint', 'first-input', 'cumulative-layout-shift'] }); + }); + }); + + expect(metrics).toBeDefined(); + }); +}); +``` + +### 2. Bundle Size Testing +```typescript +// performance/bundle-size.test.ts +import { test, expect } from '@playwright/test'; + +test.describe('Bundle Size Tests', () => { + test('should have acceptable bundle size', async ({ page }) => { + await page.goto('/dashboard'); + + const bundleSize = await page.evaluate(() => { + return performance.getEntriesByType('resource') + .filter(entry => entry.name.includes('.js')) + .reduce((total, entry) => total + entry.transferSize, 0); + }); + + expect(bundleSize).toBeLessThan(500000); // 500KB + }); +}); +``` + +## Test Data Management + +### 1. Test Fixtures +```typescript +// fixtures/user.fixtures.ts +export const mockUser = { + id: '1', + name: 'John Doe', + email: 'john@example.com', + role: 'user', + createdAt: '2023-01-01T00:00:00Z', + updatedAt: '2023-01-01T00:00:00Z' +}; + +export const mockUsers = [ + mockUser, + { + id: '2', + name: 'Jane Doe', + email: 'jane@example.com', + role: 'admin', + createdAt: '2023-01-02T00:00:00Z', + updatedAt: '2023-01-02T00:00:00Z' + } +]; +``` + +### 2. Test Utilities +```typescript +// utils/test-utils.ts +import { render, RenderOptions } from '@testing-library/react'; +import { ReactElement } from 'react'; +import { UserProvider } from '@/contexts/UserContext'; + +const AllTheProviders = ({ children }: { children: React.ReactNode }) => { + return ( + + {children} + + ); +}; + +const customRender = ( + ui: ReactElement, + options?: Omit +) => render(ui, { wrapper: AllTheProviders, ...options }); + +export * from '@testing-library/react'; +export { customRender as render }; +``` + +## Test Automation + +### 1. CI/CD Integration +```yaml +# .github/workflows/test.yml +name: Tests + +on: + push: + branches: [ main, develop ] + pull_request: + branches: [ main ] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + cache: 'npm' + + - name: Install dependencies + run: npm ci + + - name: Run unit tests + run: npm run test:unit + + - name: Run integration tests + run: npm run test:integration + + - name: Run E2E tests + run: npm run test:e2e + + - name: Run accessibility tests + run: npm run test:a11y +``` + +### 2. Test Reporting +```typescript +// vitest.config.ts +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + coverage: { + provider: 'v8', + reporter: ['text', 'json', 'html'], + exclude: [ + 'node_modules/', + 'tests/', + '**/*.d.ts', + '**/*.config.*' + ] + }, + reporters: ['verbose', 'junit'], + outputFile: { + junit: './test-results/junit.xml' + } + } +}); +``` + +## Best Practices + +### 1. Test Organization +- **Group related tests** in describe blocks +- **Use descriptive test names** that explain what is being tested +- **Keep tests focused** on a single behavior +- **Use consistent naming** conventions + +### 2. Test Maintenance +- **Update tests** when code changes +- **Remove obsolete tests** that are no longer relevant +- **Refactor tests** to keep them maintainable +- **Monitor test performance** and optimize slow tests + +### 3. Test Quality +- **Write meaningful tests** that catch real bugs +- **Avoid testing implementation details** focus on behavior +- **Use appropriate test types** for different scenarios +- **Maintain good test coverage** without sacrificing quality + +### 4. Debugging Tests +- **Use debugging tools** like browser DevTools for E2E tests +- **Add logging** to understand test failures +- **Use test utilities** to simplify test setup +- **Document test scenarios** for complex tests diff --git a/docs/DOCUMENTATION_OVERVIEW.md b/docs/DOCUMENTATION_OVERVIEW.md new file mode 100644 index 000000000..34460a01a --- /dev/null +++ b/docs/DOCUMENTATION_OVERVIEW.md @@ -0,0 +1,125 @@ +# Documentation Overview + +This document provides an overview of the Nounspace documentation structure and organization. + +## Documentation Structure + +``` +docs/ +├── README.md # Main documentation hub +├── GETTING_STARTED.md # Setup and quick start guide +├── CONTRIBUTING.md # Contributing guidelines +│ +├── ARCHITECTURE/ # System architecture documentation +│ ├── OVERVIEW.md # High-level architecture overview +│ ├── AUTHENTICATION.md # Authentication system (Privy + Farcaster) +│ └── STATE_MANAGEMENT.md # Zustand store architecture +│ +├── SYSTEMS/ # Core system documentation +│ ├── SPACES/ # Space system +│ │ ├── OVERVIEW.md # Space architecture and patterns +│ │ ├── SPACE_ARCHITECTURE.md # Detailed space architecture +│ │ ├── PUBLIC_SPACES_PATTERN.md # Public space patterns +│ │ ├── MULTIPLE_LAYOUTS_OVERVIEW.md # Multiple layouts system +│ │ └── LAYOUT_MIGRATION_GUIDE.md # Layout migration guide +│ ├── FIDGETS/ # Fidget system +│ │ └── OVERVIEW.md # Fidget architecture +│ ├── THEMES/ # Theme system +│ │ └── OVERVIEW.md # Theme architecture +│ └── DISCOVERY/ # Discovery system +│ └── MINI_APP_DISCOVERY_SYSTEM.md # Mini-app discovery system +│ +├── INTEGRATIONS/ # External integrations +│ ├── FARCASTER.md # Farcaster protocol integration +│ └── SUPABASE.md # Supabase integration +│ +├── DEVELOPMENT/ # Development guides +│ ├── AGENTS.md # AI agent instructions +│ ├── DEVELOPMENT_GUIDE.md # Comprehensive development guide +│ ├── DEVELOPMENT_NOTES.md # Development notes and findings +│ ├── COMPONENT_ARCHITECTURE.md # Atomic design system +│ ├── CODING_STANDARDS.md # Code style and standards +│ ├── TESTING.md # Testing strategies +│ └── DEBUGGING.md # Debugging guide +│ +└── REFERENCE/ # Reference documentation + └── (placeholder directories) +``` + +## Available Documentation + +### Core Documentation +- **README.md** - Main documentation hub with navigation +- **GETTING_STARTED.md** - Setup and installation guide +- **CONTRIBUTING.md** - Contributing guidelines +- **WHITELABELING_SYSTEM.md** - Community customization and configuration system + +### Architecture +- **ARCHITECTURE/OVERVIEW.md** - High-level architecture with diagrams +- **ARCHITECTURE/AUTHENTICATION.md** - Complete authentication system documentation +- **ARCHITECTURE/STATE_MANAGEMENT.md** - Zustand store architecture and patterns + +### Systems +- **SYSTEMS/SPACES/OVERVIEW.md** - Space architecture, public/private patterns, lifecycle +- **SYSTEMS/SPACES/SPACE_ARCHITECTURE.md** - Detailed space architecture +- **SYSTEMS/SPACES/PUBLIC_SPACES_PATTERN.md** - Public space patterns +- **SYSTEMS/SPACES/MULTIPLE_LAYOUTS_OVERVIEW.md** - Multiple layouts system +- **SYSTEMS/SPACES/LAYOUT_MIGRATION_GUIDE.md** - Layout migration guide +- **SYSTEMS/FIDGETS/OVERVIEW.md** - Fidget system, types, development patterns +- **SYSTEMS/THEMES/OVERVIEW.md** - Theme system, customization, CSS variables +- **SYSTEMS/DISCOVERY/MINI_APP_DISCOVERY_SYSTEM.md** - Mini-app discovery system + +### Integrations +- **INTEGRATIONS/FARCASTER.md** - Farcaster protocol integration, FID management, social features +- **INTEGRATIONS/SUPABASE.md** - Database, storage, authentication, real-time features + +### Development +- **DEVELOPMENT/AGENTS.md** - AI agent instructions and guidelines +- **DEVELOPMENT/DEVELOPMENT_GUIDE.md** - Comprehensive development guide +- **DEVELOPMENT/DEVELOPMENT_NOTES.md** - Development notes and findings +- **DEVELOPMENT/COMPONENT_ARCHITECTURE.md** - Atomic design, patterns, best practices +- **DEVELOPMENT/CODING_STANDARDS.md** - TypeScript, React, testing, security standards +- **DEVELOPMENT/TESTING.md** - Unit, integration, E2E, accessibility testing +- **DEVELOPMENT/DEBUGGING.md** - Debugging tools, techniques, common issues + +## Key Features + +### 1. Organized Structure +- Logical hierarchy by topic and concern +- Clear separation between architecture, systems, and development guides +- Easy navigation with comprehensive README + +### 2. Accurate Documentation +- All documentation reflects actual codebase implementation +- Real code examples from the codebase +- Best practices and patterns + +### 3. Comprehensive Coverage +- Architecture documentation with diagrams +- System-specific guides with code examples +- Integration guides for external services +- Development guides for contributors + +### 4. Practical Examples +- Real code examples from the codebase +- Common issues and troubleshooting +- Testing strategies + +## Getting Started + +### For Developers +1. **Start with README.md** - The main hub provides navigation to all documentation +2. **Use GETTING_STARTED.md** - Quick setup and installation guide +3. **Reference Architecture Docs** - Understand the system before making changes +4. **Follow Coding Standards** - Ensure consistency with project standards + +### For Contributors +1. **Read CONTRIBUTING.MD** - Guidelines for contributions +2. **Review Coding Standards** - Follow TypeScript and React best practices +3. **Write Tests** - Follow testing guide for comprehensive coverage +4. **Document Changes** - Update relevant documentation with code changes + +### For Users +1. **Explore Systems Docs** - Learn about spaces, fidgets, and themes +2. **Check Integration Guides** - Understand external service integrations +3. **Use Troubleshooting Sections** - Find solutions to common issues diff --git a/docs/GETTING_STARTED.md b/docs/GETTING_STARTED.md new file mode 100644 index 000000000..7bcac2e11 --- /dev/null +++ b/docs/GETTING_STARTED.md @@ -0,0 +1,94 @@ +# Getting Started + +This guide will help you set up the Nounspace development environment and understand the basic concepts. + +## Prerequisites + +- Node.js v22.11.0 or later +- npm or yarn package manager +- Git + +## Installation + +1. **Clone the repository** + ```bash + git clone https://github.com/nounspace/nounspace.ts.git + cd nounspace.ts + ``` + +2. **Install dependencies** + ```bash + npm install + ``` + +3. **Set up environment variables** + ```bash + cp .env.example .env.local + ``` + + Configure the following required environment variables: + - `NEXT_PUBLIC_PRIVY_APP_ID` - Privy application ID + - `NEXT_PUBLIC_NEYNAR_API_KEY` - Neynar API key + - `NEXT_PUBLIC_SUPABASE_URL` - Supabase project URL + - `NEXT_PUBLIC_SUPABASE_ANON_KEY` - Supabase anonymous key + +4. **Start the development server** + ```bash + npm run dev + ``` + +## Project Structure + +``` +src/ +├── app/ # Next.js App Router +│ ├── (spaces)/ # Space-related routes +│ ├── api/ # API routes +│ ├── explore/ # Discovery pages +│ ├── frames/ # Frame-related routes +│ ├── home/ # Home page +│ ├── notifications/ # Notifications +│ ├── privacy/ # Privacy page +│ ├── pwa/ # PWA configuration +│ └── terms/ # Terms page +├── authenticators/ # Authentication system +├── common/ # Shared code +│ ├── components/ # UI components (atomic design) +│ ├── data/ # State management +│ ├── fidgets/ # Core fidget functionality +│ ├── lib/ # Utilities and helpers +│ └── providers/ # React context providers +├── constants/ # Application constants +├── contracts/ # Blockchain contract interfaces +├── fidgets/ # Mini-applications +├── pages/ # Legacy Next.js pages +└── styles/ # Global styles +``` + +## Key Concepts + +### Spaces +Spaces are customizable hubs that users can personalize with themes, tabs, and fidgets. + +### Fidgets +Mini-applications that can be added to spaces to provide specific functionality. + +### Themes +Visual customization system that allows users to personalize their spaces. + +### Authentication +The app uses Privy for authentication with Farcaster integration for social features. + +## Development Workflow + +1. **Make changes** to the codebase +2. **Run linting** with `npm run lint` +3. **Check types** with `npm run check-types` +4. **Test changes** with `npm run test` +5. **Create a PR** following the [Contributing](CONTRIBUTING.md) guidelines + +## Next Steps + +- Read the [Architecture Overview](ARCHITECTURE/OVERVIEW.md) to understand the system +- Check out [Fidget Development Guide](SYSTEMS/FIDGETS/DEVELOPMENT_GUIDE.md) to create fidgets +- Review [Component Architecture](DEVELOPMENT/COMPONENT_ARCHITECTURE.md) for UI development diff --git a/docs/INTEGRATIONS/FARCASTER.md b/docs/INTEGRATIONS/FARCASTER.md new file mode 100644 index 000000000..bf1103342 --- /dev/null +++ b/docs/INTEGRATIONS/FARCASTER.md @@ -0,0 +1,558 @@ +# Farcaster Integration + +Nounspace integrates deeply with the Farcaster protocol to provide social features and identity management. + +## Overview + +Farcaster integration enables: +- **Social Identity** - Farcaster ID (FID) linking and management +- **Social Features** - Casts, feeds, and social interactions +- **Protocol Access** - Direct access to Farcaster protocol features +- **Identity Verification** - Cryptographic identity verification + +## Core Components + +### 1. FID Management +```typescript +// FID linking and management +export type FarcasterStore = { + getFidsForCurrentIdentity: () => Promise; + registerFidForCurrentIdentity: ( + fid: number, + signingKey: string, + signMessage: (messageHash: Uint8Array) => Promise, + ) => Promise; + setFidsForCurrentIdentity: (fids: number[]) => void; + addFidToCurrentIdentity: (fid: number) => void; +}; +``` + +### 2. Identity Linking +```typescript +// Link Farcaster FID to identity +const registerFidForCurrentIdentity = async ( + fid: number, + signingKey: string, + signMessage: (messageHash: Uint8Array) => Promise, +) => { + const request: Omit = { + fid, + identityPublicKey: get().account.currentSpaceIdentityPublicKey!, + timestamp: moment().toISOString(), + signingPublicKey: signingKey, + }; + + const signedRequest: FidLinkToIdentityRequest = { + ...request, + signature: bytesToHex(await signMessage(hashObject(request))), + }; + + const { data } = await axiosBackend.post( + "/api/fid-link", + signedRequest, + ); + + if (!isUndefined(data.value)) { + get().account.addFidToCurrentIdentity(data.value!.fid); + analytics.track(AnalyticsEvent.LINK_FID, { fid }); + } +}; +``` + +## Farcaster Fidgets + +### 1. Cast Fidget +```typescript +// Cast display and interaction +export const Cast: FidgetModule = { + Component: ({ config, properties, theme }) => { + const [cast, setCast] = useState(null); + const [loading, setLoading] = useState(true); + + useEffect(() => { + const fetchCast = async () => { + try { + const castData = await api.getCast(config.castHash); + setCast(castData); + } catch (error) { + console.error('Failed to fetch cast:', error); + } finally { + setLoading(false); + } + }; + + if (config.castHash) { + fetchCast(); + } + }, [config.castHash]); + + if (loading) return
Loading cast...
; + if (!cast) return
Cast not found
; + + return ( +
+
+ {cast.author.display_name} +
+

{cast.author.display_name}

+

@{cast.author.username}

+
+
+
+

{cast.text}

+
+
+ + + +
+
+ ); + }, + properties: { + fidgetName: "Cast", + description: "Display and interact with Farcaster casts", + fields: [ + { + fieldName: "castHash", + type: "string", + default: "", + label: "Cast Hash" + } + ], + category: "farcaster", + tags: ["farcaster", "social"], + version: "1.0.0" + } +}; +``` + +### 2. Feed Fidget +```typescript +// Feed display and management +export const Feed: FidgetModule = { + Component: ({ config, properties, theme }) => { + const [feed, setFeed] = useState([]); + const [loading, setLoading] = useState(true); + + useEffect(() => { + const fetchFeed = async () => { + try { + const feedData = await api.getFeed(config.feedType); + setFeed(feedData); + } catch (error) { + console.error('Failed to fetch feed:', error); + } finally { + setLoading(false); + } + }; + + fetchFeed(); + }, [config.feedType]); + + if (loading) return
Loading feed...
; + + return ( +
+

Feed

+
+ {feed.map(cast => ( + + ))} +
+
+ ); + }, + properties: { + fidgetName: "Feed", + description: "Display Farcaster feed", + fields: [ + { + fieldName: "feedType", + type: "select", + default: "following", + options: ["following", "trending", "recent"], + label: "Feed Type" + } + ], + category: "farcaster", + tags: ["farcaster", "social", "feed"], + version: "1.0.0" + } +}; +``` + +### 3. Frame Fidget +```typescript +// Frame display and interaction +export const Frame: FidgetModule = { + Component: ({ config, properties, theme }) => { + const [frame, setFrame] = useState(null); + const [loading, setLoading] = useState(true); + + useEffect(() => { + const fetchFrame = async () => { + try { + const frameData = await api.getFrame(config.frameUrl); + setFrame(frameData); + } catch (error) { + console.error('Failed to fetch frame:', error); + } finally { + setLoading(false); + } + }; + + if (config.frameUrl) { + fetchFrame(); + } + }, [config.frameUrl]); + + if (loading) return
Loading frame...
; + if (!frame) return
Frame not found
; + + return ( +
+ `, + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + isScrollable: false, + showOnMobile: true, + url: "" + } + }, + fidgetType: "iframe", + id: "iframe:1c3fcd3d-7c7d-4c3f-920c-8ab48460eb4e" + } + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-11-06T20:37:03.565Z" + } + } +}; diff --git a/src/config/clanker/clanker.navigation.ts b/src/config/clanker/clanker.navigation.ts new file mode 100644 index 000000000..26e92cf92 --- /dev/null +++ b/src/config/clanker/clanker.navigation.ts @@ -0,0 +1,18 @@ +import { NavigationConfig } from "../systemConfig"; + +export const clankerNavigation: NavigationConfig = { + logoTooltip: { + text: "clanker.world", + href: "https://www.clanker.world", + }, + items: [ + { id: 'home', label: 'Home', href: '/home', icon: 'home' }, + { id: 'notifications', label: 'Notifications', href: '/notifications', icon: 'notifications', requiresAuth: true }, + { id: 'clanker-token', label: '$CLANKER', href: '/t/base/0x1bc0c42215582d5a085795f4badbac3ff36d1bcb/Profile', icon: 'robot' }, + ], + showMusicPlayer: false, + showSocials: false, +}; + +export default clankerNavigation; + diff --git a/src/config/clanker/clanker.theme.ts b/src/config/clanker/clanker.theme.ts new file mode 100644 index 000000000..30ae37a05 --- /dev/null +++ b/src/config/clanker/clanker.theme.ts @@ -0,0 +1,192 @@ +export const clankerTheme = { + default: { + id: "clanker-default", + name: "Clanker Default", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ffffff", + background: "linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "0 4px 20px rgba(0, 0, 0, 0.3)", + fidgetBorderRadius: "12px", + gridSpacing: "16px" + } + }, + nounish: { + id: "clanker-nounish", + name: "Clanker Nounish", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ffd700", + background: "linear-gradient(135deg, #2d1b69 0%, #11998e 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ffd700", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#ffd700", + fidgetShadow: "0 4px 20px rgba(255, 215, 0, 0.2)", + fidgetBorderRadius: "8px", + gridSpacing: "20px" + } + }, + gradientAndWave: { + id: "clanker-gradient-wave", + name: "Clanker Gradient Wave", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#00d4ff", + background: "linear-gradient(45deg, #667eea 0%, #764ba2 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#00d4ff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#00d4ff", + fidgetShadow: "0 8px 32px rgba(0, 212, 255, 0.2)", + fidgetBorderRadius: "16px", + gridSpacing: "24px" + } + }, + colorBlobs: { + id: "clanker-color-blobs", + name: "Clanker Color Blobs", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ff6b6b", + background: "linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ff6b6b", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#ff6b6b", + fidgetShadow: "0 6px 24px rgba(255, 107, 107, 0.3)", + fidgetBorderRadius: "20px", + gridSpacing: "18px" + } + }, + floatingShapes: { + id: "clanker-floating-shapes", + name: "Clanker Floating Shapes", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#a8e6cf", + background: "linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#a8e6cf", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#a8e6cf", + fidgetShadow: "0 10px 40px rgba(168, 230, 207, 0.2)", + fidgetBorderRadius: "24px", + gridSpacing: "22px" + } + }, + imageParallax: { + id: "clanker-image-parallax", + name: "Clanker Image Parallax", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ffffff", + background: "linear-gradient(135deg, #1e3c72 0%, #2a5298 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "0 4px 16px rgba(0, 0, 0, 0.4)", + fidgetBorderRadius: "12px", + gridSpacing: "16px" + } + }, + shootingStar: { + id: "clanker-shooting-star", + name: "Clanker Shooting Star", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ffd700", + background: "linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ffd700", + fidgetBorderWidth: "1px", + fidgetBorderColor: "rgba(255, 215, 0, 0.2)", + fidgetShadow: "0 0 20px rgba(255, 215, 0, 0.1)", + fidgetBorderRadius: "8px", + gridSpacing: "20px" + } + }, + squareGrid: { + id: "clanker-square-grid", + name: "Clanker Square Grid", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#00ff88", + background: "linear-gradient(45deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 75%, #16213e 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#00ff88", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#00ff88", + fidgetShadow: "0 4px 20px rgba(0, 255, 136, 0.2)", + fidgetBorderRadius: "4px", + gridSpacing: "12px" + } + }, + tesseractPattern: { + id: "clanker-tesseract-pattern", + name: "Clanker Tesseract Pattern", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#ffffff", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#ff4081", + background: "linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ff4081", + fidgetBorderWidth: "1px", + fidgetBorderColor: "rgba(255, 64, 129, 0.3)", + fidgetShadow: "0 8px 32px rgba(255, 64, 129, 0.2)", + fidgetBorderRadius: "16px", + gridSpacing: "28px" + } + }, + retro: { + id: "clanker-retro", + name: "Clanker Retro", + properties: { + font: "Inter, system-ui, sans-serif", + fontColor: "#00ff00", + headingsFont: "Inter, system-ui, sans-serif", + headingsFontColor: "#00ff00", + background: "linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%)", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#00ff00", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#00ff00", + fidgetShadow: "0 0 20px rgba(0, 255, 0, 0.3)", + fidgetBorderRadius: "0px", + gridSpacing: "16px" + } + } +}; diff --git a/src/config/clanker/clanker.ui.ts b/src/config/clanker/clanker.ui.ts new file mode 100644 index 000000000..fe490577e --- /dev/null +++ b/src/config/clanker/clanker.ui.ts @@ -0,0 +1,12 @@ +import type { UIConfig } from "../systemConfig"; + +export const clankerUI: UIConfig = { + primaryColor: "rgba(136, 131, 252, 1)", + primaryHoverColor: "rgba(116, 111, 232, 1)", + primaryActiveColor: "rgba(96, 91, 212, 1)", + castButton: { + backgroundColor: "rgba(136, 131, 252, 1)", + hoverColor: "rgba(116, 111, 232, 1)", + activeColor: "rgba(96, 91, 212, 1)", + }, +}; diff --git a/src/config/clanker/index.ts b/src/config/clanker/index.ts new file mode 100644 index 000000000..e02c44eff --- /dev/null +++ b/src/config/clanker/index.ts @@ -0,0 +1,36 @@ +import { clankerBrand } from './clanker.brand'; +import { clankerAssets } from './clanker.assets'; +import { clankerTheme } from './clanker.theme'; +import { clankerCommunity } from './clanker.community'; +import { clankerFidgets } from './clanker.fidgets'; +import { clankerHomePage } from './clanker.home'; +import { clankerNavigation } from './clanker.navigation'; +import { clankerExplorePage } from './clanker.explore'; +import { clankerUI } from './clanker.ui'; + +export const clankerSystemConfig = { + brand: clankerBrand, + assets: clankerAssets, + theme: clankerTheme, + community: clankerCommunity, + fidgets: clankerFidgets, + homePage: clankerHomePage, + explorePage: clankerExplorePage, + navigation: clankerNavigation, + ui: clankerUI, +}; + +export { clankerBrand } from './clanker.brand'; +export { clankerAssets } from './clanker.assets'; +export { clankerTheme } from './clanker.theme'; +export { clankerCommunity } from './clanker.community'; +export { clankerFidgets } from './clanker.fidgets'; +export { clankerHomePage } from './clanker.home'; +export { clankerExplorePage } from './clanker.explore'; + +// Export the initial space creators from config +export { default as createInitialProfileSpaceConfigForFid } from './initialSpaces/initialProfileSpace'; +export { default as createInitialChannelSpaceConfig } from './initialSpaces/initialChannelSpace'; +export { default as createInitialTokenSpaceConfigForAddress } from './initialSpaces/initialTokenSpace'; +export { default as createInitialProposalSpaceConfigForProposalId } from './initialSpaces/initialProposalSpace'; +export { default as INITIAL_HOMEBASE_CONFIG } from './initialSpaces/initialHomebase'; diff --git a/src/config/clanker/initialSpaces/exploreTabs/channel.json b/src/config/clanker/initialSpaces/exploreTabs/channel.json new file mode 100644 index 000000000..895e9b73d --- /dev/null +++ b/src/config/clanker/initialSpaces/exploreTabs/channel.json @@ -0,0 +1,19088 @@ +{ + "members": [ + { + "address": "fc_fid_1048", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "macbudkowski", + "displayName": "Mac Budkowski", + "fid": 1048, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a43231ca-1d8d-4563-c9b3-6a8e934c2a00/original", + "followers": 101017, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd80c1eed0b442be1fa00f313446d250589d3924a", + "etherscanUrl": "https://etherscan.io/address/0xd80c1eed0b442be1fa00f313446d250589d3924a", + "xHandle": "macbudkowski", + "xUrl": "https://twitter.com/macbudkowski", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16567", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "serendipity", + "displayName": "Karo K", + "fid": 16567, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bbdc97b-e9db-424d-3248-6e87c0e40d00/rectcrop3", + "followers": 96493, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe1572b82b45c561b9011043f9ba4ed6aef7569f", + "etherscanUrl": "https://etherscan.io/address/0xfe1572b82b45c561b9011043f9ba4ed6aef7569f", + "xHandle": "karoverse_x", + "xUrl": "https://twitter.com/karoverse_x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4167", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nounishprof", + "displayName": "Nounish Prof ⌐◧-◧🎩", + "fid": 4167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e0686be-ae1a-47d2-c737-5beecfe21700/rectcrop3", + "followers": 91821, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9353cc2583356ce6ea8f92e239d7c9eb8412acaf", + "etherscanUrl": "https://etherscan.io/address/0x9353cc2583356ce6ea8f92e239d7c9eb8412acaf", + "xHandle": "profwerder", + "xUrl": "https://twitter.com/profwerder", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_880", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "accountless.eth", + "displayName": "accountless.eth", + "fid": 880, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96427ea9-02b1-49a2-c538-cd8ba67f1800/original", + "followers": 76231, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb221863401c5174e51af0489f76caf7b32b5ea9", + "etherscanUrl": "https://etherscan.io/address/0xdb221863401c5174e51af0489f76caf7b32b5ea9", + "xHandle": "alexanderchopan", + "xUrl": "https://twitter.com/alexanderchopan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_270504", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "proxystudio", + "displayName": "gordie slater", + "fid": 270504, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a3470a3-f1bc-4372-31b8-8baea35fd900/original", + "followers": 68021, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x689ecdd6221d989863178fe2de6db94195a856c2", + "etherscanUrl": "https://etherscan.io/address/0x689ecdd6221d989863178fe2de6db94195a856c2", + "xHandle": "_proxystudio", + "xUrl": "https://twitter.com/_proxystudio", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5431", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "esdotge", + "displayName": "S·G", + "fid": 5431, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c48cc46-362f-4bfa-6e55-0d08fbf54800/original", + "followers": 62580, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b8a343381a5259e3ea54bc35d694449bbc3418d", + "etherscanUrl": "https://etherscan.io/address/0x7b8a343381a5259e3ea54bc35d694449bbc3418d", + "xHandle": "esdotge", + "xUrl": "https://twitter.com/esdotge", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1996", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thatalexpalmer.eth", + "displayName": "Alex Palmer", + "fid": 1996, + "pfpUrl": "https://i.seadn.io/gcs/files/368ad79a53ff4d046a28e18939dddc18.jpg?w=500&auto=format", + "followers": 49635, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3601a913fd3466f30f5abb978e484d1b37ce995d", + "etherscanUrl": "https://etherscan.io/address/0x3601a913fd3466f30f5abb978e484d1b37ce995d", + "xHandle": "thatalexpalmer", + "xUrl": "https://twitter.com/thatalexpalmer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4434", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chandresh.eth", + "displayName": "chandresh", + "fid": 4434, + "pfpUrl": "https://i.imgur.com/ZA99OUh.jpg", + "followers": 46692, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd9191100e4913f4933ff3b6bf6dc84569f8e44e9", + "etherscanUrl": "https://etherscan.io/address/0xd9191100e4913f4933ff3b6bf6dc84569f8e44e9", + "xHandle": "thisischandresh", + "xUrl": "https://twitter.com/thisischandresh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5543", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sirsu.eth", + "displayName": "Sol Su 🌞", + "fid": 5543, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/927b65ff-f302-444e-9d56-b34a81ca0e00/original", + "followers": 46473, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2219d6f28899ff4da53fa93914ace3069ab15ee", + "etherscanUrl": "https://etherscan.io/address/0xc2219d6f28899ff4da53fa93914ace3069ab15ee", + "xHandle": "sirsuhayb", + "xUrl": "https://twitter.com/sirsuhayb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_24235", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "turboflow.eth", + "displayName": "Paul Carrera", + "fid": 24235, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b171bb0-9f56-4b69-c89e-e94264ce7700/rectcrop3", + "followers": 45320, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55432de4a9b98d2046b4173b8e59a7b540651f20", + "etherscanUrl": "https://etherscan.io/address/0x55432de4a9b98d2046b4173b8e59a7b540651f20", + "xHandle": "turboroom", + "xUrl": "https://twitter.com/turboroom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9933", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "m00npapi.eth", + "displayName": "m00npapi.eth", + "fid": 9933, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e8e6cb7-8fea-40f9-1dc7-47810f634700/original", + "followers": 22628, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf4977f1295454cb46d95fe7d8e1d99e32d8aed1", + "etherscanUrl": "https://etherscan.io/address/0xbf4977f1295454cb46d95fe7d8e1d99e32d8aed1", + "xHandle": "m00npapi", + "xUrl": "https://twitter.com/m00npapi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_403020", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "push-", + "displayName": "Push", + "fid": 403020, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d6bb063-b545-4416-66e0-c6ba29f64900/original", + "followers": 22193, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f05371f6b614ca142133c5ab4a8d6631a279fa7", + "etherscanUrl": "https://etherscan.io/address/0x2f05371f6b614ca142133c5ab4a8d6631a279fa7", + "xHandle": "push_gfx", + "xUrl": "https://twitter.com/push_gfx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_245388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "199.eth", + "displayName": "199", + "fid": 245388, + "pfpUrl": "https://i.imgur.com/lbMpUng.jpg", + "followers": 19548, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x277b47000e1b88c929c1437713ebfefe1e966a71", + "etherscanUrl": "https://etherscan.io/address/0x277b47000e1b88c929c1437713ebfefe1e966a71", + "xHandle": "199eth", + "xUrl": "https://twitter.com/199eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dish", + "displayName": "Jack Dishman", + "fid": 15549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87fbe83b-1455-4f62-f389-ae82d7452900/original", + "followers": 18476, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x308112d06027cd838627b94ddfc16ea6b4d90004", + "etherscanUrl": "https://etherscan.io/address/0x308112d06027cd838627b94ddfc16ea6b4d90004", + "xHandle": "jackdishman", + "xUrl": "https://twitter.com/jackdishman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12938", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ashmoney.eth", + "displayName": "ash", + "fid": 12938, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/579c1a06-58e1-441d-8951-b9b49127f300/original", + "followers": 17306, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30e5a4e6a52b2d6b891454a0fd04938732c55193", + "etherscanUrl": "https://etherscan.io/address/0x30e5a4e6a52b2d6b891454a0fd04938732c55193", + "xHandle": "ashrafstakala", + "xUrl": "https://twitter.com/ashrafstakala", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_327165", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nicolasdavis.eth", + "displayName": "Nicolas Davis ↑🔆🔵", + "fid": 327165, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a760f3e-ca84-4751-b7c9-155b711be500/original", + "followers": 16356, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xecda4312a6ec1f7860f56dccf0cee5b6962d5b5d", + "etherscanUrl": "https://etherscan.io/address/0xecda4312a6ec1f7860f56dccf0cee5b6962d5b5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_423255", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minchow", + "displayName": "min.base.eth", + "fid": 423255, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/122aebf2-5e05-48ed-1d38-791ecef7c500/original", + "followers": 12600, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x756c338c3e3890288846e13972f2a49b7f90e83e", + "etherscanUrl": "https://etherscan.io/address/0x756c338c3e3890288846e13972f2a49b7f90e83e", + "xHandle": "mineth92", + "xUrl": "https://twitter.com/mineth92", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_350139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joshisdead.eth", + "displayName": "joshisdead.eth", + "fid": 350139, + "pfpUrl": "https://i.imgur.com/g63pK5y.jpg", + "followers": 12037, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e5e9c6358c201c4546b971c2b41882585e270df", + "etherscanUrl": "https://etherscan.io/address/0x2e5e9c6358c201c4546b971c2b41882585e270df", + "xHandle": "jsholedamn", + "xUrl": "https://twitter.com/jsholedamn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_277952", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dummie.eth", + "displayName": "Dvyne", + "fid": 277952, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b60bbabf-b446-4b90-ad66-9b1e69a6b800/rectcrop3", + "followers": 11855, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41a53bacdbf369377870d1377864e36176751e8d", + "etherscanUrl": "https://etherscan.io/address/0x41a53bacdbf369377870d1377864e36176751e8d", + "xHandle": "dummie_eth", + "xUrl": "https://twitter.com/dummie_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_473065", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wetsocks.eth", + "displayName": "wetsocks", + "fid": 473065, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/010ba5fe-f1ce-4a3c-13b6-1f53ea838e00/original", + "followers": 11706, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x845c1a276ca266181dc20bbb7f113b546a4c1f10", + "etherscanUrl": "https://etherscan.io/address/0x845c1a276ca266181dc20bbb7f113b546a4c1f10", + "xHandle": "wetsocks", + "xUrl": "https://twitter.com/wetsocks", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_466111", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "svvvg3.eth", + "displayName": "SVVVG3", + "fid": 466111, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a053450-3b84-4d75-b6e9-76811fbb2800/original", + "followers": 11586, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb14db9f60e806846335f79481d998abc66efc20", + "etherscanUrl": "https://etherscan.io/address/0xbb14db9f60e806846335f79481d998abc66efc20", + "xHandle": "_svvvg3", + "xUrl": "https://twitter.com/_svvvg3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_284679", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "degenveteran.eth", + "displayName": "DV", + "fid": 284679, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda86713-8c95-472d-ec78-aa7c1ee5e000/rectcrop3", + "followers": 10960, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa33cc67e1dd105512de3b94e86724c8876c72de6", + "etherscanUrl": "https://etherscan.io/address/0xa33cc67e1dd105512de3b94e86724c8876c72de6", + "xHandle": "randy_mcelhaney", + "xUrl": "https://twitter.com/randy_mcelhaney", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_239533", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "obey", + "displayName": "OBEY", + "fid": 239533, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8dd8d388-a7c2-4010-6683-4cc88a9c0700/original", + "followers": 10560, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xded214192212c73c6e56f7a52a50e3dba6b2747a", + "etherscanUrl": "https://etherscan.io/address/0xded214192212c73c6e56f7a52a50e3dba6b2747a", + "xHandle": "obeyz_z", + "xUrl": "https://twitter.com/obeyz_z", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_517425", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shahbazbaaz", + "displayName": "Muhammad Shahbaz 💎Ⓜ️👽", + "fid": 517425, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11e24170-ea97-491f-dc92-f34f911ccb00/original", + "followers": 10513, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb0ae1f94b3a28510f593d4e121308f7c0b6e6ea", + "etherscanUrl": "https://etherscan.io/address/0xeb0ae1f94b3a28510f593d4e121308f7c0b6e6ea", + "xHandle": "muhammadsh53192", + "xUrl": "https://twitter.com/muhammadsh53192", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_273708", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "siadude", + "displayName": "siadude - $HMBT", + "fid": 273708, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f38b5f27-b531-42b9-7201-d1a1efea9800/original", + "followers": 9164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c515f7776f41ffc9df45a4bbd515c85e21aba62", + "etherscanUrl": "https://etherscan.io/address/0x3c515f7776f41ffc9df45a4bbd515c85e21aba62", + "xHandle": "9to5suck", + "xUrl": "https://twitter.com/9to5suck", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_270138", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thompson", + "displayName": "tknox.eth🟪🎩", + "fid": 270138, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9042ca50-a2a7-478e-0dc2-d32fb4b2f900/original", + "followers": 8900, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe330262ce3b9ae1e58c60d6c60f68d9f3c3776ba", + "etherscanUrl": "https://etherscan.io/address/0xe330262ce3b9ae1e58c60d6c60f68d9f3c3776ba", + "xHandle": "thompsonnft", + "xUrl": "https://twitter.com/thompsonnft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486435", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "liai", + "displayName": "Muhammad Yaseen 🎩", + "fid": 486435, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/33e3638a-94ff-4571-2e64-8d7279a6b900/original", + "followers": 7790, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa3eecc89da8e0acbb402c736bd4f901b5bf70b6a", + "etherscanUrl": "https://etherscan.io/address/0xa3eecc89da8e0acbb402c736bd4f901b5bf70b6a", + "xHandle": "trader895210", + "xUrl": "https://twitter.com/trader895210", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_474179", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crezzang", + "displayName": "Mica.eth", + "fid": 474179, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/83e2a90b-797f-4a77-1454-16e6b1a1a700/original", + "followers": 7759, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09040ad5e75687dd6ce7b47a0fa31d7bba77eab7", + "etherscanUrl": "https://etherscan.io/address/0x09040ad5e75687dd6ce7b47a0fa31d7bba77eab7", + "xHandle": "crezzang77", + "xUrl": "https://twitter.com/crezzang77", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_514036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "subhanahmad", + "displayName": "Subhan Ahmad", + "fid": 514036, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aced606-166a-4ea3-86e9-15b5314b4d00/rectcrop3", + "followers": 7535, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc271b873349d1676adcbcb625f4d263549be6adc", + "etherscanUrl": "https://etherscan.io/address/0xc271b873349d1676adcbcb625f4d263549be6adc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_346798", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nachovarga", + "displayName": "Nacho", + "fid": 346798, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbaba054-d305-4ad0-893b-3628f26d5100/rectcrop3", + "followers": 7144, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbfe5de8bf1e390b9410fb05589f53910354cb67a", + "etherscanUrl": "https://etherscan.io/address/0xbfe5de8bf1e390b9410fb05589f53910354cb67a", + "xHandle": "nachovarga", + "xUrl": "https://twitter.com/nachovarga", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_323144", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "woo-x", + "displayName": "WOO🎩", + "fid": 323144, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a47a2c1-9608-417b-a3d1-88f0a753dd00/original", + "followers": 6602, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x629d1cfeaaadfcd8c67e40602508968f9c3e2a39", + "etherscanUrl": "https://etherscan.io/address/0x629d1cfeaaadfcd8c67e40602508968f9c3e2a39", + "xHandle": "st_xoo", + "xUrl": "https://twitter.com/st_xoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_247653", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pandateemo", + "displayName": "pandateemo.base.eth", + "fid": 247653, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/900fd5f3-4967-40cc-f409-ca039e386c00/rectcrop3", + "followers": 6545, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49a93a34ac44e195d6cd5697c648bdff0c133d88", + "etherscanUrl": "https://etherscan.io/address/0x49a93a34ac44e195d6cd5697c648bdff0c133d88", + "xHandle": "pandateemo88", + "xUrl": "https://twitter.com/pandateemo88", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196041", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suffuze.eth", + "displayName": "Suffuze", + "fid": 196041, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/875c199b-b43d-4d23-7d1c-9a54d4131c00/original", + "followers": 6364, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0b223a5f9b732d89d429e747314e9acfea18aa3", + "etherscanUrl": "https://etherscan.io/address/0xa0b223a5f9b732d89d429e747314e9acfea18aa3", + "xHandle": "suffuze", + "xUrl": "https://twitter.com/suffuze", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189896", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vibecaster.eth", + "displayName": "ʞɔɐſ", + "fid": 189896, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1925aa99-47ea-41c9-bc94-3e62bd85ae00/original", + "followers": 6296, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x048a74506f9cdd3b241fc2ef3d2208d417aff81c", + "etherscanUrl": "https://etherscan.io/address/0x048a74506f9cdd3b241fc2ef3d2208d417aff81c", + "xHandle": "vibe_caster", + "xUrl": "https://twitter.com/vibe_caster", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1021214", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marbleheart", + "displayName": "marble", + "fid": 1021214, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f761fd5a-bf81-497a-3bb8-2500da241500/original", + "followers": 6285, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3157497b82ec91a234f11ee44553d2a303e8d59e", + "etherscanUrl": "https://etherscan.io/address/0x3157497b82ec91a234f11ee44553d2a303e8d59e", + "xHandle": "marbleheartx", + "xUrl": "https://twitter.com/marbleheartx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_197007", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "btayengco", + "displayName": "Bryce", + "fid": 197007, + "pfpUrl": "https://i.imgur.com/EITOCJn.jpg", + "followers": 6093, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6be829428a7c77deef501350e6948afdc03c311e", + "etherscanUrl": "https://etherscan.io/address/0x6be829428a7c77deef501350e6948afdc03c311e", + "xHandle": "btayengco", + "xUrl": "https://twitter.com/btayengco", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4368", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amado", + "displayName": "Alex", + "fid": 4368, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7e7aed1-9808-4def-43cd-a39313d7b000/original", + "followers": 6040, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3914142bef098357494c849098594f9cd5602b72", + "etherscanUrl": "https://etherscan.io/address/0x3914142bef098357494c849098594f9cd5602b72", + "xHandle": "subversieve", + "xUrl": "https://twitter.com/subversieve", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_394023", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dexxcuyy.eth", + "displayName": "dexx - Photography", + "fid": 394023, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dbd92bd-5bff-49a3-abf2-872335dd1500/original", + "followers": 6034, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbcaa503d49e429e22b3c5ebd53dbf31259db6e15", + "etherscanUrl": "https://etherscan.io/address/0xbcaa503d49e429e22b3c5ebd53dbf31259db6e15", + "xHandle": "humanxdx", + "xUrl": "https://twitter.com/humanxdx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13796", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ashwinikumar.eth", + "displayName": "Ashwinikumar", + "fid": 13796, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/352c8458-36f5-4a75-2145-418695523200/original", + "followers": 5978, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef32e52deb6ebecdacfc8a878a850f21dfb54b42", + "etherscanUrl": "https://etherscan.io/address/0xef32e52deb6ebecdacfc8a878a850f21dfb54b42", + "xHandle": "ashwinidodani", + "xUrl": "https://twitter.com/ashwinidodani", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_888817", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basedprofilebase", + "displayName": "based", + "fid": 888817, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/6c529af4-5d73-4a2e-105d-879a9df11800/public", + "followers": 5961, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce3aff2e781acb95eacf46df75323f9e171595fe", + "etherscanUrl": "https://etherscan.io/address/0xce3aff2e781acb95eacf46df75323f9e171595fe", + "xHandle": "lennixfarcast", + "xUrl": "https://twitter.com/lennixfarcast", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9318", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "catra", + "displayName": "catra ↑", + "fid": 9318, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f2a9e9cc-5e2b-47ac-679c-9d2f28bd5e00/original", + "followers": 5662, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x036cd064d068eb1d99e07d79848c7a4aab94bd49", + "etherscanUrl": "https://etherscan.io/address/0x036cd064d068eb1d99e07d79848c7a4aab94bd49", + "xHandle": "catradarusman", + "xUrl": "https://twitter.com/catradarusman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_460229", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abss", + "displayName": "Abs 🎩", + "fid": 460229, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a55d833-046e-4209-4899-b6fa8a563800/original", + "followers": 5621, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe30b9dcb54fd380629505f0b24ce45eb8719ceba", + "etherscanUrl": "https://etherscan.io/address/0xe30b9dcb54fd380629505f0b24ce45eb8719ceba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_335897", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "showan", + "displayName": "showan", + "fid": 335897, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a01a841-dea5-4177-4d21-485ff998ae00/original", + "followers": 5575, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99b95b1c8e19f9fbe737bc7e9a48401cad05a2e1", + "etherscanUrl": "https://etherscan.io/address/0x99b95b1c8e19f9fbe737bc7e9a48401cad05a2e1", + "xHandle": "showanurmia", + "xUrl": "https://twitter.com/showanurmia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_306438", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "komol0", + "displayName": "KoⓂ️ol🎩🍊🧬", + "fid": 306438, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6653eb75-effc-4c9b-ecc3-8509c5aaa100/original", + "followers": 5527, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x944fa0f3f2168d4b27110f7f97972ad9425c4f52", + "etherscanUrl": "https://etherscan.io/address/0x944fa0f3f2168d4b27110f7f97972ad9425c4f52", + "xHandle": "komol02", + "xUrl": "https://twitter.com/komol02", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1158447", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "atupami", + "displayName": "Atupa.base.eth", + "fid": 1158447, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7dfeffad-761d-4c3c-7460-d6630aa69200/original", + "followers": 5502, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcddff021748df7d2e36034ff6683caf575c54b80", + "etherscanUrl": "https://etherscan.io/address/0xcddff021748df7d2e36034ff6683caf575c54b80", + "xHandle": "atupa_mi", + "xUrl": "https://twitter.com/atupa_mi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_234327", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "treeskulltown.eth", + "displayName": "treeskulltown", + "fid": 234327, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13943798-2990-404a-052e-675bc76eca00/original", + "followers": 5460, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1ed07d2ed9011ff46eca31f4288768092008c65b", + "etherscanUrl": "https://etherscan.io/address/0x1ed07d2ed9011ff46eca31f4288768092008c65b", + "xHandle": "treeskulltown2", + "xUrl": "https://twitter.com/treeskulltown2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_516505", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mfa", + "displayName": "mfa.base (1/100🎥)", + "fid": 516505, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eacf21a-f113-4b48-2708-e9de5425ef00/original", + "followers": 5257, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff6a3ddf7b726f11f0b4e43d0b700fea8c81888c", + "etherscanUrl": "https://etherscan.io/address/0xff6a3ddf7b726f11f0b4e43d0b700fea8c81888c", + "xHandle": "furqana23714945", + "xUrl": "https://twitter.com/furqana23714945", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_203666", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "leovido.eth", + "displayName": "C. Leovido 🍃🟡", + "fid": 203666, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f64d9eb4-e0b4-4b60-7fca-37a5e3a43600/original", + "followers": 5250, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa159ddbd37a081c6af3e0e0f9ca4133478625dd4", + "etherscanUrl": "https://etherscan.io/address/0xa159ddbd37a081c6af3e0e0f9ca4133478625dd4", + "xHandle": "c_leovido", + "xUrl": "https://twitter.com/c_leovido", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_644823", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xkesha", + "displayName": "Kesha.base.eth🎩🔵", + "fid": 644823, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/adb26344-0af6-4f56-e9fb-0a6bd9afc500/original", + "followers": 5071, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc42166e9e1ed7b053781be452eebbe86a13c8cdb", + "etherscanUrl": "https://etherscan.io/address/0xc42166e9e1ed7b053781be452eebbe86a13c8cdb", + "xHandle": "itskesha02", + "xUrl": "https://twitter.com/itskesha02", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_474644", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abeg007.eth", + "displayName": "abeg007 🧬", + "fid": 474644, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c18acfd-afff-4ed6-d3ea-23121b319300/original", + "followers": 4966, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74fed975e5f1cb637d9471d1c5e291c8a428ee57", + "etherscanUrl": "https://etherscan.io/address/0x74fed975e5f1cb637d9471d1c5e291c8a428ee57", + "xHandle": "abegashikul", + "xUrl": "https://twitter.com/abegashikul", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_368757", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xdejun.eth", + "displayName": "Dejun", + "fid": 368757, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16f79823-159e-4526-a64a-47023a681e00/original", + "followers": 4950, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6306e7b383f4c6a6d2744dea755649a3994fa97e", + "etherscanUrl": "https://etherscan.io/address/0x6306e7b383f4c6a6d2744dea755649a3994fa97e", + "xHandle": "0xdejun", + "xUrl": "https://twitter.com/0xdejun", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3300", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ywc", + "displayName": "ywc", + "fid": 3300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24f06959-c8f1-497a-7903-5e08f2383500/original", + "followers": 4869, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe14fbcaf7b7e87cb1bb7ff2db7ee0adbdf8585b5", + "etherscanUrl": "https://etherscan.io/address/0xe14fbcaf7b7e87cb1bb7ff2db7ee0adbdf8585b5", + "xHandle": "yashwant_eth", + "xUrl": "https://twitter.com/yashwant_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_405729", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hamiiid.eth", + "displayName": "HaMiD 🧬", + "fid": 405729, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/742e6e69-dd5b-4a67-26bf-eb97a4053f00/original", + "followers": 4868, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2d7fdf3628618bb0a880ae541fc4a19dc3df278", + "etherscanUrl": "https://etherscan.io/address/0xe2d7fdf3628618bb0a880ae541fc4a19dc3df278", + "xHandle": "sayhehich", + "xUrl": "https://twitter.com/sayhehich", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212581", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bfresh", + "displayName": "hunter", + "fid": 212581, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49dd11c6-66d7-4c56-6470-a547cb04c900/original", + "followers": 4665, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0401272c353200da1c6eef2d100a108fda06025", + "etherscanUrl": "https://etherscan.io/address/0xc0401272c353200da1c6eef2d100a108fda06025", + "xHandle": "bfreshhb", + "xUrl": "https://twitter.com/bfreshhb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_434449", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "warpcast-com", + "displayName": "Zephyros ⛩️", + "fid": 434449, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06117ec6-b98d-438c-6c58-c83f75b13b00/original", + "followers": 4632, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x240a3df57aaa7089e7d2e261f0d948a99f43c96a", + "etherscanUrl": "https://etherscan.io/address/0x240a3df57aaa7089e7d2e261f0d948a99f43c96a", + "xHandle": "warpcastcom", + "xUrl": "https://twitter.com/warpcastcom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_395022", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shadatofficial", + "displayName": "🟦Shadatofficial", + "fid": 395022, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66a2ef38-766b-4235-4b98-9346d4716700/original", + "followers": 4558, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc09e11a12f63887065987dac7e8ef8ac6bf3ea3", + "etherscanUrl": "https://etherscan.io/address/0xdc09e11a12f63887065987dac7e8ef8ac6bf3ea3", + "xHandle": "shadatofficial1", + "xUrl": "https://twitter.com/shadatofficial1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17714", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "igoryuzo.eth", + "displayName": "Igor Yuzovitskiy", + "fid": 17714, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b70994a1-970c-4274-fcd2-b9b8a9728200/original", + "followers": 4512, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc934ce64152e2a846a977d51060356a9e5ddd351", + "etherscanUrl": "https://etherscan.io/address/0xc934ce64152e2a846a977d51060356a9e5ddd351", + "xHandle": "igoryuzo", + "xUrl": "https://twitter.com/igoryuzo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_200375", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adnum.base.eth", + "displayName": "adnum", + "fid": 200375, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e257ca30-d193-4635-538c-5e8389ab7700/original", + "followers": 4461, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb902352464ac345c0889374bf873b074ad73a0dd", + "etherscanUrl": "https://etherscan.io/address/0xb902352464ac345c0889374bf873b074ad73a0dd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2242", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "carter", + "displayName": "carter", + "fid": 2242, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff564550-e03e-4a20-ae1e-87d22d3bf300/original", + "followers": 4406, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b32c7635afe825703dbd446e0b402b8a67a7051", + "etherscanUrl": "https://etherscan.io/address/0x5b32c7635afe825703dbd446e0b402b8a67a7051", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17673", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "road.base.eth", + "displayName": "road.base.eth", + "fid": 17673, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ff23526-e905-475b-deb6-82ffe4804800/original", + "followers": 4405, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe83303b979dad1d966b370262c0e8f16b58bb299", + "etherscanUrl": "https://etherscan.io/address/0xe83303b979dad1d966b370262c0e8f16b58bb299", + "xHandle": "cryptouii", + "xUrl": "https://twitter.com/cryptouii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_474817", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "attilagaliba.eth", + "displayName": "ㅤㅤㅤㅤㅤㅤ", + "fid": 474817, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc29449a-6ef4-4d2c-fd2d-4b2b61113900/original", + "followers": 4400, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe4b374900f70dcab73a437ace8ef41a13d032e8", + "etherscanUrl": "https://etherscan.io/address/0xbe4b374900f70dcab73a437ace8ef41a13d032e8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13267", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "daddysgotit.eth", + "displayName": "cosmic-thinker.eth 🎩", + "fid": 13267, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f024a9a-4563-4779-afc4-45ac4835bb00/original", + "followers": 4332, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd1ec7cce2932f5a3d7cf0df558058d343d36e46", + "etherscanUrl": "https://etherscan.io/address/0xcd1ec7cce2932f5a3d7cf0df558058d343d36e46", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212259", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "julieinweb3", + "displayName": "julie.base.eth", + "fid": 212259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5826fc9-2b16-42c7-a933-219a5fa8f300/rectcrop3", + "followers": 4224, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6dc544ed82a866b41f3d8042704ea5deb5a60ee8", + "etherscanUrl": "https://etherscan.io/address/0x6dc544ed82a866b41f3d8042704ea5deb5a60ee8", + "xHandle": "juliezize", + "xUrl": "https://twitter.com/juliezize", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_230941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "willywonka.eth", + "displayName": "willywonka ⌐◨-◨", + "fid": 230941, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c2324ecf-c09f-40f5-936c-80fbbd0cb500/original", + "followers": 4221, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b525f808df863413afd4c5ae1eed276af266c97", + "etherscanUrl": "https://etherscan.io/address/0x3b525f808df863413afd4c5ae1eed276af266c97", + "xHandle": "willyogo", + "xUrl": "https://twitter.com/willyogo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307013", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nasrinmousavi", + "displayName": "Nasrin Mousavi", + "fid": 307013, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5f38722-2fdd-40db-0fc0-f5085190d000/original", + "followers": 4220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe5978ea7f4790ee8a7a82fc5249cf142551e79e", + "etherscanUrl": "https://etherscan.io/address/0xfe5978ea7f4790ee8a7a82fc5249cf142551e79e", + "xHandle": "mooneth05", + "xUrl": "https://twitter.com/mooneth05", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brownalytics.eth", + "displayName": "Máximo T 🎩", + "fid": 192702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/043c719f-ebae-45f3-e356-7514b0645800/original", + "followers": 4097, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfec9d8c0d6765385f80507538e65875e3a7bcda2", + "etherscanUrl": "https://etherscan.io/address/0xfec9d8c0d6765385f80507538e65875e3a7bcda2", + "xHandle": "degencondition", + "xUrl": "https://twitter.com/degencondition", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8332", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "awedjob", + "displayName": "AJ 🧬", + "fid": 8332, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4358a797-a428-4d25-40ed-21fecf8ea100/original", + "followers": 3998, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ebcecea588e5a6dfad865fc43732d14e1ac850c", + "etherscanUrl": "https://etherscan.io/address/0x3ebcecea588e5a6dfad865fc43732d14e1ac850c", + "xHandle": "awedjob", + "xUrl": "https://twitter.com/awedjob", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_445000", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tonyrich.eth", + "displayName": "TONYFi", + "fid": 445000, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e238c53-2e13-4b41-7865-8bc45fdab500/original", + "followers": 3991, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd97296d6ba14382d861208ee8ff928f74da4ec3", + "etherscanUrl": "https://etherscan.io/address/0xbd97296d6ba14382d861208ee8ff928f74da4ec3", + "xHandle": "0xtony0", + "xUrl": "https://twitter.com/0xtony0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_646397", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trizsamae", + "displayName": "trizsamae.base.eth 🟦", + "fid": 646397, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a95f9e88-cbb1-4e2f-08b1-7e7931c18c00/original", + "followers": 3975, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5de65272846059efe0120f93e384bd5bcb738dcd", + "etherscanUrl": "https://etherscan.io/address/0x5de65272846059efe0120f93e384bd5bcb738dcd", + "xHandle": "cookiesntrizzzz", + "xUrl": "https://twitter.com/cookiesntrizzzz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_509017", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rashedur", + "displayName": "Rashed", + "fid": 509017, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec5d4b38-dbff-4e9a-6dc4-e6bc87e45c00/original", + "followers": 3933, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x507efcd4ab8741f3609e626778929cf2ca3f4628", + "etherscanUrl": "https://etherscan.io/address/0x507efcd4ab8741f3609e626778929cf2ca3f4628", + "xHandle": "rashedur_", + "xUrl": "https://twitter.com/rashedur_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486015", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pornpen", + "displayName": "Pennalopy", + "fid": 486015, + "pfpUrl": "https://i.imgur.com/KQ7oIjL.jpg", + "followers": 3927, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda632669b52ee9b6f5e250487e9cedfa1fb41a01", + "etherscanUrl": "https://etherscan.io/address/0xda632669b52ee9b6f5e250487e9cedfa1fb41a01", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_969231", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xexcy", + "displayName": "xexcy", + "fid": 969231, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8fffabb-b3ef-48f6-25c6-8be93aac8700/original", + "followers": 3910, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18e4a4a077643e8742505fd83c6f1e485099d3d6", + "etherscanUrl": "https://etherscan.io/address/0x18e4a4a077643e8742505fd83c6f1e485099d3d6", + "xHandle": "xexcy1", + "xUrl": "https://twitter.com/xexcy1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_296241", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skrim", + "displayName": "Alexey", + "fid": 296241, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55a5d10c-cedd-4747-dd52-8d5b238a7800/original", + "followers": 3814, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b87a1216934d32252e7de4b5acfe036c4c8ee4a", + "etherscanUrl": "https://etherscan.io/address/0x0b87a1216934d32252e7de4b5acfe036c4c8ee4a", + "xHandle": "jeetmacdonald", + "xUrl": "https://twitter.com/jeetmacdonald", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_285604", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shuk007.eth", + "displayName": "Shuk007.base.eth 🟦 🧬 🟧", + "fid": 285604, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9462bcfb-b99c-44dc-b2da-6f2f3b673200/original", + "followers": 3790, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f356a894ff5f599e023864a6393d1e1c7d56c31", + "etherscanUrl": "https://etherscan.io/address/0x3f356a894ff5f599e023864a6393d1e1c7d56c31", + "xHandle": "shukrier0077", + "xUrl": "https://twitter.com/shukrier0077", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_419274", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lyttrushin", + "displayName": "Dmitrii 🎩 ✚ ↻ ♡ ✎ ", + "fid": 419274, + "pfpUrl": "https://i.imgur.com/NWtnOkk.jpg", + "followers": 3750, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00fa2c2f988983710076196385b035467dc6d914", + "etherscanUrl": "https://etherscan.io/address/0x00fa2c2f988983710076196385b035467dc6d914", + "xHandle": "mongtan17", + "xUrl": "https://twitter.com/mongtan17", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_449096", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "safail", + "displayName": "safail", + "fid": 449096, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad5d76b7-27a3-459c-8447-8d2e36687b00/original", + "followers": 3744, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9d53f2a9a2bb83b933b630480e4dbe1ce7e0c92", + "etherscanUrl": "https://etherscan.io/address/0xc9d53f2a9a2bb83b933b630480e4dbe1ce7e0c92", + "xHandle": "safailrashtbari", + "xUrl": "https://twitter.com/safailrashtbari", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_449044", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pedramiix.eth", + "displayName": "Pedram🎩🍖🐹😇🧾", + "fid": 449044, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9330d80c-0712-4fb6-f0b1-901a158c5900/rectcrop3", + "followers": 3744, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6234ceccfeca398e0a68ca7d18638b9cdad1ea32", + "etherscanUrl": "https://etherscan.io/address/0x6234ceccfeca398e0a68ca7d18638b9cdad1ea32", + "xHandle": "pedramiixeth", + "xUrl": "https://twitter.com/pedramiixeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19711", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mary8992", + "displayName": "Mary", + "fid": 19711, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06195910-860a-494f-4e05-962ef98b1800/original", + "followers": 3680, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcca4bd5054287eb70602fad51051d93111a99a8", + "etherscanUrl": "https://etherscan.io/address/0xfcca4bd5054287eb70602fad51051d93111a99a8", + "xHandle": "ch_8992", + "xUrl": "https://twitter.com/ch_8992", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309310", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "metamu", + "displayName": "MetaMu.base.eth", + "fid": 309310, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/278d61ce-b186-4821-d722-9b8a2cb6d200/original", + "followers": 3616, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15e87052d69ad27532434e9fa6aac7f424fe0f55", + "etherscanUrl": "https://etherscan.io/address/0x15e87052d69ad27532434e9fa6aac7f424fe0f55", + "xHandle": "metam00", + "xUrl": "https://twitter.com/metam00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_423487", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onchaineth.base.eth", + "displayName": "ZUKA", + "fid": 423487, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3907f335-ac37-497a-f372-9a353e7bf400/original", + "followers": 3462, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4eb1be3ddb879243e1f0d50ea78ecba466af388f", + "etherscanUrl": "https://etherscan.io/address/0x4eb1be3ddb879243e1f0d50ea78ecba466af388f", + "xHandle": "ecosystem_3", + "xUrl": "https://twitter.com/ecosystem_3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_380885", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryp2romz.eth", + "displayName": "romz🎩🧡🟦 🧬", + "fid": 380885, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c76901e8-33c0-4e5b-155e-0d1188db7100/original", + "followers": 3455, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e2913a92deb13d796e6d99d1471af3d2d4353ab", + "etherscanUrl": "https://etherscan.io/address/0x8e2913a92deb13d796e6d99d1471af3d2d4353ab", + "xHandle": "cryptobasurero7", + "xUrl": "https://twitter.com/cryptobasurero7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_273791", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "315", + "displayName": "315", + "fid": 273791, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/90a1ef07-8883-4b7e-b46d-d6705d236700/original", + "followers": 3437, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9509ad9a025155857f9d788f34d30f52aa2db8ed", + "etherscanUrl": "https://etherscan.io/address/0x9509ad9a025155857f9d788f34d30f52aa2db8ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_510796", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drrrner.eth", + "displayName": "D-wayñe", + "fid": 510796, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44b1b236-fbd5-491c-f2c5-fd6b900c6400/original", + "followers": 3404, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e9cbbc2de389e41db1fa7fed477bc1842fcf766", + "etherscanUrl": "https://etherscan.io/address/0x6e9cbbc2de389e41db1fa7fed477bc1842fcf766", + "xHandle": "mrjushenry", + "xUrl": "https://twitter.com/mrjushenry", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5429", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "frankdegods", + "displayName": "Frank", + "fid": 5429, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/70cadf43-3f2d-4c1a-518c-0e9c2224fb00/original", + "followers": 3391, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6dc38c512753fe0181864bf98a94ee48506c219e", + "etherscanUrl": "https://etherscan.io/address/0x6dc38c512753fe0181864bf98a94ee48506c219e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_645888", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "akash2539", + "displayName": "Akash", + "fid": 645888, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/900eba00-89eb-4f36-d8f5-a581c112e700/rectcrop3", + "followers": 3383, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46cfd33b9d326b7b1a56cfdc9445d47b8bdaac76", + "etherscanUrl": "https://etherscan.io/address/0x46cfd33b9d326b7b1a56cfdc9445d47b8bdaac76", + "xHandle": "bikash2539", + "xUrl": "https://twitter.com/bikash2539", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050713", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "littleanjel", + "displayName": "Little Anjel 🕊️", + "fid": 1050713, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e210c095-0616-43e0-4f4c-bd2711ee5600/original", + "followers": 3330, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xffd439dd5c1594943f6946fac5e0c12d29b97138", + "etherscanUrl": "https://etherscan.io/address/0xffd439dd5c1594943f6946fac5e0c12d29b97138", + "xHandle": "mrxsubhan", + "xUrl": "https://twitter.com/mrxsubhan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_502916", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juvelir", + "displayName": "Juvelir. base.eth", + "fid": 502916, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96575fd1-6ef4-48ac-1a0e-80d37372f600/rectcrop3", + "followers": 3220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7a6f2a51de5ae0c6ea17b5ec3c44cecbdf2dadf", + "etherscanUrl": "https://etherscan.io/address/0xe7a6f2a51de5ae0c6ea17b5ec3c44cecbdf2dadf", + "xHandle": "aleksandrblazev", + "xUrl": "https://twitter.com/aleksandrblazev", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_419545", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eli-web3", + "displayName": "Eliyah", + "fid": 419545, + "pfpUrl": "https://i.imgur.com/2bmpAJJ.jpg", + "followers": 3154, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe97fe00a59a4f5320e79e60f99542e8637a39144", + "etherscanUrl": "https://etherscan.io/address/0xe97fe00a59a4f5320e79e60f99542e8637a39144", + "xHandle": "eliyah_web3", + "xUrl": "https://twitter.com/eliyah_web3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_406432", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mehrans", + "displayName": "mehran", + "fid": 406432, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f2eb481-d3c9-4a22-4a27-a043963e0500/rectcrop3", + "followers": 3129, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2dd104ad43fc84494eb40c27cc70a0f3861c19ca", + "etherscanUrl": "https://etherscan.io/address/0x2dd104ad43fc84494eb40c27cc70a0f3861c19ca", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_489158", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "asifbodla", + "displayName": "ASO AI 🤖", + "fid": 489158, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/197deef1-6c12-422f-3409-47b34bcbda00/rectcrop3", + "followers": 3101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeeb5ff0a1b2de2d2a19c9d2870ac5e7a33f96613", + "etherscanUrl": "https://etherscan.io/address/0xeeb5ff0a1b2de2d2a19c9d2870ac5e7a33f96613", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21473", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zanglee", + "displayName": "Zang 🎩", + "fid": 21473, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0644dd48-3d54-42b8-ad5e-88b0e7108000/original", + "followers": 3099, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c4beb276654c4fa614fb87f9367ba6ef714140a", + "etherscanUrl": "https://etherscan.io/address/0x1c4beb276654c4fa614fb87f9367ba6ef714140a", + "xHandle": "zanglee1306", + "xUrl": "https://twitter.com/zanglee1306", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20264", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lobstermindset.eth", + "displayName": "lily", + "fid": 20264, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8e478c98-40a3-4fa7-6431-eb135a9aac00/original", + "followers": 3055, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf98cff357b473fa267c8e09ec967671ac65f0c1", + "etherscanUrl": "https://etherscan.io/address/0xdf98cff357b473fa267c8e09ec967671ac65f0c1", + "xHandle": "lobstermindset", + "xUrl": "https://twitter.com/lobstermindset", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_198116", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jimbocity", + "displayName": "jimbo.base.eth 🎩", + "fid": 198116, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f7f50d4-e883-46f5-dd5a-692f44d9b100/original", + "followers": 3023, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c2e009886fec1b9bd98741eefd669817d6fee79", + "etherscanUrl": "https://etherscan.io/address/0x9c2e009886fec1b9bd98741eefd669817d6fee79", + "xHandle": "jimbo_city", + "xUrl": "https://twitter.com/jimbo_city", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tom.base.eth", + "displayName": "tom", + "fid": 196388, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmPfhHCNvL9Y89Zd57SovAion5rXi9bKxoiYVWdHZxZxNA?pinataGatewayToken=PMz6RFTDuk-300OttNnb_U0PSKbbXQdzLmUqdiEq7lesXcsVK8TK7S5GoOtxRGl2", + "followers": 3022, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2aaff4fa12c4606689ffbebeba8ce8ce28733766", + "etherscanUrl": "https://etherscan.io/address/0x2aaff4fa12c4606689ffbebeba8ce8ce28733766", + "xHandle": "neodaoist", + "xUrl": "https://twitter.com/neodaoist", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_999046", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrbrick", + "displayName": "MrBrick.Base.Eth", + "fid": 999046, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76776de9-e02a-4667-2d1b-e83dd5b5b400/original", + "followers": 3014, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x34acb0c4a25c49c1b1beddf5a78c9c90b5d85650", + "etherscanUrl": "https://etherscan.io/address/0x34acb0c4a25c49c1b1beddf5a78c9c90b5d85650", + "xHandle": "2kbricktv", + "xUrl": "https://twitter.com/2kbricktv", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17538", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tugzpaker.eth", + "displayName": "Ej", + "fid": 17538, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b41ab1f5-2796-4aec-32ab-da4558d7d400/original", + "followers": 2913, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe10474e432baa1931b1c088ce4446f18e1afe60e", + "etherscanUrl": "https://etherscan.io/address/0xe10474e432baa1931b1c088ce4446f18e1afe60e", + "xHandle": "aischub777", + "xUrl": "https://twitter.com/aischub777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_310531", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "koolkheart.eth", + "displayName": "Koolkheart", + "fid": 310531, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae184e83-4f97-4dc5-1a51-ea73d44a4700/original", + "followers": 2814, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5df895914305eea293e8eea65313b43e85aa5cad", + "etherscanUrl": "https://etherscan.io/address/0x5df895914305eea293e8eea65313b43e85aa5cad", + "xHandle": "shamaya_kent", + "xUrl": "https://twitter.com/shamaya_kent", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_973613", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kidyflames", + "displayName": "KîdyØffîcîal.base.eth 💙", + "fid": 973613, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39666b97-3c17-435f-a05c-f242520e4100/original", + "followers": 2788, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x803dceba8321874ccfdd2af94c99676cf8d540cd", + "etherscanUrl": "https://etherscan.io/address/0x803dceba8321874ccfdd2af94c99676cf8d540cd", + "xHandle": "kidy_flames", + "xUrl": "https://twitter.com/kidy_flames", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_312016", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mikos32.eth", + "displayName": "Mikolaj", + "fid": 312016, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e5da495-7766-414d-69b9-a9b95cdee700/original", + "followers": 2787, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a94dad510eddc67df0553fcf99a32d55b9e3fbf", + "etherscanUrl": "https://etherscan.io/address/0x0a94dad510eddc67df0553fcf99a32d55b9e3fbf", + "xHandle": "mikolaj664108", + "xUrl": "https://twitter.com/mikolaj664108", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_277433", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xmoti.eth", + "displayName": "moticaster", + "fid": 277433, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67beada0-2184-4606-0b77-a6b71c94f100/original", + "followers": 2783, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x463dfcbf3b88f3330646648e185475f98235c74f", + "etherscanUrl": "https://etherscan.io/address/0x463dfcbf3b88f3330646648e185475f98235c74f", + "xHandle": "0xmoti", + "xUrl": "https://twitter.com/0xmoti", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_526510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mariabazooka", + "displayName": "Maria Bazooka 💜🎩🟪", + "fid": 526510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fc505aa-3eca-4ab1-dee2-9c4e3afc8800/rectcrop3", + "followers": 2777, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47e37b2a03e2e09df1c12d0bf5bc0774b258c148", + "etherscanUrl": "https://etherscan.io/address/0x47e37b2a03e2e09df1c12d0bf5bc0774b258c148", + "xHandle": "mariabazooka", + "xUrl": "https://twitter.com/mariabazooka", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_511842", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aroosh", + "displayName": "Aroosh 🧡🎩", + "fid": 511842, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bec64b45-f292-469c-8287-7f86ba2b6d00/original", + "followers": 2773, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x835d482629c8cdb6e243e17b07cf02b1dcd34fde", + "etherscanUrl": "https://etherscan.io/address/0x835d482629c8cdb6e243e17b07cf02b1dcd34fde", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_299583", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nesar", + "displayName": "Md Neser \"base.eth\"", + "fid": 299583, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c49fbe8-c4e6-4722-458a-219bffe5b100/rectcrop3", + "followers": 2701, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80240627034907835878f43feb1bb686d1d24f3e", + "etherscanUrl": "https://etherscan.io/address/0x80240627034907835878f43feb1bb686d1d24f3e", + "xHandle": "kznesar", + "xUrl": "https://twitter.com/kznesar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11205", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "branksypop", + "displayName": "Branksy Pop", + "fid": 11205, + "pfpUrl": "https://i.seadn.io/gcs/files/0109ca4c5232db856eb995cb4b38c462.gif?w=500&auto=format", + "followers": 2700, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6c50dd67ad4df406974a597be7054c35531e4fb", + "etherscanUrl": "https://etherscan.io/address/0xa6c50dd67ad4df406974a597be7054c35531e4fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13939", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nftgo", + "displayName": "Rad.base.eth🎩🎭🔮🐹🟪", + "fid": 13939, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/faff9ef9-0ea1-453a-3b66-2ed08d300d00/original", + "followers": 2691, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf14672ddd7279c1357f54b0b20799eeff14ce0d2", + "etherscanUrl": "https://etherscan.io/address/0xf14672ddd7279c1357f54b0b20799eeff14ce0d2", + "xHandle": "hradman4", + "xUrl": "https://twitter.com/hradman4", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_271946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kindkknd", + "displayName": "Kknd🎩🍖", + "fid": 271946, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af847e66-2538-4005-950f-0ca90d1b9900/original", + "followers": 2684, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac8a6f469adaf40a8c557d10cbc7fb857e86417c", + "etherscanUrl": "https://etherscan.io/address/0xac8a6f469adaf40a8c557d10cbc7fb857e86417c", + "xHandle": "kindkknd", + "xUrl": "https://twitter.com/kindkknd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_378416", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aminphantom.eth", + "displayName": "aminphantom.base.eth", + "fid": 378416, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e411744e-4610-4de9-1ef6-e5c78d675a00/rectcrop3", + "followers": 2630, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8be97914211c3d3bc618bcfd3b6dccaa161b5dc", + "etherscanUrl": "https://etherscan.io/address/0xc8be97914211c3d3bc618bcfd3b6dccaa161b5dc", + "xHandle": "amintabata", + "xUrl": "https://twitter.com/amintabata", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_243907", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "banterlytics.base.eth", + "displayName": "Banterlytics", + "fid": 243907, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0406c7b8-f004-49ed-8719-eb33eaa56100/original", + "followers": 2624, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7095a95f42c3d3f598cc956049cc5811986435e", + "etherscanUrl": "https://etherscan.io/address/0xb7095a95f42c3d3f598cc956049cc5811986435e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1078524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lollipop001.base.eth", + "displayName": "Biglolli", + "fid": 1078524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97ab8bc0-4e05-40bd-48a1-cebe0cd15200/original", + "followers": 2606, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x201c8dfdf70d579106b5e9e387774dd2133c103f", + "etherscanUrl": "https://etherscan.io/address/0x201c8dfdf70d579106b5e9e387774dd2133c103f", + "xHandle": "iam_lollipop023", + "xUrl": "https://twitter.com/iam_lollipop023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_291302", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ajrony", + "displayName": "ajrony.base.eth 🔵🧬", + "fid": 291302, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cf23c12-6831-4071-6b9d-53e215b30b00/original", + "followers": 2564, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43f8c3e0c0ab23f0a8660f3ea3ce1a7016f96a33", + "etherscanUrl": "https://etherscan.io/address/0x43f8c3e0c0ab23f0a8660f3ea3ce1a7016f96a33", + "xHandle": "ajrony2", + "xUrl": "https://twitter.com/ajrony2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_277636", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hustletrees.base.eth", + "displayName": "hustletrees 🎩🐹🔵", + "fid": 277636, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca13487c-fc33-4346-9b07-88bee4fce100/original", + "followers": 2534, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa09c2b4c50d70664ff1386cac6bc3696674f3605", + "etherscanUrl": "https://etherscan.io/address/0xa09c2b4c50d70664ff1386cac6bc3696674f3605", + "xHandle": "lfgweb3", + "xUrl": "https://twitter.com/lfgweb3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1075468", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "warptern", + "displayName": "Intern", + "fid": 1075468, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e56a16d-dcad-4535-5334-b17c0167c700/original", + "followers": 2529, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4836f9775feb2b46d6cccf831255ab8e6937d26", + "etherscanUrl": "https://etherscan.io/address/0xe4836f9775feb2b46d6cccf831255ab8e6937d26", + "xHandle": "farcasterintern", + "xUrl": "https://twitter.com/farcasterintern", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7472", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "goldie", + "displayName": "Goldie 🧟‍♂️", + "fid": 7472, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmeAzxCBV2JhqKoNzt5xBKyi5JkJJdoyHKZuTpNxzFNwpG?pinataGatewayToken=PMz6RFTDuk-300OttNnb_U0PSKbbXQdzLmUqdiEq7lesXcsVK8TK7S5GoOtxRGl2", + "followers": 2523, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcbbcf40247425932d728585da2678567e7f8e42f", + "etherscanUrl": "https://etherscan.io/address/0xcbbcf40247425932d728585da2678567e7f8e42f", + "xHandle": "goldiesnftart", + "xUrl": "https://twitter.com/goldiesnftart", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_347833", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "liwlimuz", + "displayName": "Jonathan 🎩", + "fid": 347833, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a67a620-3a48-4f83-622f-837f7e92c600/original", + "followers": 2512, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x287ad2a3a8b40d443423faf7734c838ece844b1c", + "etherscanUrl": "https://etherscan.io/address/0x287ad2a3a8b40d443423faf7734c838ece844b1c", + "xHandle": "liwlimuz", + "xUrl": "https://twitter.com/liwlimuz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_300839", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xlauraopami", + "displayName": "Opami Laura", + "fid": 300839, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71b9fbf9-b87a-417d-932d-e414d68ca100/original", + "followers": 2480, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x087c2f2a62c10162885c4c799ad28b5b3e049cb6", + "etherscanUrl": "https://etherscan.io/address/0x087c2f2a62c10162885c4c799ad28b5b3e049cb6", + "xHandle": "120pure", + "xUrl": "https://twitter.com/120pure", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_364615", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yanga", + "displayName": "Yangaobong.base.eth 🟦 🎩", + "fid": 364615, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c6a27e54-8786-467d-a65b-d5c66bcf8f00/original", + "followers": 2473, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74441b0bad007b2fd8fb22ad72a1a1db164d8af5", + "etherscanUrl": "https://etherscan.io/address/0x74441b0bad007b2fd8fb22ad72a1a1db164d8af5", + "xHandle": "yangaarts", + "xUrl": "https://twitter.com/yangaarts", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625770", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bq110", + "displayName": "Shining Star", + "fid": 625770, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3707ee8e-d54f-49ca-748c-9a021c0c1c00/rectcrop3", + "followers": 2439, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e0a37916e5180ba0cde4af797aa255a4156f0d7", + "etherscanUrl": "https://etherscan.io/address/0x3e0a37916e5180ba0cde4af797aa255a4156f0d7", + "xHandle": "afzaalsyed31652", + "xUrl": "https://twitter.com/afzaalsyed31652", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_417851", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tracyit", + "displayName": "Tracyit 🫧", + "fid": 417851, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a4632b4-626b-4725-e66c-c5e2193c9000/original", + "followers": 2378, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x98f047fce42c8689f6ea231e24fe2d394cce7958", + "etherscanUrl": "https://etherscan.io/address/0x98f047fce42c8689f6ea231e24fe2d394cce7958", + "xHandle": "tracyit99", + "xUrl": "https://twitter.com/tracyit99", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_238814", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sardius", + "displayName": "sardius.eth", + "fid": 238814, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/457cb277-cd9b-4fc9-7837-4efc3fa22300/original", + "followers": 2348, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x626522b58b92daf53596f1378bd25b7653c1fc49", + "etherscanUrl": "https://etherscan.io/address/0x626522b58b92daf53596f1378bd25b7653c1fc49", + "xHandle": "0xsardius", + "xUrl": "https://twitter.com/0xsardius", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_262469", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ziyafat9183", + "displayName": "Ziyafat🎩🔥⚡", + "fid": 262469, + "pfpUrl": "https://i.imgur.com/NafNfyg.jpg", + "followers": 2308, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4712fd7ced13e9a2fb38db08f8daeace973c49aa", + "etherscanUrl": "https://etherscan.io/address/0x4712fd7ced13e9a2fb38db08f8daeace973c49aa", + "xHandle": "ziyafat4", + "xUrl": "https://twitter.com/ziyafat4", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_481769", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iwo-yalda-880", + "displayName": "🌐 Sohrab 🌐", + "fid": 481769, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98c6729c-d9f5-4dc6-9161-3bc54f022300/rectcrop3", + "followers": 2260, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbf0cba693003c175e87520556787d5454991d6a", + "etherscanUrl": "https://etherscan.io/address/0xbbf0cba693003c175e87520556787d5454991d6a", + "xHandle": "sohrab_k_60", + "xUrl": "https://twitter.com/sohrab_k_60", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_400462", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raselhossain", + "displayName": "Rasel Hossain", + "fid": 400462, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e575b705-20a8-4ad6-404c-6f64d4a65f00/original", + "followers": 2253, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa62d1b97afd0e9dc7dfbc59754384d744a5c2bc3", + "etherscanUrl": "https://etherscan.io/address/0xa62d1b97afd0e9dc7dfbc59754384d744a5c2bc3", + "xHandle": "raselasiku", + "xUrl": "https://twitter.com/raselasiku", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_298406", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sajiiiiiiii8", + "displayName": "SΛJΛD", + "fid": 298406, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c74a954a-951b-4fcd-5c9e-191fd5edb100/original", + "followers": 2251, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31424317a37e8b2f57ba98555b7613a36ff4c9ba", + "etherscanUrl": "https://etherscan.io/address/0x31424317a37e8b2f57ba98555b7613a36ff4c9ba", + "xHandle": "sajiiiiiiii8", + "xUrl": "https://twitter.com/sajiiiiiiii8", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1362424", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "grkx", + "displayName": "GRK", + "fid": 1362424, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bace7a53-c228-4015-be32-d467d9a98800/original", + "followers": 2234, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x818bbff1815ed8010dcb6b4c720dddc350862506", + "etherscanUrl": "https://etherscan.io/address/0x818bbff1815ed8010dcb6b4c720dddc350862506", + "xHandle": "grkzgrk", + "xUrl": "https://twitter.com/grkzgrk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15129", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "violet", + "displayName": "Nazii 🧬", + "fid": 15129, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6792e0ba-473c-4951-cac6-6440973af900/original", + "followers": 2232, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1611b8532f5976004dab91aa1d0a814542cd9452", + "etherscanUrl": "https://etherscan.io/address/0x1611b8532f5976004dab91aa1d0a814542cd9452", + "xHandle": "violet_dev_", + "xUrl": "https://twitter.com/violet_dev_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_859081", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joybrishti", + "displayName": "Myza", + "fid": 859081, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/33226680-eccc-4607-cecc-9d1fcc867200/rectcrop3", + "followers": 2227, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75d51c48dfb380960f4fb7bb2465f134c2890efc", + "etherscanUrl": "https://etherscan.io/address/0x75d51c48dfb380960f4fb7bb2465f134c2890efc", + "xHandle": "joybrishti1446", + "xUrl": "https://twitter.com/joybrishti1446", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_240932", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "monteluna", + "displayName": "Monteluna", + "fid": 240932, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c38549f-874e-4027-5f24-09c454ad6500/original", + "followers": 2219, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde54fccaa9bec57ddb3cae72a6bcd37c7ee535e1", + "etherscanUrl": "https://etherscan.io/address/0xde54fccaa9bec57ddb3cae72a6bcd37c7ee535e1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_897406", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "outflow.eth", + "displayName": "Flow", + "fid": 897406, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2add1c9c-8eb7-401c-4106-3ffad084a700/original", + "followers": 2214, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe849355272d614a00cfe10be992cae945d58a5a5", + "etherscanUrl": "https://etherscan.io/address/0xe849355272d614a00cfe10be992cae945d58a5a5", + "xHandle": "goblen_eth", + "xUrl": "https://twitter.com/goblen_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_235900", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sepuhh", + "displayName": "zaz 🧲", + "fid": 235900, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66f62a8a-6f0e-4ebe-a160-85ebf6a13800/original", + "followers": 2180, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc1bbc69f2867ceb2f8813ffc056dbb0bd63c2320", + "etherscanUrl": "https://etherscan.io/address/0xc1bbc69f2867ceb2f8813ffc056dbb0bd63c2320", + "xHandle": "zazalpha", + "xUrl": "https://twitter.com/zazalpha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_511674", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yulius7602", + "displayName": "Iyus 🧬", + "fid": 511674, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bce3d7c8-ece7-49c2-6a6c-9258ee187700/original", + "followers": 2171, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xecfd31add12f4576065b7fd4ecb725250bac2027", + "etherscanUrl": "https://etherscan.io/address/0xecfd31add12f4576065b7fd4ecb725250bac2027", + "xHandle": "arilyone", + "xUrl": "https://twitter.com/arilyone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1020660", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "milanyia", + "displayName": "Milanyia", + "fid": 1020660, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a48338b-acda-407b-7a19-b8d51a807700/original", + "followers": 2170, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd9136fcaddc3b397913b154ec7d753463594576", + "etherscanUrl": "https://etherscan.io/address/0xfd9136fcaddc3b397913b154ec7d753463594576", + "xHandle": "milka1994151333", + "xUrl": "https://twitter.com/milka1994151333", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18908", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mpryor.eth", + "displayName": "‎", + "fid": 18908, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/844ec0f5-a457-47ca-cd26-e48abb427100/original", + "followers": 2149, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67493cf7e4e91649fa4e845b78cbc79a50e7b1f7", + "etherscanUrl": "https://etherscan.io/address/0x67493cf7e4e91649fa4e845b78cbc79a50e7b1f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1042494", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babartos.base.eth", + "displayName": "BARBATOS", + "fid": 1042494, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761714024/Screenshot_20251029-120001_Base.jpg.jpg", + "followers": 2118, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09c69e86ff85fb68c6ddbdcc4ab7cd2a3612e72d", + "etherscanUrl": "https://etherscan.io/address/0x09c69e86ff85fb68c6ddbdcc4ab7cd2a3612e72d", + "xHandle": "honzaido", + "xUrl": "https://twitter.com/honzaido", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_853066", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suave1010", + "displayName": "Suave🎩 🍖", + "fid": 853066, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27caadd8-86d8-405b-d16f-d06c83260800/original", + "followers": 2014, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6657c43021c9d3d488d89ceaf37bd53436250fe2", + "etherscanUrl": "https://etherscan.io/address/0x6657c43021c9d3d488d89ceaf37bd53436250fe2", + "xHandle": "suavecito1010", + "xUrl": "https://twitter.com/suavecito1010", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_267076", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jimboy", + "displayName": "Javad 🔵 base.eth", + "fid": 267076, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/963a8e0c-d15d-4c28-817d-3b044d644100/rectcrop3", + "followers": 2013, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d6cb63a4cedf4fd852b69b2d694b3d6810f70eb", + "etherscanUrl": "https://etherscan.io/address/0x0d6cb63a4cedf4fd852b69b2d694b3d6810f70eb", + "xHandle": "salazar02222", + "xUrl": "https://twitter.com/salazar02222", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1042077", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "substack", + "displayName": "substack", + "fid": 1042077, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e97624c9-4ee4-46cf-bdd0-7c8209c9c800/original", + "followers": 2004, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee3526124b1422db388df8612581a95d2496049d", + "etherscanUrl": "https://etherscan.io/address/0xee3526124b1422db388df8612581a95d2496049d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17223", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kindness", + "displayName": "Kindnesss.eth 🌐", + "fid": 17223, + "pfpUrl": "https://i.imgur.com/RR1m9G2.gif", + "followers": 1997, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8dadfa79f0ea5b691def58d99c4527839ca0f75b", + "etherscanUrl": "https://etherscan.io/address/0x8dadfa79f0ea5b691def58d99c4527839ca0f75b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1049184", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "biggydaddy", + "displayName": "Biggydaddy.eth", + "fid": 1049184, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6119ca0-a9c8-42e7-0a18-d0871fc6bc00/original", + "followers": 1995, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb53338891cb3b6d8c45a5683ee51eac93fb5e987", + "etherscanUrl": "https://etherscan.io/address/0xb53338891cb3b6d8c45a5683ee51eac93fb5e987", + "xHandle": "biggydaddy01", + "xUrl": "https://twitter.com/biggydaddy01", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_849116", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uniquebeing404", + "displayName": "Uniquebeing.base.eth 👨‍💻", + "fid": 849116, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1d313d0-f16a-4ee6-08af-3a096d30e100/original", + "followers": 1995, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6b69e58d44e523eb58645f1b78425c96dfa648c", + "etherscanUrl": "https://etherscan.io/address/0xd6b69e58d44e523eb58645f1b78425c96dfa648c", + "xHandle": "uniquebeing404", + "xUrl": "https://twitter.com/uniquebeing404", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050410", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "madnet90", + "displayName": "Karol", + "fid": 1050410, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/694bfedc-c75d-4e43-a96e-3f15e3712000/rectcrop3", + "followers": 1968, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae51b3d7d2a3ce9ce2f57ddabec5a28a97d626ec", + "etherscanUrl": "https://etherscan.io/address/0xae51b3d7d2a3ce9ce2f57ddabec5a28a97d626ec", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_461523", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hyouka", + "displayName": "Hyouka", + "fid": 461523, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e17526df-14b3-419c-4ed7-fc9f9c901b00/rectcrop3", + "followers": 1958, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x238de5066e5ee72f633811eefa338354b5940087", + "etherscanUrl": "https://etherscan.io/address/0x238de5066e5ee72f633811eefa338354b5940087", + "xHandle": "cryptobtcsats", + "xUrl": "https://twitter.com/cryptobtcsats", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7681", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "smr18.eth", + "displayName": "smr18", + "fid": 7681, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca43c1fd-f1fd-450a-1d6c-19f28faa2a00/rectcrop3", + "followers": 1949, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x285e093e334a4ad3d1f37c5e8f8b5761ed0cf1f7", + "etherscanUrl": "https://etherscan.io/address/0x285e093e334a4ad3d1f37c5e8f8b5761ed0cf1f7", + "xHandle": "audfosmr18", + "xUrl": "https://twitter.com/audfosmr18", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptoprofitjp", + "displayName": "🦑", + "fid": 260388, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4057d5d4-a4b2-4713-6787-d558b478de00/original", + "followers": 1895, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29f42a382607527d74a4d78b5866764da1fdb0bf", + "etherscanUrl": "https://etherscan.io/address/0x29f42a382607527d74a4d78b5866764da1fdb0bf", + "xHandle": "ndesipp", + "xUrl": "https://twitter.com/ndesipp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_283718", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wpwhite.eth", + "displayName": "wpwhite.base.eth", + "fid": 283718, + "pfpUrl": "https://i.imgur.com/s095brZ.jpg", + "followers": 1886, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74f25777ed6061f30157742a651f28df979734d7", + "etherscanUrl": "https://etherscan.io/address/0x74f25777ed6061f30157742a651f28df979734d7", + "xHandle": "orqlx", + "xUrl": "https://twitter.com/orqlx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_424529", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kmmaruf65", + "displayName": "Kisuke Urahara 🎭", + "fid": 424529, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c999b515-48f4-4890-d69b-49afeab7e700/original", + "followers": 1877, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf6e24153488e8db9d5abfb20a367489014ac221", + "etherscanUrl": "https://etherscan.io/address/0xdf6e24153488e8db9d5abfb20a367489014ac221", + "xHandle": "kmmaruf65", + "xUrl": "https://twitter.com/kmmaruf65", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188259", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "a1z2", + "displayName": "$a1z2", + "fid": 188259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f20929e-249f-4863-7b47-6569ea4cfc00/original", + "followers": 1845, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8fd1c1a9648a23140b95fe54ce403e28b4ea050", + "etherscanUrl": "https://etherscan.io/address/0xc8fd1c1a9648a23140b95fe54ce403e28b4ea050", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_528404", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "farabish", + "displayName": "Farabi", + "fid": 528404, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5cf9434-68cb-47ca-0ef9-960a7afe5d00/original", + "followers": 1838, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x733b5235d16611efb64a04c0a5c9258e3c6a4e23", + "etherscanUrl": "https://etherscan.io/address/0x733b5235d16611efb64a04c0a5c9258e3c6a4e23", + "xHandle": "shakil11farabi", + "xUrl": "https://twitter.com/shakil11farabi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_935829", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptokot", + "displayName": "Cryptokot", + "fid": 935829, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f9bb65b-5501-4ed0-b58c-e01f74417800/original", + "followers": 1835, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf981ec0d90de8eaf224a2e7da4067ce42a550f1a", + "etherscanUrl": "https://etherscan.io/address/0xf981ec0d90de8eaf224a2e7da4067ce42a550f1a", + "xHandle": "crypt0cat", + "xUrl": "https://twitter.com/crypt0cat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251269", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xjoppy", + "displayName": "malestbanget.base.eth 🧬", + "fid": 251269, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4181218a-88b9-4df9-36b9-ffe184a4ce00/original", + "followers": 1820, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5966304752f58a95d1d810b56d33ba3bea2147cf", + "etherscanUrl": "https://etherscan.io/address/0x5966304752f58a95d1d810b56d33ba3bea2147cf", + "xHandle": "0xjoppy", + "xUrl": "https://twitter.com/0xjoppy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5142", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrbriandesign", + "displayName": "llbxdll", + "fid": 5142, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8fc36c7c-2a9b-49df-d91b-a7093c57de00/original", + "followers": 1815, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66ab779a9802021fec2d5635c0503c9d63d5ed58", + "etherscanUrl": "https://etherscan.io/address/0x66ab779a9802021fec2d5635c0503c9d63d5ed58", + "xHandle": "mrbriandesign", + "xUrl": "https://twitter.com/mrbriandesign", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14905", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pasha", + "displayName": "Pasha base.eth", + "fid": 14905, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1e67c50-9ae3-4d38-1f4f-7a91ce14b800/rectcrop3", + "followers": 1772, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4d9857937e5a3160614eb432f3f5481001ac3c5", + "etherscanUrl": "https://etherscan.io/address/0xc4d9857937e5a3160614eb432f3f5481001ac3c5", + "xHandle": "tu_khobi", + "xUrl": "https://twitter.com/tu_khobi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15380", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "s0tric.eth", + "displayName": "s0tric 🦠", + "fid": 15380, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71e4c48e-2bec-4f82-509c-fa41b387d700/rectcrop3", + "followers": 1768, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9beadc1297f97fff916a487e49dea1004510c59e", + "etherscanUrl": "https://etherscan.io/address/0x9beadc1297f97fff916a487e49dea1004510c59e", + "xHandle": "s0tric", + "xUrl": "https://twitter.com/s0tric", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16340", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soyboy", + "displayName": "soyboy", + "fid": 16340, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d20e73b-6cae-4052-8474-86a09928e600/original", + "followers": 1764, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8c733886f57e98590800d75795817887dfe8b1d", + "etherscanUrl": "https://etherscan.io/address/0xd8c733886f57e98590800d75795817887dfe8b1d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_280191", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vanakkam", + "displayName": "vanakkam 🛡️🔥", + "fid": 280191, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efde9223-e9e1-4a23-d0cb-879dd7f04c00/original", + "followers": 1756, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bc917c1c633e82586f27eb2372384a69ced92d7", + "etherscanUrl": "https://etherscan.io/address/0x9bc917c1c633e82586f27eb2372384a69ced92d7", + "xHandle": "thiyagarajansi", + "xUrl": "https://twitter.com/thiyagarajansi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_372091", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "manocheer", + "displayName": "manocheer", + "fid": 372091, + "pfpUrl": "https://i.imgur.com/XZtsOWh.png", + "followers": 1753, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x012efd9feeaa8b7e1edf4af9f5fff4b1d9431a7d", + "etherscanUrl": "https://etherscan.io/address/0x012efd9feeaa8b7e1edf4af9f5fff4b1d9431a7d", + "xHandle": "manocheer", + "xUrl": "https://twitter.com/manocheer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2928", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jbird", + "displayName": "jesse", + "fid": 2928, + "pfpUrl": "https://i.imgur.com/w3mf27t.png", + "followers": 1746, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2db90e08dde38b7873e63eb7aed46ea3eded81c9", + "etherscanUrl": "https://etherscan.io/address/0x2db90e08dde38b7873e63eb7aed46ea3eded81c9", + "xHandle": "sudojbird", + "xUrl": "https://twitter.com/sudojbird", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_282926", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "snrcaptain", + "displayName": "snrcaptain.base.eth 🎩🟧", + "fid": 282926, + "pfpUrl": "https://i.imgur.com/G2DbhLZ.jpg", + "followers": 1738, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee8929eef238b60458f5d4ff4be8374fc1671719", + "etherscanUrl": "https://etherscan.io/address/0xee8929eef238b60458f5d4ff4be8374fc1671719", + "xHandle": "snrcaptain2", + "xUrl": "https://twitter.com/snrcaptain2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_438822", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kablat.eth", + "displayName": "HaMid🍖🎩", + "fid": 438822, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae27fad-93a3-4e77-baba-460d17ab7100/original", + "followers": 1733, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x197e2a017969dd7972a0a28ffce67234beafef32", + "etherscanUrl": "https://etherscan.io/address/0x197e2a017969dd7972a0a28ffce67234beafef32", + "xHandle": "hamidkabir0", + "xUrl": "https://twitter.com/hamidkabir0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_223277", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deefs", + "displayName": "Beaver", + "fid": 223277, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0971e2bd-322f-49ee-6116-61f6e70cf400/original", + "followers": 1724, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96a4a274357a6038b3162da2cd29e2338f048f42", + "etherscanUrl": "https://etherscan.io/address/0x96a4a274357a6038b3162da2cd29e2338f048f42", + "xHandle": "trilliumgaming", + "xUrl": "https://twitter.com/trilliumgaming", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_334971", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hoangf", + "displayName": "hoangf.base.eth", + "fid": 334971, + "pfpUrl": "https://i.imgur.com/IRP3GvU.jpg", + "followers": 1720, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f6f8204aac8d697aa6ec20bedc2c293ab3929a1", + "etherscanUrl": "https://etherscan.io/address/0x1f6f8204aac8d697aa6ec20bedc2c293ab3929a1", + "xHandle": "tranhoangh49", + "xUrl": "https://twitter.com/tranhoangh49", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118592", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "keturahm", + "displayName": "Keturah Mamman", + "fid": 1118592, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67ed73b6-b94f-40b8-70a5-b2548ed3ed00/original", + "followers": 1715, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26f2de6be4b13df8b96e7a1a013a1e53b6e5373a", + "etherscanUrl": "https://etherscan.io/address/0x26f2de6be4b13df8b96e7a1a013a1e53b6e5373a", + "xHandle": "mamman57631", + "xUrl": "https://twitter.com/mamman57631", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_982331", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gkash", + "displayName": "Only1Gkash", + "fid": 982331, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a11c800-a24c-49c5-6b3f-136b700f5600/rectcrop3", + "followers": 1707, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe12095e92d9d4d2bee93c81ba355e341e591109d", + "etherscanUrl": "https://etherscan.io/address/0xe12095e92d9d4d2bee93c81ba355e341e591109d", + "xHandle": "only1gkash", + "xUrl": "https://twitter.com/only1gkash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_493333", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trongnghiasky", + "displayName": "Johny", + "fid": 493333, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3f8eaeb-db20-4105-31ad-166790103300/original", + "followers": 1665, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6a3395f8949568d790f442658c22f8b8e82691a", + "etherscanUrl": "https://etherscan.io/address/0xf6a3395f8949568d790f442658c22f8b8e82691a", + "xHandle": "riley_wood61497", + "xUrl": "https://twitter.com/riley_wood61497", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_230185", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rostyslavbortman.eth", + "displayName": "rostyk.eth", + "fid": 230185, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f24dd593-6d8e-499b-b3a6-6b202488a700/original", + "followers": 1631, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17f3c6ef15395a641ac0695b08f0a1eec257f48b", + "etherscanUrl": "https://etherscan.io/address/0x17f3c6ef15395a641ac0695b08f0a1eec257f48b", + "xHandle": "rostyketh", + "xUrl": "https://twitter.com/rostyketh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_388423", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skillabsc", + "displayName": "Skillabsc 🧬", + "fid": 388423, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/236006aa-f694-4fb5-ae41-e99e752e4200/original", + "followers": 1627, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7dcff286f8e45b9a5c31bb990c0007d4ee5f7ec0", + "etherscanUrl": "https://etherscan.io/address/0x7dcff286f8e45b9a5c31bb990c0007d4ee5f7ec0", + "xHandle": "cryptoofclown", + "xUrl": "https://twitter.com/cryptoofclown", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_221326", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vlad-imir", + "displayName": "Vladimir", + "fid": 221326, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cea9cc05-78e0-4a73-79b5-2d7fc3707200/rectcrop3", + "followers": 1614, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x519416e3ad0920f49655e4ad2e1c91d568b67399", + "etherscanUrl": "https://etherscan.io/address/0x519416e3ad0920f49655e4ad2e1c91d568b67399", + "xHandle": "vladimir_fren3", + "xUrl": "https://twitter.com/vladimir_fren3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1278092", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "threeb", + "displayName": "bahriyeli.base.eth", + "fid": 1278092, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b35a7330-dbce-4dae-697b-8000e1e70400/original", + "followers": 1609, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd918d8599bb129b38bd113da1ae6f2024c1526e", + "etherscanUrl": "https://etherscan.io/address/0xcd918d8599bb129b38bd113da1ae6f2024c1526e", + "xHandle": "threeb__", + "xUrl": "https://twitter.com/threeb__", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_866318", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raisulislam.eth", + "displayName": "raisulislam.eth", + "fid": 866318, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd7084ab-ea1d-4fc0-3767-cb21a9bbb900/original", + "followers": 1602, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73f88cf1dab60c7277389e0a7a8fbe8bcf809003", + "etherscanUrl": "https://etherscan.io/address/0x73f88cf1dab60c7277389e0a7a8fbe8bcf809003", + "xHandle": "gaming_rai79094", + "xUrl": "https://twitter.com/gaming_rai79094", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_415400", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ramina13", + "displayName": "Marina Ya", + "fid": 415400, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5104cc7e-2c3f-4826-5498-e86684f5ac00/original", + "followers": 1592, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacd9406ea14545354a07d9211e2abe9e610b999c", + "etherscanUrl": "https://etherscan.io/address/0xacd9406ea14545354a07d9211e2abe9e610b999c", + "xHandle": "_ramina13_", + "xUrl": "https://twitter.com/_ramina13_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_265439", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "universaldada", + "displayName": "universaldada.base.eth", + "fid": 265439, + "pfpUrl": "https://i.imgur.com/am7pNWp.jpg", + "followers": 1588, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52db85d7bf7ea89d441286acab36b249e199f19c", + "etherscanUrl": "https://etherscan.io/address/0x52db85d7bf7ea89d441286acab36b249e199f19c", + "xHandle": "uvdada2020", + "xUrl": "https://twitter.com/uvdada2020", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_300589", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nearxiii", + "displayName": "Nearxiii.sat⚡️", + "fid": 300589, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/edd45e2b-27b3-429e-3717-a991509afa00/rectcrop3", + "followers": 1575, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91a70261884daae78e56a406d45d5c9a913c627d", + "etherscanUrl": "https://etherscan.io/address/0x91a70261884daae78e56a406d45d5c9a913c627d", + "xHandle": "nearxiii", + "xUrl": "https://twitter.com/nearxiii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_286431", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "20220408.eth", + "displayName": "Natcat🎩❤️", + "fid": 286431, + "pfpUrl": "https://i.imgur.com/FS0RwEB.jpg", + "followers": 1554, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fc7332a78b63a15256a2a881da78efbb1438b45", + "etherscanUrl": "https://etherscan.io/address/0x0fc7332a78b63a15256a2a881da78efbb1438b45", + "xHandle": "ghmtoxcl1kli7rh", + "xUrl": "https://twitter.com/ghmtoxcl1kli7rh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_421645", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "btcwin", + "displayName": "Btcwin ", + "fid": 421645, + "pfpUrl": "https://i.imgur.com/EUrwYtH.jpg", + "followers": 1528, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bbc56a80a0cd165f7f622f7b1f2451c8160515d", + "etherscanUrl": "https://etherscan.io/address/0x4bbc56a80a0cd165f7f622f7b1f2451c8160515d", + "xHandle": "bfueiwwk13", + "xUrl": "https://twitter.com/bfueiwwk13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1390332", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tradingzone.base.eth", + "displayName": "BRO ON FARCASTER 🧢", + "fid": 1390332, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0b8e912-f92c-46d3-17c0-716beaf89500/original", + "followers": 1521, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21673ff674aa6cb7dbd30cd0e657ac8426e82965", + "etherscanUrl": "https://etherscan.io/address/0x21673ff674aa6cb7dbd30cd0e657ac8426e82965", + "xHandle": "mdabdullalnayem", + "xUrl": "https://twitter.com/mdabdullalnayem", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8425", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "niknameste.eth", + "displayName": "niknameste", + "fid": 8425, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f2b77f38-e629-4b9d-39b0-372d26a8c900/original", + "followers": 1510, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62e2723f64298b493192e6a2cf01c70f9b8f037d", + "etherscanUrl": "https://etherscan.io/address/0x62e2723f64298b493192e6a2cf01c70f9b8f037d", + "xHandle": "niknameste", + "xUrl": "https://twitter.com/niknameste", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188299", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "katseye.eth", + "displayName": "Lucky🎩", + "fid": 188299, + "pfpUrl": "https://i.imgur.com/EIqkxnG.png", + "followers": 1504, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76786551c9eb05d1e6cbd156004439184270d8a4", + "etherscanUrl": "https://etherscan.io/address/0x76786551c9eb05d1e6cbd156004439184270d8a4", + "xHandle": "totorifuo", + "xUrl": "https://twitter.com/totorifuo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1110524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meedarh", + "displayName": "Meedarh", + "fid": 1110524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e981898-e4c4-4c44-17a6-000a80b01500/original", + "followers": 1503, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07ed950ab4dee9a79d824202e62fd1e59fed62c4", + "etherscanUrl": "https://etherscan.io/address/0x07ed950ab4dee9a79d824202e62fd1e59fed62c4", + "xHandle": "callmeby_1509_", + "xUrl": "https://twitter.com/callmeby_1509_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_736746", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "haba", + "displayName": "VitaliyHab", + "fid": 736746, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fe055d3f-47b7-4c68-42f7-2e687f225500/original", + "followers": 1499, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e96e7d8e7e913f37a417dabd172ca928c163519", + "etherscanUrl": "https://etherscan.io/address/0x3e96e7d8e7e913f37a417dabd172ca928c163519", + "xHandle": "patelalexi55072", + "xUrl": "https://twitter.com/patelalexi55072", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_663832", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fwad", + "displayName": "Fwad", + "fid": 663832, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36b59709-a9d1-4806-7e6c-9fefa7445b00/rectcrop3", + "followers": 1485, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57a7e2b08063d28996a4cc888957edcf2592a499", + "etherscanUrl": "https://etherscan.io/address/0x57a7e2b08063d28996a4cc888957edcf2592a499", + "xHandle": "fwadqamari19", + "xUrl": "https://twitter.com/fwadqamari19", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12569", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hanjiang", + "displayName": "hanjiang🎩", + "fid": 12569, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeicto6doldfjy7nrqxn7jiduw47xs7cmzppjd6mm3mrao4z46asiwq", + "followers": 1471, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf559d14eb05beba73dea1e71a27752a445c2d53", + "etherscanUrl": "https://etherscan.io/address/0xbf559d14eb05beba73dea1e71a27752a445c2d53", + "xHandle": "ghlhchen", + "xUrl": "https://twitter.com/ghlhchen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14871", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "themrsazon", + "displayName": "Mr.Sazón 🌶", + "fid": 14871, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8b790db-defb-411f-cce4-22a21057f600/original", + "followers": 1470, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x320d7265ed32b5b5d035d74be69ace681d37c918", + "etherscanUrl": "https://etherscan.io/address/0x320d7265ed32b5b5d035d74be69ace681d37c918", + "xHandle": "themrsazon", + "xUrl": "https://twitter.com/themrsazon", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_780914", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kingmodaser", + "displayName": "Atreides", + "fid": 780914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9fb4fe7-ee37-42de-f5d6-13b10fb1c000/original", + "followers": 1462, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa011b705efac1fa71304474cd5066fa8db5e27b5", + "etherscanUrl": "https://etherscan.io/address/0xa011b705efac1fa71304474cd5066fa8db5e27b5", + "xHandle": "yousuf_has37548", + "xUrl": "https://twitter.com/yousuf_has37548", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_351194", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrdavid28668", + "displayName": "MR DAVID 🎭🍄🦕", + "fid": 351194, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafkreigpyrrzgtm7qqioypfg43d23l734gccedkr5ikb4vfoozyd6ubedi", + "followers": 1459, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e7bff4ec9095bfb296a8c2b8f1fe81a0219f75b", + "etherscanUrl": "https://etherscan.io/address/0x2e7bff4ec9095bfb296a8c2b8f1fe81a0219f75b", + "xHandle": "mrdavid286", + "xUrl": "https://twitter.com/mrdavid286", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15086", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alby", + "displayName": "Alby 🎩🧬", + "fid": 15086, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/931494a1-e66f-4239-437b-d12b396fca00/original", + "followers": 1442, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacbf90a3f03a34faa8235854ca6c3ee0cc8c7546", + "etherscanUrl": "https://etherscan.io/address/0xacbf90a3f03a34faa8235854ca6c3ee0cc8c7546", + "xHandle": "m2ahki", + "xUrl": "https://twitter.com/m2ahki", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_316090", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bithopper", + "displayName": "⚙️Bithopper⚙️", + "fid": 316090, + "pfpUrl": "https://i.imgur.com/2i6SlhB.png", + "followers": 1441, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d77878512de582b341d50b755c4fb5bac4bca4c", + "etherscanUrl": "https://etherscan.io/address/0x9d77878512de582b341d50b755c4fb5bac4bca4c", + "xHandle": "aidanzx55", + "xUrl": "https://twitter.com/aidanzx55", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_505214", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jarif", + "displayName": "Aila Ahlima", + "fid": 505214, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762444615/d82aca22-9676-4a9a-b0c7-3b0d63b12aaf.jpg.jpg", + "followers": 1433, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1aefd245be777943c31ea94dfd694cf081120483", + "etherscanUrl": "https://etherscan.io/address/0x1aefd245be777943c31ea94dfd694cf081120483", + "xHandle": "neamulrabby", + "xUrl": "https://twitter.com/neamulrabby", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_207400", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dev0ps", + "displayName": "dev0ps ~ coastalconsulting.eth ~", + "fid": 207400, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc663464-87e4-42c7-e000-9e9f854bb000/rectcrop3", + "followers": 1431, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x141851ca7ffbead76491b365c3515bf5bfd9efed", + "etherscanUrl": "https://etherscan.io/address/0x141851ca7ffbead76491b365c3515bf5bfd9efed", + "xHandle": "global_robo", + "xUrl": "https://twitter.com/global_robo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_427669", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hamedmbo", + "displayName": "Hamedmb", + "fid": 427669, + "pfpUrl": "https://i.imgur.com/TopuMHD.jpg", + "followers": 1431, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b6de0800aa87829e6dd15129968d0ddbc6a2712", + "etherscanUrl": "https://etherscan.io/address/0x3b6de0800aa87829e6dd15129968d0ddbc6a2712", + "xHandle": "hamedmbo", + "xUrl": "https://twitter.com/hamedmbo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3100", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xmtp", + "displayName": "XMTP", + "fid": 3100, + "pfpUrl": "https://i.imgur.com/Xxu3vA3.jpg", + "followers": 1417, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf58447b87598158c8aa9ce2e1bb4d1986ac78db1", + "etherscanUrl": "https://etherscan.io/address/0xf58447b87598158c8aa9ce2e1bb4d1986ac78db1", + "xHandle": "xmtp_", + "xUrl": "https://twitter.com/xmtp_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_516933", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "annye", + "displayName": "NickyStixx.eth", + "fid": 516933, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53f5bca0-f9ff-4b1d-ab30-cce2a4400b00/original", + "followers": 1399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88be8ae29699d62cc8818c48ef4dace4ed140273", + "etherscanUrl": "https://etherscan.io/address/0x88be8ae29699d62cc8818c48ef4dace4ed140273", + "xHandle": "angelqueen31155", + "xUrl": "https://twitter.com/angelqueen31155", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_292934", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bluechipstocks", + "displayName": "Lars J.", + "fid": 292934, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b87b16c1-b443-477d-b25f-38e80c244400/rectcrop3", + "followers": 1394, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef86a797e137ebe39d905fff1a27fbf2afc7d936", + "etherscanUrl": "https://etherscan.io/address/0xef86a797e137ebe39d905fff1a27fbf2afc7d936", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257704", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bostne", + "displayName": "botmaster.base.eth", + "fid": 257704, + "pfpUrl": "https://i.imgur.com/dwuFkBR.gif", + "followers": 1378, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3e915c5370ae3e70b44f831858611d464607ede", + "etherscanUrl": "https://etherscan.io/address/0xe3e915c5370ae3e70b44f831858611d464607ede", + "xHandle": "bosshehe0", + "xUrl": "https://twitter.com/bosshehe0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16236", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sttsm.eth", + "displayName": "STTSM ⌐◨-◨", + "fid": 16236, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e2769ab-a640-4298-ea4d-9a9ece090f00/original", + "followers": 1373, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa7d0518841640dd9a1dd7f31646260d1ebe8f02", + "etherscanUrl": "https://etherscan.io/address/0xaa7d0518841640dd9a1dd7f31646260d1ebe8f02", + "xHandle": "sttsm_eth", + "xUrl": "https://twitter.com/sttsm_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_419242", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arzakikio.eth", + "displayName": "arzakikio.eth", + "fid": 419242, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf070bb1-0b1f-4901-2c24-1356c47a4400/original", + "followers": 1372, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf65277dea11e8edcf82519ab84fb56ef04be586", + "etherscanUrl": "https://etherscan.io/address/0xcf65277dea11e8edcf82519ab84fb56ef04be586", + "xHandle": "arzakikio", + "xUrl": "https://twitter.com/arzakikio", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7263", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nuconomy.eth", + "displayName": "nuconomy.⌐◨-◨", + "fid": 7263, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cc18bb7-ab52-407a-a00f-7c63c537d700/original", + "followers": 1366, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8da555dcb53e65b34a5c86360259601312e59ebb", + "etherscanUrl": "https://etherscan.io/address/0x8da555dcb53e65b34a5c86360259601312e59ebb", + "xHandle": "nuconomist", + "xUrl": "https://twitter.com/nuconomist", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18229", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nicom", + "displayName": "Nico", + "fid": 18229, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/689a24ab-af57-491c-c4ab-473d25671b00/rectcrop3", + "followers": 1362, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2aa6f3ddc300df0b36db8024d7153770a1d40784", + "etherscanUrl": "https://etherscan.io/address/0x2aa6f3ddc300df0b36db8024d7153770a1d40784", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18756", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "optichad", + "displayName": "LekeboyxCrypt", + "fid": 18756, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fff540af-5227-4b51-e42d-72b058dfef00/original", + "followers": 1347, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x439356b793aa7f838f10423fa37b97d7114a792e", + "etherscanUrl": "https://etherscan.io/address/0x439356b793aa7f838f10423fa37b97d7114a792e", + "xHandle": "lekeboyxcrypt", + "xUrl": "https://twitter.com/lekeboyxcrypt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_332816", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "flipping", + "displayName": "FlippingMfer", + "fid": 332816, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b69e66dc-dfae-4ffd-bdd4-46ce9c3a3200/rectcrop3", + "followers": 1345, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bc02b53375019e6f212de235d053cac0d36213f", + "etherscanUrl": "https://etherscan.io/address/0x4bc02b53375019e6f212de235d053cac0d36213f", + "xHandle": "flippingmfer", + "xUrl": "https://twitter.com/flippingmfer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_843635", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bedebah", + "displayName": "𝕰𝖒𝖔𝖈𝖟𝖔", + "fid": 843635, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02188b9b-17b4-4c49-9823-772db736e500/original", + "followers": 1344, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6ff471f3a96a718e44a3ccd4c956d518a8b11e5", + "etherscanUrl": "https://etherscan.io/address/0xe6ff471f3a96a718e44a3ccd4c956d518a8b11e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_399675", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trentonfunt", + "displayName": "Trent🎩🍄🐹", + "fid": 399675, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a30c85cf-3d13-4e8e-8ee9-fb7a963f9900/rectcrop3", + "followers": 1339, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa5735c78896966ad6fc899f1f359a61a074387cb", + "etherscanUrl": "https://etherscan.io/address/0xa5735c78896966ad6fc899f1f359a61a074387cb", + "xHandle": "tearhuntt", + "xUrl": "https://twitter.com/tearhuntt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_365010", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "imcool.base.eth", + "displayName": "Cool", + "fid": 365010, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6be57551-41f1-450b-621f-ab8db31b7600/original", + "followers": 1335, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad80780f3c02b141377c089083cd6f241433c5f3", + "etherscanUrl": "https://etherscan.io/address/0xad80780f3c02b141377c089083cd6f241433c5f3", + "xHandle": "coolonbase", + "xUrl": "https://twitter.com/coolonbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251545", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "usmanny5", + "displayName": "Ibrahim Usman base.eth", + "fid": 251545, + "pfpUrl": "https://i.imgur.com/qIB3jhK.jpg", + "followers": 1332, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16b16c1c701f297ecf3a290781b37058e9a85e82", + "etherscanUrl": "https://etherscan.io/address/0x16b16c1c701f297ecf3a290781b37058e9a85e82", + "xHandle": "usmanny001", + "xUrl": "https://twitter.com/usmanny001", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_320618", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blassa", + "displayName": "blassa.base.eth", + "fid": 320618, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17c95936-fb53-4f46-9558-54e944e60800/original", + "followers": 1329, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5bfdc6d880cc0d1ed09e1408fd93091edc167460", + "etherscanUrl": "https://etherscan.io/address/0x5bfdc6d880cc0d1ed09e1408fd93091edc167460", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21191", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dnznjuan", + "displayName": "Denizen Juan", + "fid": 21191, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49ca8d2b-e9dc-490c-9fb9-91946dabad00/original", + "followers": 1329, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49375ce55a19c2ad51e42ca593a1c2127bebd578", + "etherscanUrl": "https://etherscan.io/address/0x49375ce55a19c2ad51e42ca593a1c2127bebd578", + "xHandle": "dnznjuan", + "xUrl": "https://twitter.com/dnznjuan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_239263", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "looktarn", + "displayName": "Looktarn​.base.eth 🎩🔮", + "fid": 239263, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a303db4c-97e8-4ecd-7b49-b54518f95900/original", + "followers": 1326, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ffa8893b43f697325e533faedca1ea39d44c5c3", + "etherscanUrl": "https://etherscan.io/address/0x7ffa8893b43f697325e533faedca1ea39d44c5c3", + "xHandle": "looktanl_p", + "xUrl": "https://twitter.com/looktanl_p", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_226372", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "billbandito", + "displayName": "billbandito 🎩", + "fid": 226372, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee08238e-8853-4681-bc71-30e3fe211500/original", + "followers": 1310, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19c605e89a64b231f1551f72de310e38e9bba5c4", + "etherscanUrl": "https://etherscan.io/address/0x19c605e89a64b231f1551f72de310e38e9bba5c4", + "xHandle": "billbandito", + "xUrl": "https://twitter.com/billbandito", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257992", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "merahputih.eth", + "displayName": "merahputih.base.eth", + "fid": 257992, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87f44e20-809f-405e-c077-6b30d6f68c00/original", + "followers": 1308, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4c45f8c8d7c711ac4c8fd36024a55dfa2793f2b", + "etherscanUrl": "https://etherscan.io/address/0xe4c45f8c8d7c711ac4c8fd36024a55dfa2793f2b", + "xHandle": "fathansaif", + "xUrl": "https://twitter.com/fathansaif", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_315225", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nmnima", + "displayName": "Nima 🎩 🔵 🍖 🔮🎭", + "fid": 315225, + "pfpUrl": "https://i.imgur.com/W0YF5Pp.jpg", + "followers": 1305, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2667b25119e38e2d308ea3685d67a38a4f8021a5", + "etherscanUrl": "https://etherscan.io/address/0x2667b25119e38e2d308ea3685d67a38a4f8021a5", + "xHandle": "voltaj03", + "xUrl": "https://twitter.com/voltaj03", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307600", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shazed", + "displayName": "JANNIE", + "fid": 307600, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmfH3dHRcN2qK8VRKNLxcRimafXkxEt7N7kKNFGp1STpTt?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 1303, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc9e092fb401db10191b7486cfa12d48cc2ca996", + "etherscanUrl": "https://etherscan.io/address/0xfc9e092fb401db10191b7486cfa12d48cc2ca996", + "xHandle": "honestriku15011", + "xUrl": "https://twitter.com/honestriku15011", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307182", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dixon", + "displayName": "XØXØ", + "fid": 307182, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d727842-9df6-4795-7385-19b95cefc100/rectcrop3", + "followers": 1302, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e46c718130e06741bb14506dbd804100b440586", + "etherscanUrl": "https://etherscan.io/address/0x9e46c718130e06741bb14506dbd804100b440586", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_371249", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yashtech.eth", + "displayName": "Noname", + "fid": 371249, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2e1c4d7-b888-4810-fb83-1d6672159a00/original", + "followers": 1299, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe53bf0821cda9e79d49ec2191d80a989bcda2b99", + "etherscanUrl": "https://etherscan.io/address/0xe53bf0821cda9e79d49ec2191d80a989bcda2b99", + "xHandle": "serdarysbyr", + "xUrl": "https://twitter.com/serdarysbyr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_209707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "greentime1", + "displayName": "greentime1", + "fid": 209707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/943265a7-295e-4d73-16ac-419a9b562900/original", + "followers": 1286, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x86a3d710c42f568fa165d39c3184f41c9d179470", + "etherscanUrl": "https://etherscan.io/address/0x86a3d710c42f568fa165d39c3184f41c9d179470", + "xHandle": "_greentime", + "xUrl": "https://twitter.com/_greentime", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_878433", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "untitled1", + "displayName": "untitled1.base.eth", + "fid": 878433, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73282f84-afad-4ac8-cf9d-0c31c8440600/original", + "followers": 1281, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43c9ca9e89b7a789c63f0cae41377c8e58036bed", + "etherscanUrl": "https://etherscan.io/address/0x43c9ca9e89b7a789c63f0cae41377c8e58036bed", + "xHandle": "saptra_23", + "xUrl": "https://twitter.com/saptra_23", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_328716", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bamland", + "displayName": "Azita 🌹👌🎩 🔵", + "fid": 328716, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e6f1cd6-ba49-42cf-9733-dd29e709ed00/original", + "followers": 1277, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb0c6f24c9bb5f12783e143855fe74779389a845", + "etherscanUrl": "https://etherscan.io/address/0xcb0c6f24c9bb5f12783e143855fe74779389a845", + "xHandle": "sibgol3", + "xUrl": "https://twitter.com/sibgol3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_207750", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cashlax", + "displayName": "Cash", + "fid": 207750, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/810d162c-b938-4725-1612-febbe8c1aa00/original", + "followers": 1277, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x974df0be1c41f1da0df3f8a27521c35f41066b5d", + "etherscanUrl": "https://etherscan.io/address/0x974df0be1c41f1da0df3f8a27521c35f41066b5d", + "xHandle": "cashlaxx", + "xUrl": "https://twitter.com/cashlaxx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_24204", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ozengk.eth", + "displayName": "ZAN 🎩 🥚 🧬", + "fid": 24204, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ae51bff-70b0-4114-4497-da254faa2f00/original", + "followers": 1272, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x943962699b2f223848fbd996d8be3fdd98117699", + "etherscanUrl": "https://etherscan.io/address/0x943962699b2f223848fbd996d8be3fdd98117699", + "xHandle": "ozengk_", + "xUrl": "https://twitter.com/ozengk_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1086581", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pablodey4you", + "displayName": "Pabs", + "fid": 1086581, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a4e51b9-55c9-478c-1b7e-5e174aa72a00/rectcrop3", + "followers": 1268, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4566d57011682282e4251014f3422abb91727865", + "etherscanUrl": "https://etherscan.io/address/0x4566d57011682282e4251014f3422abb91727865", + "xHandle": "pabsdey4you", + "xUrl": "https://twitter.com/pabsdey4you", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_789298", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lqthiennhat168", + "displayName": "happy world in you", + "fid": 789298, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58bc836f-9f84-4fe9-a602-aab727106400/original", + "followers": 1263, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x578b13c82e2ece3c025246360f3b09fc02a752fb", + "etherscanUrl": "https://etherscan.io/address/0x578b13c82e2ece3c025246360f3b09fc02a752fb", + "xHandle": "thienhat168", + "xUrl": "https://twitter.com/thienhat168", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192426", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "spectrebtc2008", + "displayName": "SpectreBTC2008🦋", + "fid": 192426, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8cb7c59-5d42-455b-c2ed-5b8c842aa900/original", + "followers": 1261, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9cb28caf662c5ce74725d349b81e74bbc4ae7c8c", + "etherscanUrl": "https://etherscan.io/address/0x9cb28caf662c5ce74725d349b81e74bbc4ae7c8c", + "xHandle": "skynyc0", + "xUrl": "https://twitter.com/skynyc0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_289331", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "u7", + "displayName": "X0U7", + "fid": 289331, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/QmWvnjr1M6CejnhcwZUN6VBqhCor6HzL7UCzDNBEDBKu2H", + "followers": 1257, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19b118c2fa8b71b0d5ab29dfd7341d085a25f9d6", + "etherscanUrl": "https://etherscan.io/address/0x19b118c2fa8b71b0d5ab29dfd7341d085a25f9d6", + "xHandle": "uzy_assoebangy", + "xUrl": "https://twitter.com/uzy_assoebangy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_319465", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stonednouns", + "displayName": "Stoned Nouns ⌐◨-◨", + "fid": 319465, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80bf4298-29cd-4ee5-10cc-f1acbd5c6f00/rectcrop3", + "followers": 1252, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcfc453b25f6cd83e124c66c0e711e22ace0314c1", + "etherscanUrl": "https://etherscan.io/address/0xcfc453b25f6cd83e124c66c0e711e22ace0314c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_259514", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohsinbnb", + "displayName": "base.eth", + "fid": 259514, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/purple.jpg", + "followers": 1237, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebec03998757e7675270f2dbc8f913149fe65d66", + "etherscanUrl": "https://etherscan.io/address/0xebec03998757e7675270f2dbc8f913149fe65d66", + "xHandle": "mohsin78003", + "xUrl": "https://twitter.com/mohsin78003", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210841", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bandarbtc", + "displayName": "bandarbtc.base.eth", + "fid": 210841, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeihpwcunaltj6flihfbbftgcj332bxtiz73ddicoculz2pgfyoapbi", + "followers": 1234, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38e67bcff43a797a5290f976f78ec0df62aba0a6", + "etherscanUrl": "https://etherscan.io/address/0x38e67bcff43a797a5290f976f78ec0df62aba0a6", + "xHandle": "bandar_btc", + "xUrl": "https://twitter.com/bandar_btc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103506", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "callguy", + "displayName": "Capt.", + "fid": 1103506, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1b916777-ea35-4549-c103-88610ca5a000/original", + "followers": 1232, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x92650ea5154be475db55090c7ce85b999c53ae84", + "etherscanUrl": "https://etherscan.io/address/0x92650ea5154be475db55090c7ce85b999c53ae84", + "xHandle": "thatcallguy", + "xUrl": "https://twitter.com/thatcallguy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_645468", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "boyly", + "displayName": "TheBoyly", + "fid": 645468, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d29490e3-0379-43df-5503-96ce82bc2700/original", + "followers": 1232, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd06e6cd41a8524c2f13515fcbcc384137d7da2e0", + "etherscanUrl": "https://etherscan.io/address/0xd06e6cd41a8524c2f13515fcbcc384137d7da2e0", + "xHandle": "theboyly", + "xUrl": "https://twitter.com/theboyly", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1047423", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adityaranvijay", + "displayName": "adityaranvijay.base.eth", + "fid": 1047423, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5ba3018-35d0-4b72-643c-d623e008b400/original", + "followers": 1231, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a0ae1369aa75d37c98af2efb8c3e7c0b658d6ee", + "etherscanUrl": "https://etherscan.io/address/0x3a0ae1369aa75d37c98af2efb8c3e7c0b658d6ee", + "xHandle": "adityaranv27789", + "xUrl": "https://twitter.com/adityaranv27789", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_399399", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whalesofi", + "displayName": "Whale.base.eth", + "fid": 399399, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/179feaca-00f4-49e6-e581-1294a5c5c800/original", + "followers": 1229, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf103461c97f5aa917dc37d242655b285fb0acd1e", + "etherscanUrl": "https://etherscan.io/address/0xf103461c97f5aa917dc37d242655b285fb0acd1e", + "xHandle": "whale_sofi", + "xUrl": "https://twitter.com/whale_sofi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089844", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "josephineoriaku", + "displayName": "Josephine Oriaku®", + "fid": 1089844, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebe913d9-5bfc-4715-e6eb-08e8575f0f00/rectcrop3", + "followers": 1212, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc54604b9e0a1449644ea0d978fa099291f09935f", + "etherscanUrl": "https://etherscan.io/address/0xc54604b9e0a1449644ea0d978fa099291f09935f", + "xHandle": "josephineoriak_", + "xUrl": "https://twitter.com/josephineoriak_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_327687", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mutianz28", + "displayName": "itsmutia.eth", + "fid": 327687, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/608593dc-7a23-4c42-3868-be70798c1d00/original", + "followers": 1210, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c0917a0373daa1771467fb32e1fde28a3f7eef7", + "etherscanUrl": "https://etherscan.io/address/0x6c0917a0373daa1771467fb32e1fde28a3f7eef7", + "xHandle": "itsmutiaaaeth", + "xUrl": "https://twitter.com/itsmutiaaaeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1194", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elistonberg", + "displayName": "Eli Stonberg", + "fid": 1194, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b28c3dd-ef00-4506-d353-083fc6882c00/original", + "followers": 1204, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcabf1056fc70943a62334214006f17523df10145", + "etherscanUrl": "https://etherscan.io/address/0xcabf1056fc70943a62334214006f17523df10145", + "xHandle": "elistonberg", + "xUrl": "https://twitter.com/elistonberg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_262016", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nikug", + "displayName": "xNik", + "fid": 262016, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81298098-6817-49e8-690f-f70f06605a00/original", + "followers": 1200, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb97714f6bf061d68ec6872d59fdad39e4f447e04", + "etherscanUrl": "https://etherscan.io/address/0xb97714f6bf061d68ec6872d59fdad39e4f447e04", + "xHandle": "jackn1x", + "xUrl": "https://twitter.com/jackn1x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_259173", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anfken", + "displayName": "anfken.base.eth", + "fid": 259173, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6693cc89-8afc-483a-6d62-8a5452da0e00/original", + "followers": 1198, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8ca77284034e40ab4be2051f771b79d8cc38cf5", + "etherscanUrl": "https://etherscan.io/address/0xd8ca77284034e40ab4be2051f771b79d8cc38cf5", + "xHandle": "0xbken", + "xUrl": "https://twitter.com/0xbken", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082035", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crypto1claim", + "displayName": "Crypto Claim🟦🟣", + "fid": 1082035, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2320b1f-91cf-483f-a57c-cbf344c05900/original", + "followers": 1198, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7cc6c8b78844732953fbe92771dfccfce3ec301a", + "etherscanUrl": "https://etherscan.io/address/0x7cc6c8b78844732953fbe92771dfccfce3ec301a", + "xHandle": "crypto_cla_im", + "xUrl": "https://twitter.com/crypto_cla_im", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_494766", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kkknight-artsss", + "displayName": "Knight_Arts", + "fid": 494766, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f116c45-05cf-4c9b-6988-e59db0b5b800/rectcrop3", + "followers": 1197, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa670f9b94376371c5c3b04304835ba50f7bf9261", + "etherscanUrl": "https://etherscan.io/address/0xa670f9b94376371c5c3b04304835ba50f7bf9261", + "xHandle": "kkknight__artss", + "xUrl": "https://twitter.com/kkknight__artss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_677707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oyale", + "displayName": "Daniel Oyale Emmnanuelaudu", + "fid": 677707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95906735-e6c0-4588-cfe4-2a683ba64c00/original", + "followers": 1197, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbcebe0382ae0a85afc1dc9450f323fa48c2fd96", + "etherscanUrl": "https://etherscan.io/address/0xbbcebe0382ae0a85afc1dc9450f323fa48c2fd96", + "xHandle": "danoyale", + "xUrl": "https://twitter.com/danoyale", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16355", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nirry.eth", + "displayName": "Nirry Nakiri", + "fid": 16355, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f5c10c0-8811-4e2d-6c2a-99d959b4fb00/original", + "followers": 1194, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c161687cf46521def2aff2ffa9130d2d6d2c7b5", + "etherscanUrl": "https://etherscan.io/address/0x1c161687cf46521def2aff2ffa9130d2d6d2c7b5", + "xHandle": "nirryxbt", + "xUrl": "https://twitter.com/nirryxbt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1025147", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "darkragelight.eth", + "displayName": "darkragelight.eth", + "fid": 1025147, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e24e3b1a-8436-49c9-ec3e-06c5f0a51900/original", + "followers": 1191, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30a1c31e0685703626c290bed941eb7627d697db", + "etherscanUrl": "https://etherscan.io/address/0x30a1c31e0685703626c290bed941eb7627d697db", + "xHandle": "darkragelight", + "xUrl": "https://twitter.com/darkragelight", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1023927", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "saqib.base.eth", + "displayName": "Saqib", + "fid": 1023927, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce7b10f4-e22f-4e54-2e7c-21e644c3ba00/original", + "followers": 1180, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57daec3c41199fc5c9b7fa46bd7ace71f53509eb", + "etherscanUrl": "https://etherscan.io/address/0x57daec3c41199fc5c9b7fa46bd7ace71f53509eb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23887", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "metauce.eth", + "displayName": "Degen教父🎩", + "fid": 23887, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4a4f586-d49d-4b5c-eb56-1b14a8cc9900/original", + "followers": 1175, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe967f46ead13b2b697338e45d8b2a10151ae5671", + "etherscanUrl": "https://etherscan.io/address/0xe967f46ead13b2b697338e45d8b2a10151ae5671", + "xHandle": "yufang_eth", + "xUrl": "https://twitter.com/yufang_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_759540", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "homohugh", + "displayName": "$.C.U.M. ILLIONAIRE", + "fid": 759540, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a3dd175-78fb-459e-532b-482228664200/original", + "followers": 1164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x283de6b0680367210a41e4847f48c6bd746517b1", + "etherscanUrl": "https://etherscan.io/address/0x283de6b0680367210a41e4847f48c6bd746517b1", + "xHandle": "hughspenxer", + "xUrl": "https://twitter.com/hughspenxer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16075", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "myusuf", + "displayName": "Mohammed Yusuf 🧬", + "fid": 16075, + "pfpUrl": "https://i.imgur.com/QmrO9My.jpg", + "followers": 1161, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x878facc8dcf1a37aa7d4f145fe6e0cc5c0ab3343", + "etherscanUrl": "https://etherscan.io/address/0x878facc8dcf1a37aa7d4f145fe6e0cc5c0ab3343", + "xHandle": "pf_yusuf", + "xUrl": "https://twitter.com/pf_yusuf", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_496578", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "the-collective.eth", + "displayName": "ACE Family Management", + "fid": 496578, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b46bef26-9809-41dc-46c1-0e5a91105d00/original", + "followers": 1158, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3cd7261f2515c815d2bc0bc509ff38e45e05d6d", + "etherscanUrl": "https://etherscan.io/address/0xf3cd7261f2515c815d2bc0bc509ff38e45e05d6d", + "xHandle": "4_tran_inc", + "xUrl": "https://twitter.com/4_tran_inc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_292291", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "olorunsniper", + "displayName": "1USD BASE", + "fid": 292291, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/052ffc17-e0ca-4c88-1000-e687eff72d00/original", + "followers": 1148, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b54d4a2f00fb05e86c4eee772529f484353e885", + "etherscanUrl": "https://etherscan.io/address/0x7b54d4a2f00fb05e86c4eee772529f484353e885", + "xHandle": "0x1usdbase", + "xUrl": "https://twitter.com/0x1usdbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_506958", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ikaaa", + "displayName": "G€π&J°🎭🍖⚡🎩", + "fid": 506958, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9265adbe-cf17-4223-252a-736a6cf7a900/rectcrop3", + "followers": 1140, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a2283ba2de94e6adb05833711312f7454cd4dd7", + "etherscanUrl": "https://etherscan.io/address/0x8a2283ba2de94e6adb05833711312f7454cd4dd7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_193960", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kaliki", + "displayName": "Kaliki", + "fid": 193960, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e156a12c-5a49-4483-3c46-fd4239d21100/rectcrop3", + "followers": 1137, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe352f7c2e46b72a5a14339868425dc5037fb209c", + "etherscanUrl": "https://etherscan.io/address/0xe352f7c2e46b72a5a14339868425dc5037fb209c", + "xHandle": "chisnusorn", + "xUrl": "https://twitter.com/chisnusorn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_264668", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bonux", + "displayName": "Bonux", + "fid": 264668, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66b8324b-795d-426c-a975-121dde75be00/original", + "followers": 1134, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e4e5ea537ce7e79b8a0fc4f0cb520e9b8b5dae5", + "etherscanUrl": "https://etherscan.io/address/0x5e4e5ea537ce7e79b8a0fc4f0cb520e9b8b5dae5", + "xHandle": "samuelcheq1", + "xUrl": "https://twitter.com/samuelcheq1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nebula", + "displayName": "꙲", + "fid": 1098, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca7e3d28-a369-48db-c5dd-b1036ada6900/original", + "followers": 1128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d27a8fc61d233eb37c0b8509c734a2bcda4e53f", + "etherscanUrl": "https://etherscan.io/address/0x5d27a8fc61d233eb37c0b8509c734a2bcda4e53f", + "xHandle": "wrongnebula", + "xUrl": "https://twitter.com/wrongnebula", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_859268", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fx1-faucet", + "displayName": "Fx1 Digital Hubs", + "fid": 859268, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/caa81e61-9c76-4f79-7338-b419a2d74300/original", + "followers": 1122, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb11e4a95941393d96b2b13f8de8663c302713e79", + "etherscanUrl": "https://etherscan.io/address/0xb11e4a95941393d96b2b13f8de8663c302713e79", + "xHandle": "fx1_hubs", + "xUrl": "https://twitter.com/fx1_hubs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mesutgulecen", + "displayName": "Mesut", + "fid": 212401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/166e738f-bc93-4cf9-8fd6-80f32da13c00/original", + "followers": 1119, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6aecac7906a49761da53094c0dfd6c906e39e18", + "etherscanUrl": "https://etherscan.io/address/0xf6aecac7906a49761da53094c0dfd6c906e39e18", + "xHandle": "mesutgulecen", + "xUrl": "https://twitter.com/mesutgulecen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_784230", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tormbreakeer", + "displayName": "tormbreaker 🧬", + "fid": 784230, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98fd7ba6-fe54-4b09-8035-c26b18405c00/original", + "followers": 1115, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e934baa19239d0bee3f36785efbb8fcee3b2973", + "etherscanUrl": "https://etherscan.io/address/0x6e934baa19239d0bee3f36785efbb8fcee3b2973", + "xHandle": "flash0599", + "xUrl": "https://twitter.com/flash0599", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214250", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xicortm", + "displayName": "Xicor 🎩🔵", + "fid": 214250, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43db540b-97ba-47d0-593e-efe970c0be00/original", + "followers": 1113, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76c6ed678c217f78c460302cd40fac593e73edf2", + "etherscanUrl": "https://etherscan.io/address/0x76c6ed678c217f78c460302cd40fac593e73edf2", + "xHandle": "xicortm", + "xUrl": "https://twitter.com/xicortm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_279711", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "salimmolla", + "displayName": "Salim Molla", + "fid": 279711, + "pfpUrl": "https://i.imgur.com/yRMQyIG.jpg", + "followers": 1110, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d26d2715d7c9f3fd5c24d3ee5ac39124a069887", + "etherscanUrl": "https://etherscan.io/address/0x4d26d2715d7c9f3fd5c24d3ee5ac39124a069887", + "xHandle": "salimmolla08", + "xUrl": "https://twitter.com/salimmolla08", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257363", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "charles200", + "displayName": "Charles200", + "fid": 257363, + "pfpUrl": "https://i2mq7oiogcmc5eyo6u4spaj4nho2rcgcfqsqekehwieatnsukmda.arweave.net/RpkPuQ4wmC6TDvU5J4E8ad2oiMIsJQIoh7IICbZUUwY/", + "followers": 1108, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c1a03887506bd28eda6a9bcdd175ee71ebdb1e8", + "etherscanUrl": "https://etherscan.io/address/0x9c1a03887506bd28eda6a9bcdd175ee71ebdb1e8", + "xHandle": "imelda_100", + "xUrl": "https://twitter.com/imelda_100", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_514113", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eliasvm.eth", + "displayName": "Elias VM", + "fid": 514113, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4ae7651-acc0-4fe7-0c0c-a37a3ac3d500/original", + "followers": 1104, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd87efb74597e47fe3b0c8cfd4c1262baafa7b4da", + "etherscanUrl": "https://etherscan.io/address/0xd87efb74597e47fe3b0c8cfd4c1262baafa7b4da", + "xHandle": "_eliasvm", + "xUrl": "https://twitter.com/_eliasvm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2770", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "agaperste-", + "displayName": "Jackie | agaperste 🎩", + "fid": 2770, + "pfpUrl": "https://i.imgur.com/qqB7Wuk.jpg", + "followers": 1099, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb10f35351ff21bb81dc02d4fd901ac5ae34e8dc4", + "etherscanUrl": "https://etherscan.io/address/0xb10f35351ff21bb81dc02d4fd901ac5ae34e8dc4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_882532", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "obastee", + "displayName": "OBASTEE CREATIVITY", + "fid": 882532, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41bfd6b7-4b58-4d47-81a4-d59576322f00/rectcrop3", + "followers": 1091, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e43d92e6bc0bfdda0da3d8396c16570195e1e66", + "etherscanUrl": "https://etherscan.io/address/0x7e43d92e6bc0bfdda0da3d8396c16570195e1e66", + "xHandle": "obanewa2244", + "xUrl": "https://twitter.com/obanewa2244", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_342592", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amanullah", + "displayName": "Amanullah", + "fid": 342592, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ea05593-c6cd-4d75-e558-2731e9a52900/original", + "followers": 1088, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf5648975108b4fc61e08722d2011c93318d2ca2", + "etherscanUrl": "https://etherscan.io/address/0xdf5648975108b4fc61e08722d2011c93318d2ca2", + "xHandle": "crypto24t", + "xUrl": "https://twitter.com/crypto24t", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_331877", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mbarto", + "displayName": "Mbarto", + "fid": 331877, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/536dd257-a750-4e0e-6783-568a2c2f4100/original", + "followers": 1088, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd22b8ec5af086ea670f700b039520e30aca2ed0", + "etherscanUrl": "https://etherscan.io/address/0xcd22b8ec5af086ea670f700b039520e30aca2ed0", + "xHandle": "satoshibrt2", + "xUrl": "https://twitter.com/satoshibrt2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1279", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hellozeck.eth", + "displayName": "zeck", + "fid": 1279, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e09facb-7d1e-4e3b-d266-a6bb412c3500/original", + "followers": 1086, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x82eee79c4d54dcfb61ae6590cc0bbdcd01a5e20e", + "etherscanUrl": "https://etherscan.io/address/0x82eee79c4d54dcfb61ae6590cc0bbdcd01a5e20e", + "xHandle": "zeckxyz", + "xUrl": "https://twitter.com/zeckxyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1057524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "imanuelbuchi", + "displayName": "iManuelBuchi", + "fid": 1057524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2dabad7e-097e-4679-9554-486065f0a700/original", + "followers": 1083, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x25484005832f53c667befd0224a388bbf6010d3f", + "etherscanUrl": "https://etherscan.io/address/0x25484005832f53c667befd0224a388bbf6010d3f", + "xHandle": "imanuelbuchi", + "xUrl": "https://twitter.com/imanuelbuchi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_599407", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rachna", + "displayName": "Rachna", + "fid": 599407, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e704f62-edec-4d69-5cdd-4097ff0bd900/rectcrop3", + "followers": 1072, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4500e809d028d7f302c13962b6b5240c7538fd33", + "etherscanUrl": "https://etherscan.io/address/0x4500e809d028d7f302c13962b6b5240c7538fd33", + "xHandle": "itmerachna", + "xUrl": "https://twitter.com/itmerachna", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_248958", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptocrazyboy", + "displayName": "CryptoCrazyBoy_", + "fid": 248958, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04a1e63b-0e46-47d2-b9bd-c914464a9f00/original", + "followers": 1068, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52edb5afc9b84dde0ca5c9ab3381308b06973f29", + "etherscanUrl": "https://etherscan.io/address/0x52edb5afc9b84dde0ca5c9ab3381308b06973f29", + "xHandle": "0xrzki", + "xUrl": "https://twitter.com/0xrzki", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_248558", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rapsh4.eth", + "displayName": "rapsh base.eth", + "fid": 248558, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f1fe032-23d9-4d88-52a2-e084b75f0d00/original", + "followers": 1060, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd149027fda1a2a290b891ecbd1559d9acaeb2ce", + "etherscanUrl": "https://etherscan.io/address/0xdd149027fda1a2a290b891ecbd1559d9acaeb2ce", + "xHandle": "rapsh9", + "xUrl": "https://twitter.com/rapsh9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1344086", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jayewealth001", + "displayName": "jayewealth001", + "fid": 1344086, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4c10bf1-5dcb-432f-bcca-496c7042e800/original", + "followers": 1057, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x79bd72eb00d1fca38bf2780e78ff3bace0fa3166", + "etherscanUrl": "https://etherscan.io/address/0x79bd72eb00d1fca38bf2780e78ff3bace0fa3166", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_925801", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mehranb", + "displayName": "Mersin", + "fid": 925801, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f5a7965-f10c-4992-fb48-ad5ce948e800/original", + "followers": 1055, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8143ec413064e9151a9e085a421087f4d9a71800", + "etherscanUrl": "https://etherscan.io/address/0x8143ec413064e9151a9e085a421087f4d9a71800", + "xHandle": "gamenew669748", + "xUrl": "https://twitter.com/gamenew669748", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261023", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yans01", + "displayName": "Dian Ulumia🧬", + "fid": 261023, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99627615-e936-4c87-9f7d-19bba3bbe500/original", + "followers": 1054, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70fc7e1f0409ba24d82a4db9d42d90a7fa67e400", + "etherscanUrl": "https://etherscan.io/address/0x70fc7e1f0409ba24d82a4db9d42d90a7fa67e400", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_291734", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mobaskol.eth", + "displayName": "mobaskol.base.eth", + "fid": 291734, + "pfpUrl": "https://i.imgur.com/6TW7QQO.jpg", + "followers": 1046, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd13b79c20aba54508977a1a3468dd702153c253", + "etherscanUrl": "https://etherscan.io/address/0xbd13b79c20aba54508977a1a3468dd702153c253", + "xHandle": "mobaskol", + "xUrl": "https://twitter.com/mobaskol", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_422384", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "millionbit.eth", + "displayName": "million.base.eth", + "fid": 422384, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/72711120-137b-4321-3429-aebe98602700/original", + "followers": 1039, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e089452fcdf0a00117f6f11aa7990f6d54f3c77", + "etherscanUrl": "https://etherscan.io/address/0x7e089452fcdf0a00117f6f11aa7990f6d54f3c77", + "xHandle": "bithomepage", + "xUrl": "https://twitter.com/bithomepage", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_268756", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "saber66", + "displayName": "Saber Sohrabie", + "fid": 268756, + "pfpUrl": "https://i.imgur.com/o9jC1zZ.jpg", + "followers": 1037, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9fe3e6ecad643c675eb578b590e1a256c3ce6e4", + "etherscanUrl": "https://etherscan.io/address/0xb9fe3e6ecad643c675eb578b590e1a256c3ce6e4", + "xHandle": "saber6631", + "xUrl": "https://twitter.com/saber6631", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_253385", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "phragg", + "displayName": "phragg", + "fid": 253385, + "pfpUrl": "https://i.imgur.com/GmEWUsi.jpg", + "followers": 1024, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x862bf52be02a2abf96fdaeb22ea9089e821b0591", + "etherscanUrl": "https://etherscan.io/address/0x862bf52be02a2abf96fdaeb22ea9089e821b0591", + "xHandle": "austinkpickett", + "xUrl": "https://twitter.com/austinkpickett", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_421364", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "solcay", + "displayName": "Solcay.base.eth", + "fid": 421364, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762083227/IMG_2756.jpg.jpg", + "followers": 1023, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7761e32bb054f8cf26bd3180680cd8ebb14df182", + "etherscanUrl": "https://etherscan.io/address/0x7761e32bb054f8cf26bd3180680cd8ebb14df182", + "xHandle": "solcayeth", + "xUrl": "https://twitter.com/solcayeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1012281", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bradenwolf", + "displayName": "Braden", + "fid": 1012281, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34b3b41e-6717-4653-ba0f-1d4007824600/original", + "followers": 1022, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd0725b9fd15b983514b8b99fb70e2ae018c9a8d", + "etherscanUrl": "https://etherscan.io/address/0xfd0725b9fd15b983514b8b99fb70e2ae018c9a8d", + "xHandle": "bradenization", + "xUrl": "https://twitter.com/bradenization", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7753", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "6666", + "displayName": "6666 🎩🍖", + "fid": 7753, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98b38c3b-316b-45fc-c74d-913a4983f800/original", + "followers": 1018, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x052f8a8fdcacc47fa5ae7901f00df058f520a5c0", + "etherscanUrl": "https://etherscan.io/address/0x052f8a8fdcacc47fa5ae7901f00df058f520a5c0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_988485", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "okeaniderya.eth", + "displayName": "derya {means ocean}", + "fid": 988485, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76d82a82-7ec1-457d-5427-4df024558e00/original", + "followers": 1016, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdfe5264ee30c257f350c52da3fac8b250ff7b1e2", + "etherscanUrl": "https://etherscan.io/address/0xdfe5264ee30c257f350c52da3fac8b250ff7b1e2", + "xHandle": "seaderyastare", + "xUrl": "https://twitter.com/seaderyastare", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mananabar", + "displayName": "MetaBar x MananaBar", + "fid": 210388, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/blue.jpg", + "followers": 1014, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe90c7578f04bac2a6ff41e2e9e1d65353710efcb", + "etherscanUrl": "https://etherscan.io/address/0xe90c7578f04bac2a6ff41e2e9e1d65353710efcb", + "xHandle": "robzy2030", + "xUrl": "https://twitter.com/robzy2030", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309250", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basepool", + "displayName": "BasePool", + "fid": 309250, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6862cfaa-c91d-48c4-1250-b5a360f41100/rectcrop3", + "followers": 1010, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22e6a141040acf70143c6269d4eb297833fee9a1", + "etherscanUrl": "https://etherscan.io/address/0x22e6a141040acf70143c6269d4eb297833fee9a1", + "xHandle": "basepools", + "xUrl": "https://twitter.com/basepools", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260777", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yuu", + "displayName": "Yuu ✨", + "fid": 260777, + "pfpUrl": "https://i.imgur.com/gMiFmDx.jpg", + "followers": 1006, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf24c0df46a5d231bfa6743341c8a3e37e37347e9", + "etherscanUrl": "https://etherscan.io/address/0xf24c0df46a5d231bfa6743341c8a3e37e37347e9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_368483", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cgardens710", + "displayName": "Cgardens710.base.eth", + "fid": 368483, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/246f3738-4291-4a9b-5f5f-90c12b6b9500/original", + "followers": 996, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42a0af6d78aefcc16d95edfe5afb5485c963a8bb", + "etherscanUrl": "https://etherscan.io/address/0x42a0af6d78aefcc16d95edfe5afb5485c963a8bb", + "xHandle": "cgardens710", + "xUrl": "https://twitter.com/cgardens710", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_831549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lib12", + "displayName": "Xeav", + "fid": 831549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec8c59c-303b-4875-3287-096ff3dc0d00/original", + "followers": 988, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78c825b3bbd9c08d0809c327ab042764c4d327c5", + "etherscanUrl": "https://etherscan.io/address/0x78c825b3bbd9c08d0809c327ab042764c4d327c5", + "xHandle": "libekfi", + "xUrl": "https://twitter.com/libekfi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_334357", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nonamei", + "displayName": "Mich🥜👆👾🐿️ 🧬", + "fid": 334357, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01308fd4-8cdc-4ffc-a3ba-4433ce9b6f00/rectcrop3", + "followers": 979, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5377f18670a7715d3e03f0e33600c97d1836a63", + "etherscanUrl": "https://etherscan.io/address/0xc5377f18670a7715d3e03f0e33600c97d1836a63", + "xHandle": "stevme1", + "xUrl": "https://twitter.com/stevme1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15089", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bheghe", + "displayName": "Wobble.base.eth", + "fid": 15089, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/718b7600-daab-4dd3-81d3-f89e15fd7600/original", + "followers": 979, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e26ce06f33769092a03dcd50be89fedbccc68b8", + "etherscanUrl": "https://etherscan.io/address/0x7e26ce06f33769092a03dcd50be89fedbccc68b8", + "xHandle": "new_bhe", + "xUrl": "https://twitter.com/new_bhe", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_680485", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dhen", + "displayName": "Ndhen19 ", + "fid": 680485, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/190c74fd-8093-44cf-fde0-c667a35a6700/rectcrop3", + "followers": 976, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6779a0c4c6785ca341b5a908d987e29827ec224", + "etherscanUrl": "https://etherscan.io/address/0xa6779a0c4c6785ca341b5a908d987e29827ec224", + "xHandle": "iketkidul", + "xUrl": "https://twitter.com/iketkidul", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_382192", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bloob", + "displayName": "Bloob", + "fid": 382192, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/076dbb6b-461f-47c7-a86b-1d3acae04400/original", + "followers": 967, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafd96ffb55452ded4dc2354873f3980258e1e547", + "etherscanUrl": "https://etherscan.io/address/0xafd96ffb55452ded4dc2354873f3980258e1e547", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_948843", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bossboss", + "displayName": "BossBoss", + "fid": 948843, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4892b573-843e-4e20-30a0-6d708680ef00/original", + "followers": 965, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8f489ccb06648c2a64975b73903d9129564538f", + "etherscanUrl": "https://etherscan.io/address/0xe8f489ccb06648c2a64975b73903d9129564538f", + "xHandle": "tizisdaillest", + "xUrl": "https://twitter.com/tizisdaillest", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_302398", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vnbc", + "displayName": "VNBC | base.eth", + "fid": 302398, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f6d8119-3a7a-4b85-7cf3-067e81715e00/original", + "followers": 965, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f15b3528dcebff7fea2cfc088075a1c260d2bce", + "etherscanUrl": "https://etherscan.io/address/0x4f15b3528dcebff7fea2cfc088075a1c260d2bce", + "xHandle": "duyhuanh", + "xUrl": "https://twitter.com/duyhuanh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_301313", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fidi", + "displayName": "fidbase", + "fid": 301313, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmQ3mKWGYxKitSvXtcFv3SM6e4sQH9GoYkZAq2nSpvZGTA?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 959, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39f3bb4dc08e40d4d0039e137634ce223b70cc9b", + "etherscanUrl": "https://etherscan.io/address/0x39f3bb4dc08e40d4d0039e137634ce223b70cc9b", + "xHandle": "fidbase", + "xUrl": "https://twitter.com/fidbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_429293", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arash865", + "displayName": "Arash_Shanto⚡", + "fid": 429293, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/91ae45c6-3607-49dc-9bc1-899b8203bb00/original", + "followers": 959, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4889b4db7e633a1c916f90f3f341835bd9a4035", + "etherscanUrl": "https://etherscan.io/address/0xd4889b4db7e633a1c916f90f3f341835bd9a4035", + "xHandle": "arash_shanto58", + "xUrl": "https://twitter.com/arash_shanto58", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1035745", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aravindbetachain", + "displayName": "DOGBITCAT", + "fid": 1035745, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5898dc4f-d73a-452e-e6fd-15397d5af200/original", + "followers": 958, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb3e8bc46cd3cf5e43a08a2db7ca05c0695d89c90", + "etherscanUrl": "https://etherscan.io/address/0xb3e8bc46cd3cf5e43a08a2db7ca05c0695d89c90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_191132", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kimmuchi", + "displayName": "hoangmi", + "fid": 191132, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6a2c309-87b7-4d13-f854-e26ca5ffec00/rectcrop3", + "followers": 933, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44d5367631d463ae8be89dde6702efa173532ff4", + "etherscanUrl": "https://etherscan.io/address/0x44d5367631d463ae8be89dde6702efa173532ff4", + "xHandle": "hoangmi0123", + "xUrl": "https://twitter.com/hoangmi0123", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2275", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptoinfluence.eth", + "displayName": "cryptoinfluence.base.eth", + "fid": 2275, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b16ce334-8bbf-4f49-1778-f1e5e4407a00/rectcrop3", + "followers": 931, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x169302fc98fb898fffdfc60313f1c0341499c6bc", + "etherscanUrl": "https://etherscan.io/address/0x169302fc98fb898fffdfc60313f1c0341499c6bc", + "xHandle": "cryptoinfluence", + "xUrl": "https://twitter.com/cryptoinfluence", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_900274", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ghostsama", + "displayName": "Sama 🤍✨", + "fid": 900274, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db1f0a04-850e-4963-3726-92e798501600/original", + "followers": 926, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x610ffce6c9f641b2065e978d036a846da5a00454", + "etherscanUrl": "https://etherscan.io/address/0x610ffce6c9f641b2065e978d036a846da5a00454", + "xHandle": "1ghostsama", + "xUrl": "https://twitter.com/1ghostsama", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_903908", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "spawniz", + "displayName": "Spawniz", + "fid": 903908, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86bf54ae-c735-4490-a283-cc768cb38900/original", + "followers": 925, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x596a08a5ba8c7fec6105f192d64305f4fc5b08ff", + "etherscanUrl": "https://etherscan.io/address/0x596a08a5ba8c7fec6105f192d64305f4fc5b08ff", + "xHandle": "spawnizz", + "xUrl": "https://twitter.com/spawnizz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1051552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "melaningenie", + "displayName": "Princess Porcupine🦋", + "fid": 1051552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76b39334-e192-4c6a-6433-67a5d2fcfa00/original", + "followers": 925, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59e5b688d08ae5d89fb8c8792b78df605a4c2e5d", + "etherscanUrl": "https://etherscan.io/address/0x59e5b688d08ae5d89fb8c8792b78df605a4c2e5d", + "xHandle": "idunnomannxo", + "xUrl": "https://twitter.com/idunnomannxo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_482920", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nomadicwolf.eth", + "displayName": "Irfan Khan Wolf World", + "fid": 482920, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ce37153-95df-458c-aeea-e78b8fea1500/rectcrop3", + "followers": 924, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x303a49a0b1fb041d9cde329325461777efbac701", + "etherscanUrl": "https://etherscan.io/address/0x303a49a0b1fb041d9cde329325461777efbac701", + "xHandle": "hasanalamattar", + "xUrl": "https://twitter.com/hasanalamattar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_391862", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "burakxm8", + "displayName": "Burak", + "fid": 391862, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35509019-173a-426d-5617-1c18f3abf400/original", + "followers": 917, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95539522c83143d2e57d3e1add6463e2e60131fc", + "etherscanUrl": "https://etherscan.io/address/0x95539522c83143d2e57d3e1add6463e2e60131fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_802090", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lopezonchain.eth", + "displayName": "Lopez", + "fid": 802090, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84c8a55f-d367-4c43-5b5d-6d43dbc5b700/rectcrop3", + "followers": 913, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x470b65e9ea7844182fe80cd07c818ffc36664be4", + "etherscanUrl": "https://etherscan.io/address/0x470b65e9ea7844182fe80cd07c818ffc36664be4", + "xHandle": "lopezonchain", + "xUrl": "https://twitter.com/lopezonchain", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7513", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alyonafuria", + "displayName": "alyonafuria", + "fid": 7513, + "pfpUrl": "https://p765cpbvm0.execute-api.eu-central-1.amazonaws.com/p1/renderer/Minteeble/chain/base/collection/6e0b39a5-8569-4e67-b330-d352593c9629/image/3393.png", + "followers": 899, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68f53005e7ee9f707f6d9861306fc4a0e91f12bd", + "etherscanUrl": "https://etherscan.io/address/0x68f53005e7ee9f707f6d9861306fc4a0e91f12bd", + "xHandle": "dranikipunk", + "xUrl": "https://twitter.com/dranikipunk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_321795", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "classeart.eth", + "displayName": "Classe 🎩", + "fid": 321795, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f40049a-cc75-494f-d3f0-e7ffc0602400/original", + "followers": 893, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4375fdbb0183362620daa629d9f830fb75c012ee", + "etherscanUrl": "https://etherscan.io/address/0x4375fdbb0183362620daa629d9f830fb75c012ee", + "xHandle": "claes_pancakes", + "xUrl": "https://twitter.com/claes_pancakes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17795", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zelda", + "displayName": "ZELDA ", + "fid": 17795, + "pfpUrl": "https://i.imgur.com/D90Doa5.jpg", + "followers": 881, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6a8a0b43efea3df38bfb2098483fcbd816110e2", + "etherscanUrl": "https://etherscan.io/address/0xe6a8a0b43efea3df38bfb2098483fcbd816110e2", + "xHandle": "zelda0xx", + "xUrl": "https://twitter.com/zelda0xx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21303", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ch0mx2.eth", + "displayName": "base.ch0mx2", + "fid": 21303, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47a0b569-91cb-451c-017b-78656c0c3100/original", + "followers": 879, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09623519507ca933b6867dd3dfb5fb5acce72f02", + "etherscanUrl": "https://etherscan.io/address/0x09623519507ca933b6867dd3dfb5fb5acce72f02", + "xHandle": "ch0mx2eth", + "xUrl": "https://twitter.com/ch0mx2eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257076", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hunghung", + "displayName": "Hunghung", + "fid": 257076, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48d48746-d207-4f37-32e9-667418877b00/original", + "followers": 872, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc11e939f32d60fbb602be14ced1e34c13cc31baf", + "etherscanUrl": "https://etherscan.io/address/0xc11e939f32d60fbb602be14ced1e34c13cc31baf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_523201", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sirkarga", + "displayName": "sirkarga.base.eth", + "fid": 523201, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b2e20b8-c881-4aef-ab46-eb31b5298c00/original", + "followers": 869, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd968e23580c7094d2c97fd2c0d6f6340dd3a48a", + "etherscanUrl": "https://etherscan.io/address/0xbd968e23580c7094d2c97fd2c0d6f6340dd3a48a", + "xHandle": "sir_karga", + "xUrl": "https://twitter.com/sir_karga", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_396057", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mannaushack", + "displayName": "Mannaushack 🧬", + "fid": 396057, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be6bd6cc-5c3f-42fc-d7a1-448d5de0b900/original", + "followers": 866, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b7a81ca93020988166f903194f8181f2d364c66", + "etherscanUrl": "https://etherscan.io/address/0x5b7a81ca93020988166f903194f8181f2d364c66", + "xHandle": "ohn363176", + "xUrl": "https://twitter.com/ohn363176", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307738", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kaya2732", + "displayName": "Yakup Kaya", + "fid": 307738, + "pfpUrl": "https://i.imgur.com/9Adue7W.jpg", + "followers": 866, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x612a748c057bd9113f04a4c007e622ba876b3858", + "etherscanUrl": "https://etherscan.io/address/0x612a748c057bd9113f04a4c007e622ba876b3858", + "xHandle": "felsen533", + "xUrl": "https://twitter.com/felsen533", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246414", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jialin", + "displayName": "Jialin 🎩", + "fid": 246414, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/afafc845-a1b6-4598-7f14-6083a5582f00/original", + "followers": 859, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f220b30cb4000694cc91bce040e873e0905f0dc", + "etherscanUrl": "https://etherscan.io/address/0x5f220b30cb4000694cc91bce040e873e0905f0dc", + "xHandle": "0xjialin", + "xUrl": "https://twitter.com/0xjialin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_881461", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "web3clown", + "displayName": "Web3clown_🤡", + "fid": 881461, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21885e30-eb1a-4e53-efe7-1ba1e7cd5f00/rectcrop3", + "followers": 852, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ebdf314a8e20b02d9b5f437ae86bb8b6996c9ba", + "etherscanUrl": "https://etherscan.io/address/0x2ebdf314a8e20b02d9b5f437ae86bb8b6996c9ba", + "xHandle": "almightyalani", + "xUrl": "https://twitter.com/almightyalani", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1009822", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0x0embryo.eth", + "displayName": "Embryo_dolphin.base.eth", + "fid": 1009822, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8aed31ed-fa20-4458-1456-1dbd6d4cd600/original", + "followers": 852, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47b31555b97479d9c307f7d318f8852bf30a0f85", + "etherscanUrl": "https://etherscan.io/address/0x47b31555b97479d9c307f7d318f8852bf30a0f85", + "xHandle": "embryo_eth", + "xUrl": "https://twitter.com/embryo_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_416057", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xnisya", + "displayName": "Nadya Romana", + "fid": 416057, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec4e9403-457d-461d-a79f-a1dc9f0db200/original", + "followers": 849, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15c983e1a6a491353d1fd7c9ed99b2f61e214223", + "etherscanUrl": "https://etherscan.io/address/0x15c983e1a6a491353d1fd7c9ed99b2f61e214223", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_432783", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "huanghui", + "displayName": "JACK(互关)", + "fid": 432783, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c5d1139-1480-4e1c-f38d-036c24208a00/original", + "followers": 833, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed4e3a8aedcd0e42b8fa449456eab37356d304fc", + "etherscanUrl": "https://etherscan.io/address/0xed4e3a8aedcd0e42b8fa449456eab37356d304fc", + "xHandle": "huanghu41738753", + "xUrl": "https://twitter.com/huanghu41738753", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188147", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "scvlk", + "displayName": "Valik", + "fid": 188147, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73beb781-8142-481d-2626-d7463a703f00/original", + "followers": 829, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a1d2a4e6ea90c1b695b4023fe040531e9fb1f98", + "etherscanUrl": "https://etherscan.io/address/0x4a1d2a4e6ea90c1b695b4023fe040531e9fb1f98", + "xHandle": "ingvalik", + "xUrl": "https://twitter.com/ingvalik", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1153754", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mr-r0b0t", + "displayName": "mr-r0b0t.farcaster.eth", + "fid": 1153754, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a187ddf-e756-454e-3cf2-0f677b0d8200/original", + "followers": 816, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x86e36c9ba3c6a2542fd761bc2b4fd61a110ea6cd", + "etherscanUrl": "https://etherscan.io/address/0x86e36c9ba3c6a2542fd761bc2b4fd61a110ea6cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_410368", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "toms", + "displayName": "Toms 🎩", + "fid": 410368, + "pfpUrl": "https://i.imgur.com/cnklnz4.jpg", + "followers": 816, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57893db4c6e78fb360f774670fa8582cc1c51777", + "etherscanUrl": "https://etherscan.io/address/0x57893db4c6e78fb360f774670fa8582cc1c51777", + "xHandle": "ronytokaeh", + "xUrl": "https://twitter.com/ronytokaeh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_559100", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bajie888", + "displayName": "sunjie", + "fid": 559100, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b22163df-3813-4802-c47b-a2758ea54d00/original", + "followers": 812, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6dc2f543a5eaa736067b3b2c56d4d7f133d88634", + "etherscanUrl": "https://etherscan.io/address/0x6dc2f543a5eaa736067b3b2c56d4d7f133d88634", + "xHandle": "sunhaojie88", + "xUrl": "https://twitter.com/sunhaojie88", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_279015", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lsliton13", + "displayName": "Ls Liton ", + "fid": 279015, + "pfpUrl": "https://i.imgur.com/8KlOgW6.jpg", + "followers": 809, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ad003e52b3fd85bab5f2fd04a6039baf1128c02", + "etherscanUrl": "https://etherscan.io/address/0x0ad003e52b3fd85bab5f2fd04a6039baf1128c02", + "xHandle": "lsliton131", + "xUrl": "https://twitter.com/lsliton131", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_233898", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kennkenn32", + "displayName": "FarCastrator", + "fid": 233898, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f948c36-28f6-4cd0-438c-df97d427f500/original", + "followers": 803, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xedbc1feaf8e6437c47975abe452debcf5ed8217a", + "etherscanUrl": "https://etherscan.io/address/0xedbc1feaf8e6437c47975abe452debcf5ed8217a", + "xHandle": "jason_rt89", + "xUrl": "https://twitter.com/jason_rt89", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_305972", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cozycliff", + "displayName": "base.eth", + "fid": 305972, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeie73ub2xxin6r56uw7cd5fl3zgoklbfxwrfjrizwr5ygjt6rhwe4i", + "followers": 803, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a239489ba260c7ae675b267d5adcb7525c287f3", + "etherscanUrl": "https://etherscan.io/address/0x3a239489ba260c7ae675b267d5adcb7525c287f3", + "xHandle": "pumpfunfren", + "xUrl": "https://twitter.com/pumpfunfren", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1134743", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xbrendan.eth", + "displayName": "Brendan", + "fid": 1134743, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/577b4c97-280f-4975-ae93-350b22e9cb00/original", + "followers": 795, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x694c033bd2527a5d073582d1e53a92863424350a", + "etherscanUrl": "https://etherscan.io/address/0x694c033bd2527a5d073582d1e53a92863424350a", + "xHandle": "0xbrendaneth", + "xUrl": "https://twitter.com/0xbrendaneth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_294149", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vitot212", + "displayName": "Vitot base.eth 🧬", + "fid": 294149, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9688fbb5-24b9-4db1-80af-2577b6c7cd00/original", + "followers": 791, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x521ff78d2c02e0d8f478c32cf6bb9876f825a94f", + "etherscanUrl": "https://etherscan.io/address/0x521ff78d2c02e0d8f478c32cf6bb9876f825a94f", + "xHandle": "loiska041286", + "xUrl": "https://twitter.com/loiska041286", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_465576", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "keziii", + "displayName": "keziii.eth", + "fid": 465576, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cad18bd-7cb2-4330-2665-c107b1150100/original", + "followers": 791, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc06edb945b0b028e72bde38f27815f5fccfab5ae", + "etherscanUrl": "https://etherscan.io/address/0xc06edb945b0b028e72bde38f27815f5fccfab5ae", + "xHandle": "kaffinn", + "xUrl": "https://twitter.com/kaffinn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whenlambo", + "displayName": "WhenLambo🎩", + "fid": 1510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aae9980d-025b-447b-3f33-31e678bcb200/original", + "followers": 763, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ad62b2daf76d3cbeaa6b6ac005b9ece405cb906", + "etherscanUrl": "https://etherscan.io/address/0x2ad62b2daf76d3cbeaa6b6ac005b9ece405cb906", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_235872", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brizpaint.eth", + "displayName": "Brkz", + "fid": 235872, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db1e2639-b572-48ce-b496-5b26b50d3200/original", + "followers": 762, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf982c7702ddc45dc37c46c6cd6613780f7aa26e3", + "etherscanUrl": "https://etherscan.io/address/0xf982c7702ddc45dc37c46c6cd6613780f7aa26e3", + "xHandle": "0xstarcheese", + "xUrl": "https://twitter.com/0xstarcheese", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_613345", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "victhorious", + "displayName": "Victhorious ", + "fid": 613345, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ad162a9-e27c-4e6a-7190-c397f0faa200/rectcrop3", + "followers": 756, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6fab902ff33350ae6ecaa05d63e665521974ebb9", + "etherscanUrl": "https://etherscan.io/address/0x6fab902ff33350ae6ecaa05d63e665521974ebb9", + "xHandle": "victhoriou98702", + "xUrl": "https://twitter.com/victhoriou98702", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_270119", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yaelahdredd", + "displayName": "Suri name", + "fid": 270119, + "pfpUrl": "https://i.imgur.com/HzIysoB.jpg", + "followers": 753, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0446b010f840551b2707986b484062e05f5f2c0", + "etherscanUrl": "https://etherscan.io/address/0xb0446b010f840551b2707986b484062e05f5f2c0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1094600", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "famez", + "displayName": "Famez", + "fid": 1094600, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae0eb39c-3114-4fe5-7bc0-47a86cb8ea00/original", + "followers": 752, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0887e35363b883b5bde9d59543a772c66b8b695", + "etherscanUrl": "https://etherscan.io/address/0xa0887e35363b883b5bde9d59543a772c66b8b695", + "xHandle": "heisfamez", + "xUrl": "https://twitter.com/heisfamez", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044514", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptobaddie", + "displayName": "Joy", + "fid": 1044514, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e43f678-f7a8-4797-9107-819179276600/original", + "followers": 752, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f69c8eb92ed068aa577ce1847d568b39b0d9ebf", + "etherscanUrl": "https://etherscan.io/address/0x8f69c8eb92ed068aa577ce1847d568b39b0d9ebf", + "xHandle": "cryptobaddie___", + "xUrl": "https://twitter.com/cryptobaddie___", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_888823", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sethnuno00", + "displayName": "Luís Fernandes", + "fid": 888823, + "pfpUrl": "https://api.npc.nexus/v1/storage/buckets/6550e3a8c8d1568fe219/files/888823/preview?project=npcnexus&date=5867388", + "followers": 750, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55baf79137628aad1c502a8caba7d67df38cd7dc", + "etherscanUrl": "https://etherscan.io/address/0x55baf79137628aad1c502a8caba7d67df38cd7dc", + "xHandle": "nunoseth25", + "xUrl": "https://twitter.com/nunoseth25", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_253373", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "!253373", + "displayName": "Iagoribeiro32", + "fid": 253373, + "pfpUrl": "https://arweave.net/OX0HWun1T1PzxlK_qsbmOhzUm0-3CAWfmFSG_EKIC3c/", + "followers": 747, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6cebbedc781f24720d91747e1dd62ef926848bed", + "etherscanUrl": "https://etherscan.io/address/0x6cebbedc781f24720d91747e1dd62ef926848bed", + "xHandle": "iagoribeiro3400", + "xUrl": "https://twitter.com/iagoribeiro3400", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_428515", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohamedadam", + "displayName": "Mohamed Adam", + "fid": 428515, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/blue.jpg", + "followers": 743, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x491d1cb0fe5cb997961b93db53eb6f57e340db7e", + "etherscanUrl": "https://etherscan.io/address/0x491d1cb0fe5cb997961b93db53eb6f57e340db7e", + "xHandle": "mohamed99798592", + "xUrl": "https://twitter.com/mohamed99798592", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188723", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "woodybuzz", + "displayName": "woody", + "fid": 188723, + "pfpUrl": "https://i.imgur.com/cLnggmn.jpg", + "followers": 742, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d2a30d01980401573f21eb82ea6d0121b849cf0", + "etherscanUrl": "https://etherscan.io/address/0x9d2a30d01980401573f21eb82ea6d0121b849cf0", + "xHandle": "woodyybuzz8", + "xUrl": "https://twitter.com/woodyybuzz8", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_211120", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kasutjepang", + "displayName": "Anca 🎩", + "fid": 211120, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/780eeb86-e9bf-4bbc-bd8d-e4e4b6499500/original", + "followers": 733, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1494fe694582addadaa4901110824d955f7e6005", + "etherscanUrl": "https://etherscan.io/address/0x1494fe694582addadaa4901110824d955f7e6005", + "xHandle": "moonesown", + "xUrl": "https://twitter.com/moonesown", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_459422", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whalle89", + "displayName": "Whalle89☑️", + "fid": 459422, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/381d091d-530e-4d90-1ff5-b7d17b7f3500/original", + "followers": 730, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x807f6b351ecb861bf1eb92d1cbc42187f0be8c5b", + "etherscanUrl": "https://etherscan.io/address/0x807f6b351ecb861bf1eb92d1cbc42187f0be8c5b", + "xHandle": "whallekoe", + "xUrl": "https://twitter.com/whallekoe", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_847065", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uforgottenkai", + "displayName": "UnforgottenKai", + "fid": 847065, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f6ae88a-2289-4ea7-612f-b44f70d36000/original", + "followers": 725, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x063d4bdf79780b423f01ffaf57d48433c1e994bd", + "etherscanUrl": "https://etherscan.io/address/0x063d4bdf79780b423f01ffaf57d48433c1e994bd", + "xHandle": "unforgottenkaii", + "xUrl": "https://twitter.com/unforgottenkaii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_265921", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aldoendaray", + "displayName": "aldoendaray.base.eth", + "fid": 265921, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e8bec14d-4bf1-42f8-89f8-1da020789200/original", + "followers": 725, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6514ebd5fcac0cd37bbda53b6f972e8335a38d5d", + "etherscanUrl": "https://etherscan.io/address/0x6514ebd5fcac0cd37bbda53b6f972e8335a38d5d", + "xHandle": "endaaldo99", + "xUrl": "https://twitter.com/endaaldo99", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_330134", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pikabu123", + "displayName": "Pikabu123 ⛓️🍖🎭⚡", + "fid": 330134, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/30c03fae-b10b-4a3c-f054-2986d91b4200/rectcrop3", + "followers": 721, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6cdd8ac8fa6a9276c5465fdbfac29c205fb28183", + "etherscanUrl": "https://etherscan.io/address/0x6cdd8ac8fa6a9276c5465fdbfac29c205fb28183", + "xHandle": "abdul88992729", + "xUrl": "https://twitter.com/abdul88992729", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1095717", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ephorie", + "displayName": "DropSeeker.base.eth", + "fid": 1095717, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17345bfa-d8d7-4bc6-b953-714f83a38300/original", + "followers": 715, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7576733e2fba37f616613b0813c75519e67ec3e", + "etherscanUrl": "https://etherscan.io/address/0xd7576733e2fba37f616613b0813c75519e67ec3e", + "xHandle": "d_euforie", + "xUrl": "https://twitter.com/d_euforie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_637563", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "serhio91", + "displayName": "Serhii Vlasiuk", + "fid": 637563, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "followers": 715, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1f82409992616619cb57efb4fe04a22a6d02cd9", + "etherscanUrl": "https://etherscan.io/address/0xa1f82409992616619cb57efb4fe04a22a6d02cd9", + "xHandle": "sergio91436017", + "xUrl": "https://twitter.com/sergio91436017", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_254395", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xxone", + "displayName": "xxone.eth 🧬", + "fid": 254395, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99e67912-8c18-4cf1-d2a9-a73c60e71400/original", + "followers": 709, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd11f5b5c547633f9a0d1a8c92b13f1a76041e316", + "etherscanUrl": "https://etherscan.io/address/0xd11f5b5c547633f9a0d1a8c92b13f1a76041e316", + "xHandle": "ptesnet", + "xUrl": "https://twitter.com/ptesnet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_314062", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pktdat.eth", + "displayName": "PKTDat", + "fid": 314062, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/QmYd2J36s7y5gZaY227PAZ9UBqfXsyo9ZbSM1rRsDgZU4B/244.webp", + "followers": 708, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2585247ddeb117710094111906aa2d1ff223a032", + "etherscanUrl": "https://etherscan.io/address/0x2585247ddeb117710094111906aa2d1ff223a032", + "xHandle": "pktdat", + "xUrl": "https://twitter.com/pktdat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_303199", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lsliton131", + "displayName": "Islamic Post", + "fid": 303199, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ace3af97-2ead-4d95-11f3-b638fc043e00/rectcrop3", + "followers": 707, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67c8bc26811effd5a8bf5b41cbde57c6acf2a779", + "etherscanUrl": "https://etherscan.io/address/0x67c8bc26811effd5a8bf5b41cbde57c6acf2a779", + "xHandle": "anhamoni12", + "xUrl": "https://twitter.com/anhamoni12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_975092", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basedguymeme", + "displayName": "Just a based guy", + "fid": 975092, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f88af20-7d88-484e-d739-e11c702b1c00/rectcrop3", + "followers": 704, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07521a5bdee07100a574bc82ab4cd54ad75855ba", + "etherscanUrl": "https://etherscan.io/address/0x07521a5bdee07100a574bc82ab4cd54ad75855ba", + "xHandle": "basedguymeme", + "xUrl": "https://twitter.com/basedguymeme", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_295733", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gregarious", + "displayName": "Gregarious", + "fid": 295733, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46103934-4faf-4c3e-4c9a-d38911837a00/rectcrop3", + "followers": 703, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8250100587b3e415771025fc26d3f281a320dfaa", + "etherscanUrl": "https://etherscan.io/address/0x8250100587b3e415771025fc26d3f281a320dfaa", + "xHandle": "gregarious", + "xUrl": "https://twitter.com/gregarious", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_500954", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kaiser75", + "displayName": "KAISER_KABIR", + "fid": 500954, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3c44090-68e3-4baa-ed0c-fe185cc23300/rectcrop3", + "followers": 701, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x110eda6baa872a97399254e5a1e654593e591ff7", + "etherscanUrl": "https://etherscan.io/address/0x110eda6baa872a97399254e5a1e654593e591ff7", + "xHandle": "kaiserkabi63601", + "xUrl": "https://twitter.com/kaiserkabi63601", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261532", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "indexyz", + "displayName": "index🎩", + "fid": 261532, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff4d7c85-6452-480a-a5c0-f711a59b2000/rectcrop3", + "followers": 699, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb7e07b7a78bd620a581b4224915b39384e30405", + "etherscanUrl": "https://etherscan.io/address/0xcb7e07b7a78bd620a581b4224915b39384e30405", + "xHandle": "cyber_lii", + "xUrl": "https://twitter.com/cyber_lii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071109", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raples", + "displayName": "Raples 🟦", + "fid": 1071109, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3321b371-d649-4698-3e9c-3da46d455700/original", + "followers": 697, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd7cc01fa99c57e840fd55fcde340ebb56d35277", + "etherscanUrl": "https://etherscan.io/address/0xfd7cc01fa99c57e840fd55fcde340ebb56d35277", + "xHandle": "cast_69k", + "xUrl": "https://twitter.com/cast_69k", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_254812", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naura", + "displayName": "Naurachan", + "fid": 254812, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf60bedc-e1ed-4c93-9cdb-26bcc098cf00/original", + "followers": 696, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcdf959365fc0d2e804f928bab31c66092d3dcd1f", + "etherscanUrl": "https://etherscan.io/address/0xcdf959365fc0d2e804f928bab31c66092d3dcd1f", + "xHandle": "canendu", + "xUrl": "https://twitter.com/canendu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_327851", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "atakco", + "displayName": "FAKE Drop", + "fid": 327851, + "pfpUrl": "https://i.imgur.com/rQS6Nlg.jpg", + "followers": 695, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61e0880fee21c516748177ce17c186a6ed16cd90", + "etherscanUrl": "https://etherscan.io/address/0x61e0880fee21c516748177ce17c186a6ed16cd90", + "xHandle": "igede_wl66a", + "xUrl": "https://twitter.com/igede_wl66a", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328775", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "byrneybabes.base.eth", + "displayName": "Amy byrne", + "fid": 1328775, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763144927/5db9d865-da49-40d3-a3d9-7b2d95264003.heic", + "followers": 680, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc299f390a84eec4756d27c187116f539005942f6", + "etherscanUrl": "https://etherscan.io/address/0xc299f390a84eec4756d27c187116f539005942f6", + "xHandle": "peachy_fyr", + "xUrl": "https://twitter.com/peachy_fyr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_252259", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skygims", + "displayName": "skygims.base.eth", + "fid": 252259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ea859a-47bd-43c9-8e20-165b4be95600/original", + "followers": 679, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5bface33343c354d4f577f4ebe29e20b1c691ba9", + "etherscanUrl": "https://etherscan.io/address/0x5bface33343c354d4f577f4ebe29e20b1c691ba9", + "xHandle": "skygims", + "xUrl": "https://twitter.com/skygims", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19098", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "romio.eth", + "displayName": "Sanjib 🔵 🎩", + "fid": 19098, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/941f6a9e-1362-4d51-f443-f08580158200/original", + "followers": 672, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68d4245114cc22a537c39143d032a646e77032e8", + "etherscanUrl": "https://etherscan.io/address/0x68d4245114cc22a537c39143d032a646e77032e8", + "xHandle": "basaksanjib1992", + "xUrl": "https://twitter.com/basaksanjib1992", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_313461", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xsid", + "displayName": "Sid 🎩", + "fid": 313461, + "pfpUrl": "https://i.imgur.com/hfgltuV.png", + "followers": 671, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf50b513cc0f6770564cb0d294f155243dd24285", + "etherscanUrl": "https://etherscan.io/address/0xcf50b513cc0f6770564cb0d294f155243dd24285", + "xHandle": "0xsidlikespizza", + "xUrl": "https://twitter.com/0xsidlikespizza", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_347638", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naufaljon", + "displayName": "nathhan", + "fid": 347638, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ae29f73-5a16-4393-cc56-1fc900455900/original", + "followers": 662, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0aded78d1320cb28870c4401adc3614427c99ba7", + "etherscanUrl": "https://etherscan.io/address/0x0aded78d1320cb28870c4401adc3614427c99ba7", + "xHandle": "naufaljonzora", + "xUrl": "https://twitter.com/naufaljonzora", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20435", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "valent1ne", + "displayName": "VALent1NE", + "fid": 20435, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e845ddd-5f0f-433c-1c23-f7affd106a00/rectcrop3", + "followers": 660, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7898a24962078105f14f45f61de71edcbc3892ff", + "etherscanUrl": "https://etherscan.io/address/0x7898a24962078105f14f45f61de71edcbc3892ff", + "xHandle": "valent1ne_eth_", + "xUrl": "https://twitter.com/valent1ne_eth_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_292215", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rean", + "displayName": "Rehan", + "fid": 292215, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ac54b16-20cf-4e1a-fb8f-7f3ebe1c2600/original", + "followers": 660, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c22005be108d407eaea058351190a8cef67141f", + "etherscanUrl": "https://etherscan.io/address/0x2c22005be108d407eaea058351190a8cef67141f", + "xHandle": "xoxoapee", + "xUrl": "https://twitter.com/xoxoapee", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_471872", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babuy", + "displayName": "Skyeth 🧬", + "fid": 471872, + "pfpUrl": "https://i.imgur.com/VvCtQvy.jpg", + "followers": 659, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1101ca6276bcea1665705bee0593a9ecd455a96d", + "etherscanUrl": "https://etherscan.io/address/0x1101ca6276bcea1665705bee0593a9ecd455a96d", + "xHandle": "sky_eth77", + "xUrl": "https://twitter.com/sky_eth77", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_411541", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dieznutz83", + "displayName": "Dieznutz83 🔵", + "fid": 411541, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7102836c-cb0a-431d-68f8-8e2c87fc9800/original", + "followers": 657, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b72be51725686bde5763aacbe9c73a6780a4317", + "etherscanUrl": "https://etherscan.io/address/0x4b72be51725686bde5763aacbe9c73a6780a4317", + "xHandle": "dieznutz83", + "xUrl": "https://twitter.com/dieznutz83", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_279380", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "taiwotona", + "displayName": "pqrsixnine.moca", + "fid": 279380, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/282e876c-0407-4680-7a4d-5eea25290100/original", + "followers": 649, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7bb4aa3d1a1091f83af89c13b030ab2800b6b0db", + "etherscanUrl": "https://etherscan.io/address/0x7bb4aa3d1a1091f83af89c13b030ab2800b6b0db", + "xHandle": "tona_taiwo", + "xUrl": "https://twitter.com/tona_taiwo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_899401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hortyspace917", + "displayName": "vonguard🧬", + "fid": 899401, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1759038490/image_uploads/356073e5-ff84-4260-bbf8-43b51c80e64c.jpg", + "followers": 649, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d09d71195cf6c155c9a1a14dcc1d568d9037878", + "etherscanUrl": "https://etherscan.io/address/0x4d09d71195cf6c155c9a1a14dcc1d568d9037878", + "xHandle": "harrisonhensha", + "xUrl": "https://twitter.com/harrisonhensha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_383144", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bfix.eth", + "displayName": "bfix.eth🎩🍖", + "fid": 383144, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeihlond74ij2vbzyuagma2uxtv2b7e4nmty6ujxbapqopsarzy3yo4/631.png", + "followers": 641, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae1114e5f1c9db6252fb19601d903dd9841d988d", + "etherscanUrl": "https://etherscan.io/address/0xae1114e5f1c9db6252fb19601d903dd9841d988d", + "xHandle": "bigdfix", + "xUrl": "https://twitter.com/bigdfix", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115503", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "johnbosco2006", + "displayName": "shinkaffi", + "fid": 1115503, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4d3e8b6-d203-4057-5d1c-fd54cf268c00/original", + "followers": 639, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f1de378c7752fe6c4109d41a0dde218337138ee", + "etherscanUrl": "https://etherscan.io/address/0x1f1de378c7752fe6c4109d41a0dde218337138ee", + "xHandle": "enenetuei_john", + "xUrl": "https://twitter.com/enenetuei_john", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_895977", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lordsirius", + "displayName": "LordSirius", + "fid": 895977, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5a577a8-87a3-4c14-edfb-f4270f12b000/original", + "followers": 636, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46ff51a6bd61bcfe38a3ebf6557259ab4f374a23", + "etherscanUrl": "https://etherscan.io/address/0x46ff51a6bd61bcfe38a3ebf6557259ab4f374a23", + "xHandle": "l0rds1rius", + "xUrl": "https://twitter.com/l0rds1rius", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_737077", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "robinhood01", + "displayName": "abella.", + "fid": 737077, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fa98038-eeb6-43ff-e855-22cf9cd37e00/original", + "followers": 627, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x091c3c64da534e7daed90ce850be13571dc5baf4", + "etherscanUrl": "https://etherscan.io/address/0x091c3c64da534e7daed90ce850be13571dc5baf4", + "xHandle": "024trumpet", + "xUrl": "https://twitter.com/024trumpet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1049927", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cartoonmeseries", + "displayName": "RealRobWood.xyz", + "fid": 1049927, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f4678b4-5f95-492c-afab-8eae5a982900/original", + "followers": 624, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ba58317b1dd49a050668e7fcbf3569fba6b97b9", + "etherscanUrl": "https://etherscan.io/address/0x4ba58317b1dd49a050668e7fcbf3569fba6b97b9", + "xHandle": "realrobwoodxyz", + "xUrl": "https://twitter.com/realrobwoodxyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_682620", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "saiful29", + "displayName": "SAIFUL ISLAM", + "fid": 682620, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e2943b9-92df-4afe-9827-ebee74679a00/original", + "followers": 622, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdfda5ed13703f94dbefb7356184cdb70c7dddcd6", + "etherscanUrl": "https://etherscan.io/address/0xdfda5ed13703f94dbefb7356184cdb70c7dddcd6", + "xHandle": "saydur231", + "xUrl": "https://twitter.com/saydur231", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_559885", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dillirajagiri", + "displayName": "Dilli Rajagiri ", + "fid": 559885, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9038bebd-8ba3-4c88-969d-bc0a114c1c00/rectcrop3", + "followers": 619, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x45069e40188b0a315b6e06ffb97baef9c37c214b", + "etherscanUrl": "https://etherscan.io/address/0x45069e40188b0a315b6e06ffb97baef9c37c214b", + "xHandle": "rajagiri_dilli", + "xUrl": "https://twitter.com/rajagiri_dilli", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12034", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jennifertran", + "displayName": "Jennifer Tran", + "fid": 12034, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77f0650e-118f-4d7d-0476-d4d00639b600/original", + "followers": 619, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f1a2cd5b57f7504c9dd69a2089cb294934e649d", + "etherscanUrl": "https://etherscan.io/address/0x4f1a2cd5b57f7504c9dd69a2089cb294934e649d", + "xHandle": "jkim_tran", + "xUrl": "https://twitter.com/jkim_tran", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_476552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "frogish", + "displayName": "Frogish", + "fid": 476552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6001f839-49d3-4d0b-ad3a-37c6fa181300/rectcrop3", + "followers": 618, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e7987e413caaf8dbca3cf8d4a372cc260385078", + "etherscanUrl": "https://etherscan.io/address/0x4e7987e413caaf8dbca3cf8d4a372cc260385078", + "xHandle": "frogish2025", + "xUrl": "https://twitter.com/frogish2025", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_253895", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sirpent", + "displayName": "Pent", + "fid": 253895, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff208b93-8cd6-48de-e367-00741df03f00/original", + "followers": 617, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbccb437572030bbf9f18c196bdb58cc2a92efca3", + "etherscanUrl": "https://etherscan.io/address/0xbccb437572030bbf9f18c196bdb58cc2a92efca3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_420816", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yigitm", + "displayName": "0xyigit.base.eth", + "fid": 420816, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43c5b974-4342-410d-7147-48f98d94c100/original", + "followers": 607, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa69a63496296e6b04777ad41f6d3605bbeb574d1", + "etherscanUrl": "https://etherscan.io/address/0xa69a63496296e6b04777ad41f6d3605bbeb574d1", + "xHandle": "yigitm44", + "xUrl": "https://twitter.com/yigitm44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_252942", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ariwibowo", + "displayName": "Pendekar212", + "fid": 252942, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05d1745f-c244-4db4-3073-370665021200/original", + "followers": 605, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9450615b4aed29060d5125a5b3dd198ce1b6cc8", + "etherscanUrl": "https://etherscan.io/address/0xf9450615b4aed29060d5125a5b3dd198ce1b6cc8", + "xHandle": "koweasu05", + "xUrl": "https://twitter.com/koweasu05", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1310854", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "token-mara1", + "displayName": "Movies-Onchain.Base🟦", + "fid": 1310854, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2cb1440-05b8-4e0e-b4f5-fe225b16a900/original", + "followers": 604, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0f801a683fe74551329544b86e648c476cb4439f", + "etherscanUrl": "https://etherscan.io/address/0x0f801a683fe74551329544b86e648c476cb4439f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1113654", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "firmjeff", + "displayName": "Jeffrey (Computer Operator)", + "fid": 1113654, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc49a4b0-7d3a-4e1e-e294-6754aad60c00/original", + "followers": 602, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f48ae30095013130bf181773a2c360722c29242", + "etherscanUrl": "https://etherscan.io/address/0x7f48ae30095013130bf181773a2c360722c29242", + "xHandle": "thefirmjeff", + "xUrl": "https://twitter.com/thefirmjeff", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260571", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arshaka", + "displayName": "Arshaka Virendra 🎩🔄 👾", + "fid": 260571, + "pfpUrl": "https://i.imgur.com/8OuTBLL.jpg", + "followers": 598, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf58b86c9b5d5bb0323adfbe3fd6670d48e7e717", + "etherscanUrl": "https://etherscan.io/address/0xaf58b86c9b5d5bb0323adfbe3fd6670d48e7e717", + "xHandle": "arshaka66", + "xUrl": "https://twitter.com/arshaka66", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_483197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "semijon", + "displayName": "🥜SeⓂ️ira 📺", + "fid": 483197, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d00878d-f866-41af-842e-decde6da5300/rectcrop3", + "followers": 597, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46b6063453a1f197e86ac646c583be3b31b7aa13", + "etherscanUrl": "https://etherscan.io/address/0x46b6063453a1f197e86ac646c583be3b31b7aa13", + "xHandle": "semi4540406736", + "xUrl": "https://twitter.com/semi4540406736", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530090", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andreapn.eth", + "displayName": "andreapn.base.eth", + "fid": 530090, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1758205323/image_uploads/1f9f014f-41e4-4ce6-8f49-85082e83e70e.jpg", + "followers": 589, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c37a5ff1096f1d5da7fa6f77a053139e8a2ba47", + "etherscanUrl": "https://etherscan.io/address/0x4c37a5ff1096f1d5da7fa6f77a053139e8a2ba47", + "xHandle": "andreapn_", + "xUrl": "https://twitter.com/andreapn_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_275597", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cnnid69", + "displayName": "ainurrof1", + "fid": 275597, + "pfpUrl": "https://i.imgur.com/o3fYTSF.jpg", + "followers": 587, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e298dffa818ba95ec1dde1eace83bc1d844ad51", + "etherscanUrl": "https://etherscan.io/address/0x4e298dffa818ba95ec1dde1eace83bc1d844ad51", + "xHandle": "kaaddos22", + "xUrl": "https://twitter.com/kaaddos22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_250760", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "obbyrobs", + "displayName": "obbyrobs.base.eth🐹🔵", + "fid": 250760, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8708a9e9-d445-4364-6ad4-b2c5efbaab00/original", + "followers": 576, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd128db97095c59591621748439e42e6ad3eedb2d", + "etherscanUrl": "https://etherscan.io/address/0xd128db97095c59591621748439e42e6ad3eedb2d", + "xHandle": "xaxurura", + "xUrl": "https://twitter.com/xaxurura", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_191231", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ruthn", + "displayName": "Ruthn", + "fid": 191231, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fefbd69-a757-4915-838c-643379d5dc00/original", + "followers": 575, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e179e77a0c7ba04ac0d02e136c9d6516660c80e", + "etherscanUrl": "https://etherscan.io/address/0x7e179e77a0c7ba04ac0d02e136c9d6516660c80e", + "xHandle": "goodp1ne", + "xUrl": "https://twitter.com/goodp1ne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_252262", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lucx", + "displayName": "Lucwishmeluc", + "fid": 252262, + "pfpUrl": "https://i.imgur.com/5EPt7XQ.jpg", + "followers": 574, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x273e2034e6f71646b72209fa9a5e827a725a4911", + "etherscanUrl": "https://etherscan.io/address/0x273e2034e6f71646b72209fa9a5e827a725a4911", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20086", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "punkrock", + "displayName": "punkrock77.eth🎱🐉⚔", + "fid": 20086, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4dc75321-bdce-44f6-6b4d-ecb098177600/original", + "followers": 573, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd33a0f908d3f88f19f20840c12bfa47537bb3555", + "etherscanUrl": "https://etherscan.io/address/0xd33a0f908d3f88f19f20840c12bfa47537bb3555", + "xHandle": "callme_punkrock", + "xUrl": "https://twitter.com/callme_punkrock", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1049293", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tandeptrai21", + "displayName": "Hoàng Nhật Tân", + "fid": 1049293, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3dca4a22-7e8a-4a51-6006-8e3120593800/rectcrop3", + "followers": 573, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f0198857089a0badc8aeff87e74f47f6e6923df", + "etherscanUrl": "https://etherscan.io/address/0x3f0198857089a0badc8aeff87e74f47f6e6923df", + "xHandle": "hoangtan99", + "xUrl": "https://twitter.com/hoangtan99", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_300245", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fefex", + "displayName": "iZiKi🔵🎩", + "fid": 300245, + "pfpUrl": "https://i.imgur.com/FAon8So.jpg", + "followers": 571, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85f1a63a2b7259dd4fdc84e146f006faa2d40819", + "etherscanUrl": "https://etherscan.io/address/0x85f1a63a2b7259dd4fdc84e146f006faa2d40819", + "xHandle": "sarc_gg", + "xUrl": "https://twitter.com/sarc_gg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1344157", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shubs", + "displayName": ".Shubs", + "fid": 1344157, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "followers": 567, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3011e765574d1c7c53f0b2a01b18bb3b40af7452", + "etherscanUrl": "https://etherscan.io/address/0x3011e765574d1c7c53f0b2a01b18bb3b40af7452", + "xHandle": "motunrayokejii", + "xUrl": "https://twitter.com/motunrayokejii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_716335", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "00999", + "displayName": "aijaz ahmed", + "fid": 716335, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c5c25fb-dbd4-42ac-c021-d09a7e2ba200/rectcrop3", + "followers": 566, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21b2850c3973cde3d2302231572efef5d206bcdd", + "etherscanUrl": "https://etherscan.io/address/0x21b2850c3973cde3d2302231572efef5d206bcdd", + "xHandle": "engnraijaz", + "xUrl": "https://twitter.com/engnraijaz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_292004", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hajicool", + "displayName": "Zazy 🌹🌹🌹🌹", + "fid": 292004, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55150a4c-7843-45fe-d05a-03a1d630bd00/rectcrop3", + "followers": 564, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee399b329030b8037ff5f5a41c567a9a37d4caea", + "etherscanUrl": "https://etherscan.io/address/0xee399b329030b8037ff5f5a41c567a9a37d4caea", + "xHandle": "hajisocool", + "xUrl": "https://twitter.com/hajisocool", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_868582", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "solomid94", + "displayName": "Naji Huzairin", + "fid": 868582, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ee33fef-b6ab-4552-3ded-73c37b80b100/rectcrop3", + "followers": 559, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2b6421df4926be5dd6706d3604d659ccda55ff26", + "etherscanUrl": "https://etherscan.io/address/0x2b6421df4926be5dd6706d3604d659ccda55ff26", + "xHandle": "simianliner", + "xUrl": "https://twitter.com/simianliner", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_496999", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rajanasuti", + "displayName": "Omnibase.L2", + "fid": 496999, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/25532579-c419-46a8-234a-9f2f6e2b9000/original", + "followers": 558, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2348ec63372c35c41be8ad5634d22e6b4e3557e4", + "etherscanUrl": "https://etherscan.io/address/0x2348ec63372c35c41be8ad5634d22e6b4e3557e4", + "xHandle": "qbxowo", + "xUrl": "https://twitter.com/qbxowo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_894317", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fmmm10qe0", + "displayName": "Raheleh 🧬🔵✨️", + "fid": 894317, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb2ef7b9-f028-481b-1cf2-401ab3f13b00/rectcrop3", + "followers": 551, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdfcfc3115240f5b0e4a5cdfbe4caa5646dee6f79", + "etherscanUrl": "https://etherscan.io/address/0xdfcfc3115240f5b0e4a5cdfbe4caa5646dee6f79", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_358939", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "godsticky.eth", + "displayName": "sticky 🐉", + "fid": 358939, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8ff6046-e9e3-47f0-1755-63ceaec0a100/original", + "followers": 548, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e678d4b2ec0d93e43f9b0eb0785da8269be9a5e", + "etherscanUrl": "https://etherscan.io/address/0x4e678d4b2ec0d93e43f9b0eb0785da8269be9a5e", + "xHandle": "alxstai", + "xUrl": "https://twitter.com/alxstai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_326807", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "exellance", + "displayName": "Cüneyt Yarçın", + "fid": 326807, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b30e729c-cc9a-4c1d-b72f-b69c6afff700/original", + "followers": 548, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x35c52123023eb225aa12b4e98aa6838dcf21d85f", + "etherscanUrl": "https://etherscan.io/address/0x35c52123023eb225aa12b4e98aa6838dcf21d85f", + "xHandle": "cuneyt_yarc", + "xUrl": "https://twitter.com/cuneyt_yarc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1015735", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theneetguy.eth", + "displayName": "The Neet Guy", + "fid": 1015735, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/820c1a61-94b0-4ad0-b74f-eb2066a82c00/original", + "followers": 547, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9db704bae6a8f4582cd79b3a6eb88211aad936b3", + "etherscanUrl": "https://etherscan.io/address/0x9db704bae6a8f4582cd79b3a6eb88211aad936b3", + "xHandle": "theneetguy", + "xUrl": "https://twitter.com/theneetguy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_256068", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jarullyzard", + "displayName": "Jarule.base.eth 🐹", + "fid": 256068, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c8d172c-fc06-47de-52d0-17ac3de14000/original", + "followers": 546, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe39c2c8986e5d2ecc0d51baa33198853ae5a8062", + "etherscanUrl": "https://etherscan.io/address/0xe39c2c8986e5d2ecc0d51baa33198853ae5a8062", + "xHandle": "bilintikcrew", + "xUrl": "https://twitter.com/bilintikcrew", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_266121", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vharozes", + "displayName": "Vharosdiana base.eth", + "fid": 266121, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69d3019d-a952-4027-f0dc-d45cce99e500/original", + "followers": 545, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e73c24af3a955a52a9a95116ba40a7c3bc8321f", + "etherscanUrl": "https://etherscan.io/address/0x9e73c24af3a955a52a9a95116ba40a7c3bc8321f", + "xHandle": "hernirepina", + "xUrl": "https://twitter.com/hernirepina", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19327", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "timmykwesi.eth", + "displayName": "Timmy🎩🐹⬆🕵️‍♂️", + "fid": 19327, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/12ee8741-4e06-4d97-bc88-8e7288736200/original", + "followers": 545, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3185fd2e5010271a0e866be070addc073713734", + "etherscanUrl": "https://etherscan.io/address/0xe3185fd2e5010271a0e866be070addc073713734", + "xHandle": "timmycwesi", + "xUrl": "https://twitter.com/timmycwesi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_203988", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shuaixiaohuo", + "displayName": "Xiaoxiaoniao", + "fid": 203988, + "pfpUrl": "https://i.imgur.com/two8Idi.jpg", + "followers": 544, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa244487be81c89c0d82000e88af2fc783384597f", + "etherscanUrl": "https://etherscan.io/address/0xa244487be81c89c0d82000e88af2fc783384597f", + "xHandle": "pycaq", + "xUrl": "https://twitter.com/pycaq", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_917404", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "otorolabs", + "displayName": "Otoro", + "fid": 917404, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/180bb96f-eb03-4382-7fb8-2c3e791eb200/original", + "followers": 543, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7e61417b1613da1fcf8bea19ebfa6a229668a5d", + "etherscanUrl": "https://etherscan.io/address/0xf7e61417b1613da1fcf8bea19ebfa6a229668a5d", + "xHandle": "239ailabs", + "xUrl": "https://twitter.com/239ailabs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_258648", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arissp", + "displayName": "Aris.base.eth", + "fid": 258648, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d70bee4-c1dc-4546-7801-97d333cc5400/rectcrop3", + "followers": 533, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x098d70be405dd3e5ae63a40ca26928aadcf838bb", + "etherscanUrl": "https://etherscan.io/address/0x098d70be405dd3e5ae63a40ca26928aadcf838bb", + "xHandle": "arissp07", + "xUrl": "https://twitter.com/arissp07", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260670", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mmarifrzk", + "displayName": "Ngotskuy", + "fid": 260670, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f5577403-0656-4871-12aa-2d4ab14e0400/original", + "followers": 533, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9ed1aaf1d6f7354758c90e149205588189ecc34", + "etherscanUrl": "https://etherscan.io/address/0xc9ed1aaf1d6f7354758c90e149205588189ecc34", + "xHandle": "angots666", + "xUrl": "https://twitter.com/angots666", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_256783", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "donny2704", + "displayName": "Donny Saputra", + "fid": 256783, + "pfpUrl": "https://i.imgur.com/4w9mfkq.jpg", + "followers": 531, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfee6fed4f67a765ca454fa006f65a2aeb83e53fa", + "etherscanUrl": "https://etherscan.io/address/0xfee6fed4f67a765ca454fa006f65a2aeb83e53fa", + "xHandle": "donny2704", + "xUrl": "https://twitter.com/donny2704", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1090713", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xbigb.eth", + "displayName": "大B哥|🟣等福报中", + "fid": 1090713, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b23673ab-4fba-42b3-0659-2e43145d7800/original", + "followers": 525, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0809d0ecc6353228b47f0c801b20b61b2d01db80", + "etherscanUrl": "https://etherscan.io/address/0x0809d0ecc6353228b47f0c801b20b61b2d01db80", + "xHandle": "sillydragon4488", + "xUrl": "https://twitter.com/sillydragon4488", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257033", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jazy", + "displayName": "Jazz.eth", + "fid": 257033, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41aaf364-067b-469e-704d-c0c8955fb900/original", + "followers": 522, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb13a89515102abf2e66f6682f91f65d43dc5334", + "etherscanUrl": "https://etherscan.io/address/0xfb13a89515102abf2e66f6682f91f65d43dc5334", + "xHandle": "davidtrumpeth", + "xUrl": "https://twitter.com/davidtrumpeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117360", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shifat007", + "displayName": "SHIFAT 🧬", + "fid": 1117360, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f33282f-edc1-4e05-5a56-bb000892a400/original", + "followers": 521, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d2fff566f7c2f6c620bb3826f65ec7d4c970190", + "etherscanUrl": "https://etherscan.io/address/0x4d2fff566f7c2f6c620bb3826f65ec7d4c970190", + "xHandle": "shifat01644", + "xUrl": "https://twitter.com/shifat01644", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11561", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "starcraft2.eth", + "displayName": "starcraft2.hl", + "fid": 11561, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e349caa8-89e3-4bf0-5c13-29cc02017900/original", + "followers": 521, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a280de2ab7236bc9612b2977bc9cab4406ffec9", + "etherscanUrl": "https://etherscan.io/address/0x5a280de2ab7236bc9612b2977bc9cab4406ffec9", + "xHandle": "user_starcraft2", + "xUrl": "https://twitter.com/user_starcraft2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1113286", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basebiggy", + "displayName": "BaseBiggy", + "fid": 1113286, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc3c9081-bdb3-4169-7959-e99f64a3d200/original", + "followers": 520, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6490e0c69477613dbe1c4a97b2ee082b62566337", + "etherscanUrl": "https://etherscan.io/address/0x6490e0c69477613dbe1c4a97b2ee082b62566337", + "xHandle": "basebiggy", + "xUrl": "https://twitter.com/basebiggy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_276902", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drizky", + "displayName": "AlfarizkyDafka", + "fid": 276902, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee26d9b8-8f12-4c2e-cab2-e50c16a48a00/rectcrop3", + "followers": 516, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf748d693b2ec184c297984ac77e3a53d0be2435d", + "etherscanUrl": "https://etherscan.io/address/0xf748d693b2ec184c297984ac77e3a53d0be2435d", + "xHandle": "tsaputra77", + "xUrl": "https://twitter.com/tsaputra77", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_305948", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dnzcrypto", + "displayName": "0xDanssky", + "fid": 305948, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5b045a61-610b-4e2b-3c81-8a8410363a00/rectcrop3", + "followers": 514, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61cf19b61339a25b319f5e47d86e92489f131fcd", + "etherscanUrl": "https://etherscan.io/address/0x61cf19b61339a25b319f5e47d86e92489f131fcd", + "xHandle": "saymajime", + "xUrl": "https://twitter.com/saymajime", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_217630", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sashanka.eth", + "displayName": "SASHANKA SEKHAR DEY", + "fid": 217630, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af99bdcb-9257-4116-3ef1-61887b836b00/original", + "followers": 513, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x597cfd2099b106bd79ac57ce1ccd8a5b6cc40803", + "etherscanUrl": "https://etherscan.io/address/0x597cfd2099b106bd79ac57ce1ccd8a5b6cc40803", + "xHandle": "sashankadey45", + "xUrl": "https://twitter.com/sashankadey45", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_249478", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maximleader.eth", + "displayName": "Maximbase", + "fid": 249478, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/112e3a72-3795-4ec1-6ae7-bef55ee1d600/original", + "followers": 513, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a86f38187e8dbd7eab3e0bbdc98d550916f545a", + "etherscanUrl": "https://etherscan.io/address/0x1a86f38187e8dbd7eab3e0bbdc98d550916f545a", + "xHandle": "maximbase", + "xUrl": "https://twitter.com/maximbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_575438", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lithium34", + "displayName": "Fatih 🟦 base.eth", + "fid": 575438, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c8a6cb69-4bca-4811-dcca-4f0548db3300/original", + "followers": 507, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65fa778f241124b4fe583893b2a857f64e287c50", + "etherscanUrl": "https://etherscan.io/address/0x65fa778f241124b4fe583893b2a857f64e287c50", + "xHandle": "fatih8282174527", + "xUrl": "https://twitter.com/fatih8282174527", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_299675", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "almuksi", + "displayName": "al_si.base 🟦", + "fid": 299675, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9375cfd-91bf-4c08-5d00-f9bf91e58400/rectcrop3", + "followers": 500, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee80bde1a41117af469a70638286059b4ae9e39c", + "etherscanUrl": "https://etherscan.io/address/0xee80bde1a41117af469a70638286059b4ae9e39c", + "xHandle": "uciuchiha", + "xUrl": "https://twitter.com/uciuchiha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_217269", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "2toneartist", + "displayName": "2Tone", + "fid": 217269, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66be1e6b-58db-42c6-2873-1284f8e5a500/original", + "followers": 498, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe73e7c78f181497a3ba705c71b1630289d7387bb", + "etherscanUrl": "https://etherscan.io/address/0xe73e7c78f181497a3ba705c71b1630289d7387bb", + "xHandle": "2tone_artist", + "xUrl": "https://twitter.com/2tone_artist", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_896968", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "truemarkets", + "displayName": "Truemarkets", + "fid": 896968, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/480a46f2-138e-4ce9-0b19-aa62e52b3c00/rectcrop3", + "followers": 498, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x497aa315434ac7060ba0aac0b829357de52a0ff8", + "etherscanUrl": "https://etherscan.io/address/0x497aa315434ac7060ba0aac0b829357de52a0ff8", + "xHandle": "truemarketsorg", + "xUrl": "https://twitter.com/truemarketsorg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_533626", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nomankhan797e", + "displayName": "Noman Khan \"base.eth\"", + "fid": 533626, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ec6b56b-9182-4780-81a0-7ec36f7e9700/rectcrop3", + "followers": 496, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x310613403e3e188ba25a7c3940d07baae5547605", + "etherscanUrl": "https://etherscan.io/address/0x310613403e3e188ba25a7c3940d07baae5547605", + "xHandle": "nomankhan797g", + "xUrl": "https://twitter.com/nomankhan797g", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14642", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "frenchy.eth", + "displayName": "Mazzy", + "fid": 14642, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec5a40f6-d894-4bca-fabc-af4e6b8a9500/original", + "followers": 495, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f57904e95d17dfb405160adbac3fda5e2cbb8b2", + "etherscanUrl": "https://etherscan.io/address/0x5f57904e95d17dfb405160adbac3fda5e2cbb8b2", + "xHandle": "mazzydoteth", + "xUrl": "https://twitter.com/mazzydoteth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3560", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rickcrosschain", + "displayName": "Rick Crosschain", + "fid": 3560, + "pfpUrl": "https://i.imgur.com/U7CFZ5i.jpg", + "followers": 491, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb00bad4ad2f1b7caa6adbc968c1193c0435dc28", + "etherscanUrl": "https://etherscan.io/address/0xeb00bad4ad2f1b7caa6adbc968c1193c0435dc28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251993", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quzzlpu20", + "displayName": "AgusEpendi 🎩 🍕", + "fid": 251993, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99997a43-3399-4030-cf37-e0b689b37b00/original", + "followers": 491, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf54a9262841817f3e6eebbbdfe46c2993229c735", + "etherscanUrl": "https://etherscan.io/address/0xf54a9262841817f3e6eebbbdfe46c2993229c735", + "xHandle": "adelia100599", + "xUrl": "https://twitter.com/adelia100599", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2880", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xknight", + "displayName": "0x_Knight 🎩", + "fid": 2880, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5955131e-6748-4082-1250-cc6658c37200/original", + "followers": 490, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x384e8b96cd1a72ccd11b445af8a567743d0c62c1", + "etherscanUrl": "https://etherscan.io/address/0x384e8b96cd1a72ccd11b445af8a567743d0c62c1", + "xHandle": "0x_knight", + "xUrl": "https://twitter.com/0x_knight", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_567960", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "roshansingh", + "displayName": "RoshanSingh", + "fid": 567960, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f0dd91d2-97b3-42b2-f348-8cdb33697700/original", + "followers": 488, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc9a0cbff6aa98b775fc1dfc683139b287a7b399", + "etherscanUrl": "https://etherscan.io/address/0xbc9a0cbff6aa98b775fc1dfc683139b287a7b399", + "xHandle": "technicalrosha6", + "xUrl": "https://twitter.com/technicalrosha6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_612957", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "themetadegen", + "displayName": "themetadegen.base.eth", + "fid": 612957, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47663f55-69b6-40ea-3b0f-14d5bf66ed00/original", + "followers": 487, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a60b22308eac879052ef9ac33cb6f74a364a7f7", + "etherscanUrl": "https://etherscan.io/address/0x8a60b22308eac879052ef9ac33cb6f74a364a7f7", + "xHandle": "_themetadegen", + "xUrl": "https://twitter.com/_themetadegen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_274116", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eraa", + "displayName": "Eraa", + "fid": 274116, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab706fdc-8e16-4079-a4e3-4e58446e2300/original", + "followers": 487, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e2865cf89ec947da933661e6e52b01760f3d4ee", + "etherscanUrl": "https://etherscan.io/address/0x0e2865cf89ec947da933661e6e52b01760f3d4ee", + "xHandle": "akun08383", + "xUrl": "https://twitter.com/akun08383", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1331904", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "unddupnext", + "displayName": "Undd zerozeroseven 🦅🦅", + "fid": 1331904, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/294f7323-0fcd-4640-c8de-d6f9fa585800/original", + "followers": 487, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0260d5a0098b02edac6dc6e2b32b12b42576e99", + "etherscanUrl": "https://etherscan.io/address/0xc0260d5a0098b02edac6dc6e2b32b12b42576e99", + "xHandle": "undd2060", + "xUrl": "https://twitter.com/undd2060", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_297212", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ferdj", + "displayName": "Fer", + "fid": 297212, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/834fa91a-12ab-4b82-3d3f-23ce1316a800/rectcrop3", + "followers": 486, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x777394a03b62c802edac4168501a96c357e9750c", + "etherscanUrl": "https://etherscan.io/address/0x777394a03b62c802edac4168501a96c357e9750c", + "xHandle": "ferdjpoker", + "xUrl": "https://twitter.com/ferdjpoker", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_568111", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vineethsingh", + "displayName": "VineethSingh", + "fid": 568111, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdff9e87-dce2-4224-f38a-33298b482400/original", + "followers": 484, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b68e3a396ab7a275ca388ca349d4950105df552", + "etherscanUrl": "https://etherscan.io/address/0x9b68e3a396ab7a275ca388ca349d4950105df552", + "xHandle": "vineethsingh785", + "xUrl": "https://twitter.com/vineethsingh785", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1025388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vipulpapriwal", + "displayName": "Vipul Papriwal", + "fid": 1025388, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3f80f7f-5eab-48be-88c0-a0dc27b4c200/rectcrop3", + "followers": 477, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x921bc01f8b105b831f01ec6619ff915b41de9fa8", + "etherscanUrl": "https://etherscan.io/address/0x921bc01f8b105b831f01ec6619ff915b41de9fa8", + "xHandle": "vipulpapriwal", + "xUrl": "https://twitter.com/vipulpapriwal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_346145", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demmich", + "displayName": "Demmich", + "fid": 346145, + "pfpUrl": "https://i.imgur.com/Ud3ttUP.jpg", + "followers": 475, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a4bc81a5ed2f8bf84863b2a08a8aa5eeb5da36b", + "etherscanUrl": "https://etherscan.io/address/0x1a4bc81a5ed2f8bf84863b2a08a8aa5eeb5da36b", + "xHandle": "0xdemmich", + "xUrl": "https://twitter.com/0xdemmich", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_559", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vinam", + "displayName": "Vinam Suri", + "fid": 559, + "pfpUrl": "https://i.imgur.com/usCWmEr.jpg", + "followers": 475, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd93af9f2b80ee699de85495ac45a453cd0ada586", + "etherscanUrl": "https://etherscan.io/address/0xd93af9f2b80ee699de85495ac45a453cd0ada586", + "xHandle": "surivinam", + "xUrl": "https://twitter.com/surivinam", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_889982", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "virility", + "displayName": "Shillian Wakespeare", + "fid": 889982, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f759ca13-34a8-4595-afd4-53706736a300/original", + "followers": 473, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x567d1518fb0c812905d967da7071aa649904a877", + "etherscanUrl": "https://etherscan.io/address/0x567d1518fb0c812905d967da7071aa649904a877", + "xHandle": "noomnole", + "xUrl": "https://twitter.com/noomnole", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19391", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "imaan", + "displayName": "0ximan.base.eth🧬", + "fid": 19391, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f5fad33c-7f14-4f96-b917-6a3a535e0800/original", + "followers": 471, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75baa79bba289c00d9ab083f12f6cd1675885eb3", + "etherscanUrl": "https://etherscan.io/address/0x75baa79bba289c00d9ab083f12f6cd1675885eb3", + "xHandle": "imanpjnir", + "xUrl": "https://twitter.com/imanpjnir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_404703", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jawarpe", + "displayName": "jAWarpé", + "fid": 404703, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07c2dad9-3eee-441e-2583-6824e911c400/original", + "followers": 465, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0807da85b2af462edd8a1855f4d301fba1f74ae", + "etherscanUrl": "https://etherscan.io/address/0xf0807da85b2af462edd8a1855f4d301fba1f74ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14662", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stupidonny27", + "displayName": "Donny 🧬", + "fid": 14662, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a42aa1ff-51b5-4c64-cc65-73d2acca4200/rectcrop3", + "followers": 460, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb10cc873c90afe981ddf7f647e783fb2c5952014", + "etherscanUrl": "https://etherscan.io/address/0xb10cc873c90afe981ddf7f647e783fb2c5952014", + "xHandle": "dondonkuy", + "xUrl": "https://twitter.com/dondonkuy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_438344", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dragunov", + "displayName": "DR4GUNOV🐹🎭🙈👾", + "fid": 438344, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69c9ea1c-7e27-47c8-d076-0c273b717700/original", + "followers": 459, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d04d2a80c33334c9bd02fcbe5f9f8b7ff1fc66f", + "etherscanUrl": "https://etherscan.io/address/0x0d04d2a80c33334c9bd02fcbe5f9f8b7ff1fc66f", + "xHandle": "holoholo184797", + "xUrl": "https://twitter.com/holoholo184797", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1408120", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elonboss", + "displayName": "Elonboss", + "fid": 1408120, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59c050c-5ea1-4f97-6fe7-6750250bc200/original", + "followers": 457, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23b400a8d9c8133cc7a86c90f871848fa5f18d05", + "etherscanUrl": "https://etherscan.io/address/0x23b400a8d9c8133cc7a86c90f871848fa5f18d05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_264455", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "patron", + "displayName": "Alex El Patron", + "fid": 264455, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7d9bf4f1-f7ba-4d56-7482-4bb1cb96ee00/rectcrop3", + "followers": 455, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb00652fe6e3be1a7bd29ea9df2c7aca46bb8c55c", + "etherscanUrl": "https://etherscan.io/address/0xb00652fe6e3be1a7bd29ea9df2c7aca46bb8c55c", + "xHandle": "defiturkiye", + "xUrl": "https://twitter.com/defiturkiye", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189532", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xpeter", + "displayName": "Peter", + "fid": 189532, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f64d786b-d6bf-4c12-45c7-d49858b91200/rectcrop3", + "followers": 447, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0a412aa99b74704b8adc7f8731bbda6591ebf43", + "etherscanUrl": "https://etherscan.io/address/0xf0a412aa99b74704b8adc7f8731bbda6591ebf43", + "xHandle": "0xpeternguyen", + "xUrl": "https://twitter.com/0xpeternguyen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_274278", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babycow", + "displayName": "Jennifer", + "fid": 274278, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ec3f905-da64-4004-d461-2e1d9687fe00/original", + "followers": 441, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x761beda5b1a96710836919510677dff6c462591c", + "etherscanUrl": "https://etherscan.io/address/0x761beda5b1a96710836919510677dff6c462591c", + "xHandle": "btcbabycow", + "xUrl": "https://twitter.com/btcbabycow", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_560539", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jawadms", + "displayName": "Shuaibu Muhammed Jawad ", + "fid": 560539, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be3454a4-a6f6-4d67-d3a0-5df699b1a300/rectcrop3", + "followers": 438, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3cbb7b33de65d61f0b0851eff7ddea39fb74db7", + "etherscanUrl": "https://etherscan.io/address/0xd3cbb7b33de65d61f0b0851eff7ddea39fb74db7", + "xHandle": "jawadms", + "xUrl": "https://twitter.com/jawadms", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1056890", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xorloveski49", + "displayName": "xorloveski49", + "fid": 1056890, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ceb71c19-0c90-41d9-b741-228b5b3e6900/original", + "followers": 433, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x202cab0460a9cc210dd6312a7e528380d2fe4036", + "etherscanUrl": "https://etherscan.io/address/0x202cab0460a9cc210dd6312a7e528380d2fe4036", + "xHandle": "xorloveski", + "xUrl": "https://twitter.com/xorloveski", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_982091", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ladylight", + "displayName": "Lady Light", + "fid": 982091, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f77851a0-559c-4765-abff-89a1aa98ad00/rectcrop3", + "followers": 428, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdbc40fcbfb1bf72c4c936c503b5c2e61b67bc88", + "etherscanUrl": "https://etherscan.io/address/0xbdbc40fcbfb1bf72c4c936c503b5c2e61b67bc88", + "xHandle": "lady_light_lsk", + "xUrl": "https://twitter.com/lady_light_lsk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_579082", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "enerdgiua", + "displayName": "Ihor Grischenko", + "fid": 579082, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd8e6632-32b3-4b97-a124-210a3c2b3200/rectcrop3", + "followers": 428, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6e0aa21f60a7f7507d56b0b1f02187034fef696", + "etherscanUrl": "https://etherscan.io/address/0xd6e0aa21f60a7f7507d56b0b1f02187034fef696", + "xHandle": "nouxau83", + "xUrl": "https://twitter.com/nouxau83", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_266713", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bayz19", + "displayName": "Bayz19", + "fid": 266713, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9d76912-326c-4663-715c-dfe6586f3900/original", + "followers": 427, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65f941d86d5dbd8aa8087b16d6ac0ef77f35c44c", + "etherscanUrl": "https://etherscan.io/address/0x65f941d86d5dbd8aa8087b16d6ac0ef77f35c44c", + "xHandle": "bayushrl19", + "xUrl": "https://twitter.com/bayushrl19", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_434709", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drizz21", + "displayName": "yzyy", + "fid": 434709, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 423, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6742307b3d09b06e9ce719427a95650f0d6b0b4", + "etherscanUrl": "https://etherscan.io/address/0xc6742307b3d09b06e9ce719427a95650f0d6b0b4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_561399", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kidmyr.eth", + "displayName": "Kidmyr", + "fid": 561399, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9832e64f-f7bc-4813-b67f-9a65606e5900/original", + "followers": 422, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee2bb96a633e50de9cbc8b4229b07cef9a008852", + "etherscanUrl": "https://etherscan.io/address/0xee2bb96a633e50de9cbc8b4229b07cef9a008852", + "xHandle": "k1dmyr", + "xUrl": "https://twitter.com/k1dmyr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_317304", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "airdropsilents", + "displayName": "Hanangelia 🍖x100 🍡🎭", + "fid": 317304, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27c151a7-90ef-49dd-4989-5290d34edf00/rectcrop3", + "followers": 420, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6eb789ac6fc408b7d452cf31145a5febcfde626e", + "etherscanUrl": "https://etherscan.io/address/0x6eb789ac6fc408b7d452cf31145a5febcfde626e", + "xHandle": "airdropsilents", + "xUrl": "https://twitter.com/airdropsilents", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050419", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptolust", + "displayName": "Cryptolust", + "fid": 1050419, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cbe01177-8a16-4e11-0392-1f7419050300/original", + "followers": 419, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb30b659406f00af4ba486a084002a1eeaf8c3270", + "etherscanUrl": "https://etherscan.io/address/0xb30b659406f00af4ba486a084002a1eeaf8c3270", + "xHandle": "cryptolust_nft", + "xUrl": "https://twitter.com/cryptolust_nft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246169", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shutdown", + "displayName": "Shutdown ", + "fid": 246169, + "pfpUrl": "https://i.imgur.com/Ia410UN.jpg", + "followers": 416, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0f9f75b72bc97f5c6aaf362b6d6a967b50fecd4e", + "etherscanUrl": "https://etherscan.io/address/0x0f9f75b72bc97f5c6aaf362b6d6a967b50fecd4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_334951", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "airdropusa1", + "displayName": "Md Moniruzzaman (Nishan)", + "fid": 334951, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2ef8c02-b247-4c7f-9f4b-1bcb27a01800/original", + "followers": 416, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07b3dfb9ff621c1dddf49681192f2b47b706a26e", + "etherscanUrl": "https://etherscan.io/address/0x07b3dfb9ff621c1dddf49681192f2b47b706a26e", + "xHandle": "mdmonir56518446", + "xUrl": "https://twitter.com/mdmonir56518446", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17287", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "based", + "displayName": "based", + "fid": 17287, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/015fa50e-663f-41c7-e7ee-067e32d8d500/original", + "followers": 414, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x093679494ae099fb4074ec0528a7ccd076a9d0a4", + "etherscanUrl": "https://etherscan.io/address/0x093679494ae099fb4074ec0528a7ccd076a9d0a4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_493537", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "grif", + "displayName": "Grif", + "fid": 493537, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_m3u8,f_png/v1757513217/video_uploads/1a2c0bcd-6efa-4420-ac52-8423d451b9e1.png", + "followers": 409, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x511227c444d741779414b6f35782da01cc88414c", + "etherscanUrl": "https://etherscan.io/address/0x511227c444d741779414b6f35782da01cc88414c", + "xHandle": "grif_gg", + "xUrl": "https://twitter.com/grif_gg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1084542", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "inspectorredflag", + "displayName": "Inspectorredflag.base.eth", + "fid": 1084542, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3316d197-e25e-4b82-2d80-e854e21f4400/original", + "followers": 400, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf5cb08926a1bb87c61b9149334e20c2ca6df0c19", + "etherscanUrl": "https://etherscan.io/address/0xf5cb08926a1bb87c61b9149334e20c2ca6df0c19", + "xHandle": "dt_talley", + "xUrl": "https://twitter.com/dt_talley", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_241491", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "m231", + "displayName": "MG", + "fid": 241491, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/330c81a2-a3a3-462a-ad66-f0048a776d00/original", + "followers": 399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf94455caceae382f9e951f503080b5decd6dde1", + "etherscanUrl": "https://etherscan.io/address/0xaf94455caceae382f9e951f503080b5decd6dde1", + "xHandle": "m2310g", + "xUrl": "https://twitter.com/m2310g", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492595", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adewale118", + "displayName": "RILIWAN KAZEEM🎩", + "fid": 492595, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab2f2185-f027-453a-f966-a732a5f19800/rectcrop3", + "followers": 399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a7f8eedc3552be192f4644502b3c55f1879921d", + "etherscanUrl": "https://etherscan.io/address/0x9a7f8eedc3552be192f4644502b3c55f1879921d", + "xHandle": "kazeemriliwana1", + "xUrl": "https://twitter.com/kazeemriliwana1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_375659", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "livenlearn47", + "displayName": "baselife.base.eth🎩", + "fid": 375659, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f46971b-44a3-4218-91ee-52a9e865b900/original", + "followers": 399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9811b3b6b7f3a0b171c15e2c3bf2fb41eea85638", + "etherscanUrl": "https://etherscan.io/address/0x9811b3b6b7f3a0b171c15e2c3bf2fb41eea85638", + "xHandle": "livenlearn47", + "xUrl": "https://twitter.com/livenlearn47", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20313", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "orcndwarf.eth", + "displayName": "Orcndwarf 🌈", + "fid": 20313, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0841999e-32c4-4915-6395-bee536e32500/original", + "followers": 397, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2efccaff5db9b8ca241288a5eeb84cd9ffda7341", + "etherscanUrl": "https://etherscan.io/address/0x2efccaff5db9b8ca241288a5eeb84cd9ffda7341", + "xHandle": "mattrom", + "xUrl": "https://twitter.com/mattrom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_237602", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drophyte", + "displayName": "drophyte", + "fid": 237602, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6df65952-13b2-4a00-3adf-9d02c5c20900/original", + "followers": 397, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26cd3b3f82cf9980ebe3ca57f60b4416e091c360", + "etherscanUrl": "https://etherscan.io/address/0x26cd3b3f82cf9980ebe3ca57f60b4416e091c360", + "xHandle": "drophyte", + "xUrl": "https://twitter.com/drophyte", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_342036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "michaelgee", + "displayName": "Michaela 🎩🎭⚡", + "fid": 342036, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1afc1cd2-86a4-4fd0-1e13-44cd7665e800/rectcrop3", + "followers": 388, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa894e0c3e28298a41e7253105e2f6ebc483ef0d5", + "etherscanUrl": "https://etherscan.io/address/0xa894e0c3e28298a41e7253105e2f6ebc483ef0d5", + "xHandle": "oxmomonoskie", + "xUrl": "https://twitter.com/oxmomonoskie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_231652", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "2blunt4u", + "displayName": "2Blunt4u", + "fid": 231652, + "pfpUrl": "https://i.imgur.com/X9kgTPi.jpg", + "followers": 386, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e8d1624f68852bfc725f095c9cfe66e523656c6", + "etherscanUrl": "https://etherscan.io/address/0x9e8d1624f68852bfc725f095c9cfe66e523656c6", + "xHandle": "2_blunt4u", + "xUrl": "https://twitter.com/2_blunt4u", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1077510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gon0x.eth", + "displayName": "Gon", + "fid": 1077510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/379eb665-8c25-4c62-4d83-060429575200/original", + "followers": 385, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc002ad4e9b1dab521216be7a8f5936f2f363cbcc", + "etherscanUrl": "https://etherscan.io/address/0xc002ad4e9b1dab521216be7a8f5936f2f363cbcc", + "xHandle": "gon0x_", + "xUrl": "https://twitter.com/gon0x_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_455653", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cashcation.eth", + "displayName": "takeshi", + "fid": 455653, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed5504f6-dab8-45ff-4f3d-0e1a1201bf00/original", + "followers": 384, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x28dc4bcd9eec159b55296e8e0804b13deebf479b", + "etherscanUrl": "https://etherscan.io/address/0x28dc4bcd9eec159b55296e8e0804b13deebf479b", + "xHandle": "r4dyrfzac5hzzh1", + "xUrl": "https://twitter.com/r4dyrfzac5hzzh1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257004", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "duitghoib", + "displayName": "Jacksaw.base.eth", + "fid": 257004, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeiaryrtxzhaqorhkmrtxvw2fb7fxyd23t6eqhisbs66bh2srkuwnsu", + "followers": 383, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ceb065b822dc276db14fb213662b89b1e8eb43e", + "etherscanUrl": "https://etherscan.io/address/0x6ceb065b822dc276db14fb213662b89b1e8eb43e", + "xHandle": "shibaswhap", + "xUrl": "https://twitter.com/shibaswhap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1188728", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arthustle", + "displayName": "Arthustle", + "fid": 1188728, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9757828-e0ee-4cff-45ff-35b02eddb600/original", + "followers": 382, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17483352a4f376d2a5e99fac4f3d52a4009d4ac0", + "etherscanUrl": "https://etherscan.io/address/0x17483352a4f376d2a5e99fac4f3d52a4009d4ac0", + "xHandle": "arthustlex", + "xUrl": "https://twitter.com/arthustlex", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1078184", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yohaneswaleho", + "displayName": "Yohanes", + "fid": 1078184, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a88ec0d-92ad-404b-dce0-731aa8351f00/original", + "followers": 382, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdca79950402e3c60f9938930500861e3b7443342", + "etherscanUrl": "https://etherscan.io/address/0xdca79950402e3c60f9938930500861e3b7443342", + "xHandle": "robothnezz", + "xUrl": "https://twitter.com/robothnezz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_495510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pallabrout", + "displayName": "Pallab Kumar Rout", + "fid": 495510, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeidv4j2lqgrxvgbaxd2zsxswqag2xbccnj6y3rixmpzlxlxiramsy4", + "followers": 381, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7dfeed9f265fc5519611a4a18ef2683f3dc7857", + "etherscanUrl": "https://etherscan.io/address/0xc7dfeed9f265fc5519611a4a18ef2683f3dc7857", + "xHandle": "pallavrout", + "xUrl": "https://twitter.com/pallavrout", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_417233", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rseal", + "displayName": "rseal", + "fid": 417233, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d431f6b7-c106-4e62-1671-a39b9af36000/original", + "followers": 380, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70b45589630ed87f69e2848dc314dbab754edd35", + "etherscanUrl": "https://etherscan.io/address/0x70b45589630ed87f69e2848dc314dbab754edd35", + "xHandle": "gamefinanceru", + "xUrl": "https://twitter.com/gamefinanceru", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nowheresafe", + "displayName": "Nowhere_safe", + "fid": 20702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5232206-757e-4e8f-f74a-0414355cae00/original", + "followers": 379, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31ecee563b6259d308f830be559bbf663adddf6e", + "etherscanUrl": "https://etherscan.io/address/0x31ecee563b6259d308f830be559bbf663adddf6e", + "xHandle": "nowhere_safe", + "xUrl": "https://twitter.com/nowhere_safe", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_561059", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohan22333", + "displayName": "Surala Mohanrao", + "fid": 561059, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5f308b3-5ad3-4171-9fd8-b9d1f8a71800/rectcrop3", + "followers": 376, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2d391dc01489c919068456329a848bc244e586f", + "etherscanUrl": "https://etherscan.io/address/0xe2d391dc01489c919068456329a848bc244e586f", + "xHandle": "prasadtech9090", + "xUrl": "https://twitter.com/prasadtech9090", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_329223", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demonstarieze", + "displayName": "Demonstarieze✈️", + "fid": 329223, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763291483/5ce8966c-2852-464f-8c91-b91bbe1f8b99.jpg", + "followers": 374, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f383173eb4a3d9b3f7faa7befbc7ea75d07ef66", + "etherscanUrl": "https://etherscan.io/address/0x3f383173eb4a3d9b3f7faa7befbc7ea75d07ef66", + "xHandle": "lordmorbido", + "xUrl": "https://twitter.com/lordmorbido", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1078302", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alary-creates", + "displayName": "Real Soul", + "fid": 1078302, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16902bbf-fdde-475f-77f7-b1f13a3d9000/original", + "followers": 372, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5da5b333e10a5271b673d01defad9e272446e45f", + "etherscanUrl": "https://etherscan.io/address/0x5da5b333e10a5271b673d01defad9e272446e45f", + "xHandle": "infant_cthulhu", + "xUrl": "https://twitter.com/infant_cthulhu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1021902", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lordkolie", + "displayName": "Kolie.base.eth", + "fid": 1021902, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f150fd6-0593-4074-5b63-3e731deee800/original", + "followers": 371, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9fef029521c7f2f7917f5f4a4cb3320d381e9e2", + "etherscanUrl": "https://etherscan.io/address/0xf9fef029521c7f2f7917f5f4a4cb3320d381e9e2", + "xHandle": "lordkolie", + "xUrl": "https://twitter.com/lordkolie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_498678", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "disciple", + "displayName": "Disciple", + "fid": 498678, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47d49b91-2f2e-4064-047e-13bb202ba100/rectcrop3", + "followers": 365, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8235f407480884ea12db9c6016b65466c47450e1", + "etherscanUrl": "https://etherscan.io/address/0x8235f407480884ea12db9c6016b65466c47450e1", + "xHandle": "mathburn666", + "xUrl": "https://twitter.com/mathburn666", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_315212", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oxsirkrobinkhan", + "displayName": "Imtiaz.btc", + "fid": 315212, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b248e49f-0aaa-4d70-bf90-170e8b80ea00/rectcrop3", + "followers": 363, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcdd8d7ab341300379b9d3954c8c4daeaf39b70a", + "etherscanUrl": "https://etherscan.io/address/0xfcdd8d7ab341300379b9d3954c8c4daeaf39b70a", + "xHandle": "imtiaz_btc", + "xUrl": "https://twitter.com/imtiaz_btc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045855", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "seahawksquawk", + "displayName": "Nick", + "fid": 1045855, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2720ae56-1ef2-43c0-23ab-c38a35ea3300/rectcrop3", + "followers": 361, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc81178cbf294124c34e0e58dca6587be7e9c8732", + "etherscanUrl": "https://etherscan.io/address/0xc81178cbf294124c34e0e58dca6587be7e9c8732", + "xHandle": "cryptoslatestn1", + "xUrl": "https://twitter.com/cryptoslatestn1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_243949", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oxxyy13", + "displayName": "Oxxyy", + "fid": 243949, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34c4302d-803c-45b6-eae9-8404d8418700/original", + "followers": 361, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc451a6b34b7ecef9f8cca2648cd6c620a6f361c8", + "etherscanUrl": "https://etherscan.io/address/0xc451a6b34b7ecef9f8cca2648cd6c620a6f361c8", + "xHandle": "oxxyy13", + "xUrl": "https://twitter.com/oxxyy13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1314539", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "encodedchat", + "displayName": "Encoded Chat", + "fid": 1314539, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f849bf5-fae4-4621-183d-a4d0dbd3b800/original", + "followers": 359, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fd38b5d9e0c0ddedceadf8c546031a01a3fbb73", + "etherscanUrl": "https://etherscan.io/address/0x0fd38b5d9e0c0ddedceadf8c546031a01a3fbb73", + "xHandle": "encodedchat", + "xUrl": "https://twitter.com/encodedchat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_689010", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "borisych", + "displayName": "Borys", + "fid": 689010, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca6005dd-9232-4ba4-257d-bcc6fa4e0500/rectcrop3", + "followers": 358, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5445b7ed541cfb79f7b6c73ce1c228e85b011f9a", + "etherscanUrl": "https://etherscan.io/address/0x5445b7ed541cfb79f7b6c73ce1c228e85b011f9a", + "xHandle": "borys3833296563", + "xUrl": "https://twitter.com/borys3833296563", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_649105", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sorenex", + "displayName": "Soren Wilder", + "fid": 649105, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40fb491a-1412-4aa9-f461-a552101bb400/rectcrop3", + "followers": 358, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf886f145e223ef7bb12c611949c8b2d86871cbb4", + "etherscanUrl": "https://etherscan.io/address/0xf886f145e223ef7bb12c611949c8b2d86871cbb4", + "xHandle": "elizaveta616326", + "xUrl": "https://twitter.com/elizaveta616326", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "digidigit.eth", + "displayName": "digidigit", + "fid": 10197, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63a27022-d044-470b-8524-ca06730c5f00/original", + "followers": 357, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f0227cf46f44bfa68bfcf2d7fa8234eb36863ed", + "etherscanUrl": "https://etherscan.io/address/0x9f0227cf46f44bfa68bfcf2d7fa8234eb36863ed", + "xHandle": "digi_digit", + "xUrl": "https://twitter.com/digi_digit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_255044", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arbik88", + "displayName": "Nonton Bareng", + "fid": 255044, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f26f91e-d66a-49c6-fa65-d309ba8a4a00/rectcrop3", + "followers": 355, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x69f7991249e68df64fbc7722eab4d87fbf581ad6", + "etherscanUrl": "https://etherscan.io/address/0x69f7991249e68df64fbc7722eab4d87fbf581ad6", + "xHandle": "ryoozjin", + "xUrl": "https://twitter.com/ryoozjin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_651924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "volodymyr2202", + "displayName": "Vladymyr", + "fid": 651924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02d132fd-5225-455e-3348-dd4e8f476200/original", + "followers": 355, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7fb4b7c5ba155ab889dbd1d28c8b594169abfc1", + "etherscanUrl": "https://etherscan.io/address/0xf7fb4b7c5ba155ab889dbd1d28c8b594169abfc1", + "xHandle": "bitcoin_sky_80", + "xUrl": "https://twitter.com/bitcoin_sky_80", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_258804", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "doppelhq.eth", + "displayName": "Halima Virus", + "fid": 258804, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/445cef2f-689c-4e6a-9a57-206a07e91900/original", + "followers": 354, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc4842d215753b38c66f0f903dc71f4c40d11ec7", + "etherscanUrl": "https://etherscan.io/address/0xfc4842d215753b38c66f0f903dc71f4c40d11ec7", + "xHandle": "halimavirus", + "xUrl": "https://twitter.com/halimavirus", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189836", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vstation", + "displayName": "Vstation", + "fid": 189836, + "pfpUrl": "https://i.imgur.com/XAlGwSR.jpg", + "followers": 353, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c9304de81387798093f9d2484ec37288e99182b", + "etherscanUrl": "https://etherscan.io/address/0x9c9304de81387798093f9d2484ec37288e99182b", + "xHandle": "_tnthinh_", + "xUrl": "https://twitter.com/_tnthinh_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_254277", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pools", + "displayName": "pools base.eth", + "fid": 254277, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmVt5BveaHHeSqbrMxdC9cAQQT1pgVuq3cX1jDktVJYUrU?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 352, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44783f4b4fd44de0fdc611807eca7190c0144c96", + "etherscanUrl": "https://etherscan.io/address/0x44783f4b4fd44de0fdc611807eca7190c0144c96", + "xHandle": "jelek9898", + "xUrl": "https://twitter.com/jelek9898", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_411655", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xfaheng", + "displayName": "Neo-法恒", + "fid": 411655, + "pfpUrl": "https://i.imgur.com/iDslyCV.jpg", + "followers": 346, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5e48984c2e569993dcb68ecd84bc328024aa1f2", + "etherscanUrl": "https://etherscan.io/address/0xc5e48984c2e569993dcb68ecd84bc328024aa1f2", + "xHandle": "0xfaheng", + "xUrl": "https://twitter.com/0xfaheng", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_377018", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whirlwind", + "displayName": "Sash", + "fid": 377018, + "pfpUrl": "https://i.imgur.com/rHt9caC.jpg", + "followers": 342, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36b20d3f0bd86e6f7370b7bbd1c2ddc132f3e914", + "etherscanUrl": "https://etherscan.io/address/0x36b20d3f0bd86e6f7370b7bbd1c2ddc132f3e914", + "xHandle": "crypto_sanige", + "xUrl": "https://twitter.com/crypto_sanige", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_360435", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "earlyxxone.eth", + "displayName": "earlyxxone", + "fid": 360435, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a086ccaf-fed5-44ce-e5b6-829df3402200/original", + "followers": 342, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14dc46a8a7fbfaf030e6cddd5b57f3e06dffd029", + "etherscanUrl": "https://etherscan.io/address/0x14dc46a8a7fbfaf030e6cddd5b57f3e06dffd029", + "xHandle": "earlyxxone", + "xUrl": "https://twitter.com/earlyxxone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15295", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dilipkumar", + "displayName": "DilipKumar.base.eth", + "fid": 15295, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87bd70bd-a0f8-4c33-2192-bcf0bbe07800/original", + "followers": 339, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x042d120e37ce5374d7e2f54fe7c1e71ccfb7dbdd", + "etherscanUrl": "https://etherscan.io/address/0x042d120e37ce5374d7e2f54fe7c1e71ccfb7dbdd", + "xHandle": "dilipkumarbd", + "xUrl": "https://twitter.com/dilipkumarbd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_565990", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "derusxbt.eth", + "displayName": "Dee", + "fid": 565990, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60d18e2f-a387-4a0e-1526-344ba1b74400/original", + "followers": 338, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6f089d4cfca6200c1d00deb756300303915c136", + "etherscanUrl": "https://etherscan.io/address/0xf6f089d4cfca6200c1d00deb756300303915c136", + "xHandle": "derusxbt", + "xUrl": "https://twitter.com/derusxbt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146559", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "grinluxury", + "displayName": "Yakubu Yunusa", + "fid": 1146559, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17a2ca8d-52d4-4012-60db-5d119cba8700/original", + "followers": 336, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30df66fc5651ba799d471d8a7287a1639ef4d68c", + "etherscanUrl": "https://etherscan.io/address/0x30df66fc5651ba799d471d8a7287a1639ef4d68c", + "xHandle": "grincurrencey", + "xUrl": "https://twitter.com/grincurrencey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_256531", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xsyks", + "displayName": "⌐◨-◨ 𓆏👾😈", + "fid": 256531, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93799aa7-38b4-427b-be7d-ea5ec1a5c700/original", + "followers": 336, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ff387dd379a0578bbf8c500401bf571060344a5", + "etherscanUrl": "https://etherscan.io/address/0x5ff387dd379a0578bbf8c500401bf571060344a5", + "xHandle": "syks_x", + "xUrl": "https://twitter.com/syks_x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_247921", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bebankless", + "displayName": "Kobie", + "fid": 247921, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0bed009-a175-40aa-3f7d-994679bf5100/original", + "followers": 335, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa52c4e0868ac33fda141563e1bc244ceb32c84a", + "etherscanUrl": "https://etherscan.io/address/0xaa52c4e0868ac33fda141563e1bc244ceb32c84a", + "xHandle": "bebankless", + "xUrl": "https://twitter.com/bebankless", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_387406", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demarco", + "displayName": "demarco 🎩😼🕶", + "fid": 387406, + "pfpUrl": "https://i.imgur.com/LXrwo8P.jpg", + "followers": 332, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8ef8c1145d31417d8593cb94f9dd85adef19630", + "etherscanUrl": "https://etherscan.io/address/0xf8ef8c1145d31417d8593cb94f9dd85adef19630", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "natz", + "displayName": "Natz 🔵", + "fid": 261036, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62ae66d4-fd6a-4dba-e0f2-33b18e45d000/rectcrop3", + "followers": 330, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1996407c670f1d616322dce3a8bbbe126b809e7b", + "etherscanUrl": "https://etherscan.io/address/0x1996407c670f1d616322dce3a8bbbe126b809e7b", + "xHandle": "natzcrypto", + "xUrl": "https://twitter.com/natzcrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16382", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lass", + "displayName": "lass", + "fid": 16382, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300dbc1c-42f9-468a-dfbe-192aaae2b300/original", + "followers": 328, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcac7e9a834c85df04a91411927166082bfd78c8b", + "etherscanUrl": "https://etherscan.io/address/0xcac7e9a834c85df04a91411927166082bfd78c8b", + "xHandle": "lassandfriends", + "xUrl": "https://twitter.com/lassandfriends", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_317583", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "omoko2024", + "displayName": "Omoko Justice Odafe", + "fid": 317583, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eaebeb-8361-4486-764b-4182a38deb00/original", + "followers": 327, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe73a74eb6c903819ee3e8a2b99e25c59469c6792", + "etherscanUrl": "https://etherscan.io/address/0xe73a74eb6c903819ee3e8a2b99e25c59469c6792", + "xHandle": "jakodice1990", + "xUrl": "https://twitter.com/jakodice1990", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_973228", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "s0lverr", + "displayName": "s0lverr", + "fid": 973228, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35eed58c-562d-4d66-d706-2dfab02bf700/original", + "followers": 326, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ce34d81517e6a48a5ad31a332a07e75c87864f9", + "etherscanUrl": "https://etherscan.io/address/0x7ce34d81517e6a48a5ad31a332a07e75c87864f9", + "xHandle": "s0lverr_", + "xUrl": "https://twitter.com/s0lverr_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_326398", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anwarnugr", + "displayName": "0xAnwarnugr", + "fid": 326398, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a45eeee-4ce8-4bf2-bdee-fee3870b3400/original", + "followers": 326, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6c8a84040eaab7de4dc1854a6ee112949505a4c", + "etherscanUrl": "https://etherscan.io/address/0xf6c8a84040eaab7de4dc1854a6ee112949505a4c", + "xHandle": "anwarnugroho11", + "xUrl": "https://twitter.com/anwarnugroho11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2598", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danner", + "displayName": "danner.eth✨", + "fid": 2598, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a133a50-1cb9-4c61-bb04-a0432d452d00/rectcrop3", + "followers": 325, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64dcf1994356eaa03b141b8659f98a457b30307a", + "etherscanUrl": "https://etherscan.io/address/0x64dcf1994356eaa03b141b8659f98a457b30307a", + "xHandle": "drakedanner", + "xUrl": "https://twitter.com/drakedanner", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_381949", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tomatoxyz", + "displayName": "tomato", + "fid": 381949, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ac63710-4985-42cb-8ff3-294ea8337400/original", + "followers": 325, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39dcc2ee514ed87bb56b0e08bba99454bd8a71b0", + "etherscanUrl": "https://etherscan.io/address/0x39dcc2ee514ed87bb56b0e08bba99454bd8a71b0", + "xHandle": "abcxyz_tomato", + "xUrl": "https://twitter.com/abcxyz_tomato", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214888", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kyliekay21", + "displayName": "Kylie Kay Ⓜ️", + "fid": 214888, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89ca2381-28d7-4dce-5196-458daf755f00/rectcrop3", + "followers": 324, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e7dce1d4413afdaddd3108aee9cb098f044015e", + "etherscanUrl": "https://etherscan.io/address/0x4e7dce1d4413afdaddd3108aee9cb098f044015e", + "xHandle": "herritykylie", + "xUrl": "https://twitter.com/herritykylie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_994400", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "angeldeicide", + "displayName": "ANGEL DEICIDE ☥", + "fid": 994400, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b45447e-f919-48e8-b854-89039092ed00/rectcrop3", + "followers": 323, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac97615633d658975b450d2335ac30d0840f8f17", + "etherscanUrl": "https://etherscan.io/address/0xac97615633d658975b450d2335ac30d0840f8f17", + "xHandle": "ang3ld3icid3", + "xUrl": "https://twitter.com/ang3ld3icid3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_411935", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jshears83", + "displayName": "Joshua Shears", + "fid": 411935, + "pfpUrl": "https://i.imgur.com/jKlaDVJ.jpg", + "followers": 323, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf7dbd0313c9c185292feaf528a977bb7954062c", + "etherscanUrl": "https://etherscan.io/address/0xbf7dbd0313c9c185292feaf528a977bb7954062c", + "xHandle": "joshuashears6", + "xUrl": "https://twitter.com/joshuashears6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_883153", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "1hz", + "displayName": "1hz.btc", + "fid": 883153, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eb3e2d3-f1cf-434a-86c4-a685b03fd300/original", + "followers": 320, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9641297298c883b57b4dd2cfe07a37c80c858292", + "etherscanUrl": "https://etherscan.io/address/0x9641297298c883b57b4dd2cfe07a37c80c858292", + "xHandle": "habeebpootchai", + "xUrl": "https://twitter.com/habeebpootchai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_244946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "web3-lord", + "displayName": "Web3_Lord | Potato", + "fid": 244946, + "pfpUrl": "https://i.imgur.com/Pnv2OFb.jpg", + "followers": 316, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcf294004bc6a675bd8c51bd2db2fa8c4e002eae", + "etherscanUrl": "https://etherscan.io/address/0xfcf294004bc6a675bd8c51bd2db2fa8c4e002eae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1059183", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdyasine", + "displayName": "MD Yasine", + "fid": 1059183, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 312, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb808f242eeeeb76fd111502093d224a2d14b0934", + "etherscanUrl": "https://etherscan.io/address/0xb808f242eeeeb76fd111502093d224a2d14b0934", + "xHandle": "mdyaine903", + "xUrl": "https://twitter.com/mdyaine903", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_295626", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naila23", + "displayName": "Kirana.eth", + "fid": 295626, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c994698d-6685-421d-4536-6228a2ee7600/original", + "followers": 312, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c7316193b057180f3c5a72ecd36ad52d0103112", + "etherscanUrl": "https://etherscan.io/address/0x9c7316193b057180f3c5a72ecd36ad52d0103112", + "xHandle": "hasanba74226250", + "xUrl": "https://twitter.com/hasanba74226250", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_442312", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jeykall", + "displayName": "jeykallETH", + "fid": 442312, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9686f623-e2a0-4ede-7c0d-bb7198791d00/rectcrop3", + "followers": 310, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd08a2e07e002f4a2e006815c0c70602ad86b0158", + "etherscanUrl": "https://etherscan.io/address/0xd08a2e07e002f4a2e006815c0c70602ad86b0158", + "xHandle": "jeykall777", + "xUrl": "https://twitter.com/jeykall777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257285", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "axellab", + "displayName": "Appsara", + "fid": 257285, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/49e85544-51a9-4399-ddf3-d24b9d309900/public", + "followers": 307, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31f6ccd1f6aff5b3787733575e28a23c32f0296c", + "etherscanUrl": "https://etherscan.io/address/0x31f6ccd1f6aff5b3787733575e28a23c32f0296c", + "xHandle": "tamamus12", + "xUrl": "https://twitter.com/tamamus12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_314005", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "syrx", + "displayName": "xsyr Ⓜ️🔮🍖🎩 🧬", + "fid": 314005, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4695b155-fe1a-4fb1-94ab-bde307f1eb00/original", + "followers": 307, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x120ca36128daa58182a13d2b448c3da0ff3e8001", + "etherscanUrl": "https://etherscan.io/address/0x120ca36128daa58182a13d2b448c3da0ff3e8001", + "xHandle": "sundanise3", + "xUrl": "https://twitter.com/sundanise3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_878324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ninhle", + "displayName": "NinhLe", + "fid": 878324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cce64128-7cc7-4ec5-8c78-f366788ebb00/original", + "followers": 307, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x242219c624e4e4f639aa55809dcb7bd1be365afa", + "etherscanUrl": "https://etherscan.io/address/0x242219c624e4e4f639aa55809dcb7bd1be365afa", + "xHandle": "ninhle298", + "xUrl": "https://twitter.com/ninhle298", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_288773", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "apelord", + "displayName": "KekeisusFarcaster", + "fid": 288773, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f649fe1f-7e7b-4ad9-fe41-9f75e3292c00/original", + "followers": 305, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd06abc1613e4bd4c1026380ab91fbb95edfb4a3f", + "etherscanUrl": "https://etherscan.io/address/0xd06abc1613e4bd4c1026380ab91fbb95edfb4a3f", + "xHandle": "0xbasedegen", + "xUrl": "https://twitter.com/0xbasedegen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_517178", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soitienao", + "displayName": "Soi 🔵 🎩", + "fid": 517178, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeig7k4bnqm5glrsx7tnxzqx5ekdwchkxpquyq6gtp4p2edv4ha2vdi", + "followers": 305, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23e003f45c70f558df1e589de73573d5a0405369", + "etherscanUrl": "https://etherscan.io/address/0x23e003f45c70f558df1e589de73573d5a0405369", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_669437", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zam365", + "displayName": "Emmanuel Davou Zam", + "fid": 669437, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ea8fb7f-2f79-4950-cbe5-59be276c0400/rectcrop3", + "followers": 304, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9002bd806e55d373bf08eeadd579bdb122ed7ac8", + "etherscanUrl": "https://etherscan.io/address/0x9002bd806e55d373bf08eeadd579bdb122ed7ac8", + "xHandle": "zamemmanuel2", + "xUrl": "https://twitter.com/zamemmanuel2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_408711", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rayblanco.eth", + "displayName": "Hodlin", + "fid": 408711, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/358b6b7f-d2c4-497b-64b5-7146382e9400/original", + "followers": 304, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbff8c6c34f1efacf6844350de907cca6f07c76b8", + "etherscanUrl": "https://etherscan.io/address/0xbff8c6c34f1efacf6844350de907cca6f07c76b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_479608", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "laprade", + "displayName": "laprade", + "fid": 479608, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d45cbe14-8fff-46a8-4f32-da7605ea2600/original", + "followers": 303, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15d49914cbee10fd64b7e825c750771deeb2f5e4", + "etherscanUrl": "https://etherscan.io/address/0x15d49914cbee10fd64b7e825c750771deeb2f5e4", + "xHandle": "alexlaprade", + "xUrl": "https://twitter.com/alexlaprade", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_881589", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "donzoq", + "displayName": "Crypto Events ¶", + "fid": 881589, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76863f80-af19-44c1-1c60-5fc099c94100/rectcrop3", + "followers": 303, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06c9f8611fa5a1d3ee56bd41947e1c302bf9313e", + "etherscanUrl": "https://etherscan.io/address/0x06c9f8611fa5a1d3ee56bd41947e1c302bf9313e", + "xHandle": "blockchain795", + "xUrl": "https://twitter.com/blockchain795", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549749", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hybee123", + "displayName": "Adebayo Ibrahim Abayomi", + "fid": 549749, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7b0f81ed-a353-4104-ae9d-41f010176200/rectcrop3", + "followers": 302, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ec8d78d1802522b947de5da8b43823d1493d247", + "etherscanUrl": "https://etherscan.io/address/0x2ec8d78d1802522b947de5da8b43823d1493d247", + "xHandle": "wiseonetoons", + "xUrl": "https://twitter.com/wiseonetoons", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_253701", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hope2049", + "displayName": "Farcaster🍭 Lollipop 🍭", + "fid": 253701, + "pfpUrl": "https://arweave.net/aiTwqdiAGYEdukXHEF_4Y711uYXzn_5xuPcyErb89DA/", + "followers": 298, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67e13ca099cf4e685201554e0ee51f18ed9e958b", + "etherscanUrl": "https://etherscan.io/address/0x67e13ca099cf4e685201554e0ee51f18ed9e958b", + "xHandle": "blacknoirx20", + "xUrl": "https://twitter.com/blacknoirx20", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_305715", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jiko", + "displayName": "riya Akhter🔥", + "fid": 305715, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmZwxDy3Ec1GkGjUY9LfAg4RJR37jbzFjZDa4fvYExaSNH?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 298, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d7a26e41d6dfc9376ffdf4afa6f86e2029a07f1", + "etherscanUrl": "https://etherscan.io/address/0x7d7a26e41d6dfc9376ffdf4afa6f86e2029a07f1", + "xHandle": "sagorsajid84499", + "xUrl": "https://twitter.com/sagorsajid84499", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_473626", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gabrululu", + "displayName": "Jennifer Gabriela ", + "fid": 473626, + "pfpUrl": "https://i.imgur.com/m4tMe3U.jpg", + "followers": 295, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe374cd7cdacbddc9f28ebb3256558294ebd0a4eb", + "etherscanUrl": "https://etherscan.io/address/0xe374cd7cdacbddc9f28ebb3256558294ebd0a4eb", + "xHandle": "gabrululu", + "xUrl": "https://twitter.com/gabrululu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_745795", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "7siyuan0202", + "displayName": "7siyuan0202", + "fid": 745795, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/600d1a4a-1da1-4afe-6aad-6a5e96166100/rectcrop3", + "followers": 293, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdbdeedf38028a718ac719164bb2f472f18695bb4", + "etherscanUrl": "https://etherscan.io/address/0xdbdeedf38028a718ac719164bb2f472f18695bb4", + "xHandle": "siyuan829269563", + "xUrl": "https://twitter.com/siyuan829269563", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_855085", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xalyson", + "displayName": "Alyson 🎒", + "fid": 855085, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19adf03e-8659-4b3d-d51b-30d79a083100/original", + "followers": 292, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x625e53555890a2790108d98246891d83b0699c24", + "etherscanUrl": "https://etherscan.io/address/0x625e53555890a2790108d98246891d83b0699c24", + "xHandle": "0xalyson", + "xUrl": "https://twitter.com/0xalyson", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_256019", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sulistiyani12", + "displayName": "Sulist", + "fid": 256019, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/703329a6-c511-485c-99f8-08df483ff900/original", + "followers": 292, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17e965883eca2ba5efd95893b0421e0bd885d7a2", + "etherscanUrl": "https://etherscan.io/address/0x17e965883eca2ba5efd95893b0421e0bd885d7a2", + "xHandle": "shilvyvi", + "xUrl": "https://twitter.com/shilvyvi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_871430", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "urbanwanderer", + "displayName": "Billy", + "fid": 871430, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/10051305-f0ce-43af-c280-d674699b2700/rectcrop3", + "followers": 286, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda82e5ed55b9912b259a69369eecc3e7bfe32cf1", + "etherscanUrl": "https://etherscan.io/address/0xda82e5ed55b9912b259a69369eecc3e7bfe32cf1", + "xHandle": "xieyi681", + "xUrl": "https://twitter.com/xieyi681", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_687238", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tgstarlight", + "displayName": "Pk Alio (Onchain)⚡️", + "fid": 687238, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f5d15bed-f505-43cf-cc64-f16a268f2c00/original", + "followers": 286, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbcfc9ee0a973b9064ef9c0e28d2b5548110c8dc", + "etherscanUrl": "https://etherscan.io/address/0xfbcfc9ee0a973b9064ef9c0e28d2b5548110c8dc", + "xHandle": "tgstarlight", + "xUrl": "https://twitter.com/tgstarlight", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_794785", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "muskan783", + "displayName": "Okehd", + "fid": 794785, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6e0a6b61-64ed-4cd1-1e44-24f961c53900/rectcrop3", + "followers": 284, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd59a3184da914c0a16477609dbc3f7866e553631", + "etherscanUrl": "https://etherscan.io/address/0xd59a3184da914c0a16477609dbc3f7866e553631", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263797", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chemicae", + "displayName": "Manuel", + "fid": 263797, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c79a6abf-6101-4142-9351-dfc938f8e400/original", + "followers": 281, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87cc3ded6a7f8d366f12320a2e65fe926e975d4d", + "etherscanUrl": "https://etherscan.io/address/0x87cc3ded6a7f8d366f12320a2e65fe926e975d4d", + "xHandle": "obiekweobinna10", + "xUrl": "https://twitter.com/obiekweobinna10", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251595", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "peko", + "displayName": "Adit", + "fid": 251595, + "pfpUrl": "https://i.imgur.com/nu0ASH2.jpg", + "followers": 279, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38b917c2a727a6f00d2375c3c8c02436cfcd0619", + "etherscanUrl": "https://etherscan.io/address/0x38b917c2a727a6f00d2375c3c8c02436cfcd0619", + "xHandle": "adaterus51", + "xUrl": "https://twitter.com/adaterus51", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_403674", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naser", + "displayName": "Maryam 3090", + "fid": 403674, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77ceec7a-4fe0-4f81-170f-008b058fe000/original", + "followers": 277, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57a2b4c5792a1c2fc9d217c23bcbbe9a12d3d0dc", + "etherscanUrl": "https://etherscan.io/address/0x57a2b4c5792a1c2fc9d217c23bcbbe9a12d3d0dc", + "xHandle": "maryam637675432", + "xUrl": "https://twitter.com/maryam637675432", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307747", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "penjahatklausa", + "displayName": "Firdausa Agri", + "fid": 307747, + "pfpUrl": "https://i.imgur.com/WtdR6Rm.jpg", + "followers": 276, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a8ea0ba1b0bfba12293a63824bfbaa7a52959cb", + "etherscanUrl": "https://etherscan.io/address/0x8a8ea0ba1b0bfba12293a63824bfbaa7a52959cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1112512", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hemanthpnft", + "displayName": "Hemanthpnft", + "fid": 1112512, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762066304/1000013518.jpg.jpg", + "followers": 273, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f5fa842c65a110e77dacb729cc04cf4952d6a50", + "etherscanUrl": "https://etherscan.io/address/0x9f5fa842c65a110e77dacb729cc04cf4952d6a50", + "xHandle": "hemanthp_nft", + "xUrl": "https://twitter.com/hemanthp_nft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_195881", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "capybara", + "displayName": "Capybara", + "fid": 195881, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40727d2e-9ca8-49a7-0490-32cce493e900/original", + "followers": 272, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1742fc31f1a58d8502947ac97897257afe02dd8", + "etherscanUrl": "https://etherscan.io/address/0xa1742fc31f1a58d8502947ac97897257afe02dd8", + "xHandle": "funofcapy", + "xUrl": "https://twitter.com/funofcapy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_749008", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "16macyt", + "displayName": "16macyt 🎭", + "fid": 749008, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f60e6b3-62ec-46d1-1761-d6bb5c405700/rectcrop3", + "followers": 272, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23de7d75f7be464885527c61d17b55b8aaf84191", + "etherscanUrl": "https://etherscan.io/address/0x23de7d75f7be464885527c61d17b55b8aaf84191", + "xHandle": "cameronannn", + "xUrl": "https://twitter.com/cameronannn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_300187", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anticrash", + "displayName": "anticrash 🔺", + "fid": 300187, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17eb4cea-d490-4a93-c74c-9fd2f1f9bf00/original", + "followers": 271, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1449f831c45e0cc08c18f73e71ad3de6b00cbc31", + "etherscanUrl": "https://etherscan.io/address/0x1449f831c45e0cc08c18f73e71ad3de6b00cbc31", + "xHandle": "anticrash", + "xUrl": "https://twitter.com/anticrash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_446441", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yaboyolgreg", + "displayName": "Yaboyolgreg", + "fid": 446441, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9721a793-8712-4e9f-6c93-11d0ab492f00/original", + "followers": 269, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09116862e7df2c614da9bcf428f3fd8751962782", + "etherscanUrl": "https://etherscan.io/address/0x09116862e7df2c614da9bcf428f3fd8751962782", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060603", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pyueegyi81-eth", + "displayName": "zoranounsdao", + "fid": 1060603, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d308a3a8-a6c3-4238-8560-1389f3762500/original", + "followers": 265, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbfebb921b8d983943c1a1bcb6bd78907c0b94b14", + "etherscanUrl": "https://etherscan.io/address/0xbfebb921b8d983943c1a1bcb6bd78907c0b94b14", + "xHandle": "pyueegyi", + "xUrl": "https://twitter.com/pyueegyi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_742266", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "10xinsenqy191", + "displayName": "10xinsenqy191 🎭", + "fid": 742266, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05aa7bfe-25f0-4735-cee1-9ee1f23b3c00/rectcrop3", + "followers": 264, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c21aba1614d9874b6df926f2f5f1be39ee58d3e", + "etherscanUrl": "https://etherscan.io/address/0x1c21aba1614d9874b6df926f2f5f1be39ee58d3e", + "xHandle": "luck06858092738", + "xUrl": "https://twitter.com/luck06858092738", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_368589", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thi3ns0n", + "displayName": "Thiên Sơn / Base.eth", + "fid": 368589, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3367a1bb-0d69-4f92-a66a-9c6513f18000/original", + "followers": 260, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2231450c9a28b4f784c6cacb3dc23d12738aa609", + "etherscanUrl": "https://etherscan.io/address/0x2231450c9a28b4f784c6cacb3dc23d12738aa609", + "xHandle": "immthi3ns0n", + "xUrl": "https://twitter.com/immthi3ns0n", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_648196", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raketaa", + "displayName": "Roman", + "fid": 648196, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36ba0e95-3ff7-49c9-be21-3b479241cd00/original", + "followers": 258, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa070846b1d237a24dfa45a692b3080584fbb2cf2", + "etherscanUrl": "https://etherscan.io/address/0xa070846b1d237a24dfa45a692b3080584fbb2cf2", + "xHandle": "roma_raketa", + "xUrl": "https://twitter.com/roma_raketa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_250200", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chiagozie.eth", + "displayName": "Chiagozie", + "fid": 250200, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd2cdec0-7149-450f-4f45-509a578b7c00/rectcrop3", + "followers": 255, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb888e768a4c11fbb21cf0bb2fc73ac69e044e8b4", + "etherscanUrl": "https://etherscan.io/address/0xb888e768a4c11fbb21cf0bb2fc73ac69e044e8b4", + "xHandle": "chiagozie50", + "xUrl": "https://twitter.com/chiagozie50", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_887565", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gondoruo", + "displayName": "Gondoruwo", + "fid": 887565, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/862268af-a404-4214-09a7-b4d071e42a00/rectcrop3", + "followers": 255, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1cd9c5601a6ca671209ed6ed978402683ba4bc79", + "etherscanUrl": "https://etherscan.io/address/0x1cd9c5601a6ca671209ed6ed978402683ba4bc79", + "xHandle": "alawiyah59083", + "xUrl": "https://twitter.com/alawiyah59083", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1042073", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zurich755", + "displayName": "ZurichArt", + "fid": 1042073, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/786ab8cd-6c6e-4093-0762-27a25802e400/original", + "followers": 255, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e88a6a05132c2047665484bb6f40c9b1e1d3ef7", + "etherscanUrl": "https://etherscan.io/address/0x1e88a6a05132c2047665484bb6f40c9b1e1d3ef7", + "xHandle": "zurich7557", + "xUrl": "https://twitter.com/zurich7557", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_711889", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "902717iskander", + "displayName": "Iskanderkill", + "fid": 711889, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/QmUFVix41rraSFJuL49VW1mAzMiJWyz9BccAYEkv2nmCZX/124.webp", + "followers": 251, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d9e43140e7e87c9facec21b1d4661b73cd36088", + "etherscanUrl": "https://etherscan.io/address/0x5d9e43140e7e87c9facec21b1d4661b73cd36088", + "xHandle": "patriciaki21018", + "xUrl": "https://twitter.com/patriciaki21018", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_241702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naufaljr19", + "displayName": "Fal", + "fid": 241702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a50b9def-10f6-44f2-e9fc-a2d2f011a300/original", + "followers": 246, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8bf10ccb54eafe14eb261db0f61804db405c965f", + "etherscanUrl": "https://etherscan.io/address/0x8bf10ccb54eafe14eb261db0f61804db405c965f", + "xHandle": "fal19jr", + "xUrl": "https://twitter.com/fal19jr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143161", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nikkiwordsmith", + "displayName": "Nikki Wordsmith", + "fid": 1143161, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e0382cc6-f459-4f6f-f36d-859b5d1a9200/original", + "followers": 245, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b3ea00b357a7abcf99f8c63fc21884e29fc7df0", + "etherscanUrl": "https://etherscan.io/address/0x9b3ea00b357a7abcf99f8c63fc21884e29fc7df0", + "xHandle": "nikkiwordsmith", + "xUrl": "https://twitter.com/nikkiwordsmith", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_455866", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "warpedone", + "displayName": "WarpedOne", + "fid": 455866, + "pfpUrl": "https://i.imgur.com/OdlzhTc.jpg", + "followers": 244, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef68a8f68f387377c71f6a86b7e7f98b8413471d", + "etherscanUrl": "https://etherscan.io/address/0xef68a8f68f387377c71f6a86b7e7f98b8413471d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_326992", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hilmitsn", + "displayName": "hilmitsn.base.eth", + "fid": 326992, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/df172eaa-a797-4343-ff6d-ebdb1555db00/original", + "followers": 243, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70a1c9f348856f2ed142b4972d61d3f8a1578416", + "etherscanUrl": "https://etherscan.io/address/0x70a1c9f348856f2ed142b4972d61d3f8a1578416", + "xHandle": "toprakuzey51", + "xUrl": "https://twitter.com/toprakuzey51", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_510460", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ionrod", + "displayName": "Rod Mamin", + "fid": 510460, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f0e2e606-0da3-4c31-47b2-6a3a7b0e1700/rectcrop3", + "followers": 243, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8fc4795aca76b8e16c564e7ac0db9a1cff477f1", + "etherscanUrl": "https://etherscan.io/address/0xf8fc4795aca76b8e16c564e7ac0db9a1cff477f1", + "xHandle": "0xionrod", + "xUrl": "https://twitter.com/0xionrod", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1096717", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "samo-miyagi", + "displayName": "SAMO-Miyagi", + "fid": 1096717, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761782431/IMG_6280.jpg.jpg", + "followers": 241, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa33f2243dbf978e4f7e4e4c24ed194bd2ed209e5", + "etherscanUrl": "https://etherscan.io/address/0xa33f2243dbf978e4f7e4e4c24ed194bd2ed209e5", + "xHandle": "_shanefrederick", + "xUrl": "https://twitter.com/_shanefrederick", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_708818", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dimashilo", + "displayName": "DimaShilo", + "fid": 708818, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e733338-36ce-4a38-8a51-0b38aa2e5200/rectcrop3", + "followers": 239, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde3ad1cb1d72149a30f468225eb03529754467ad", + "etherscanUrl": "https://etherscan.io/address/0xde3ad1cb1d72149a30f468225eb03529754467ad", + "xHandle": "gigabvait31701", + "xUrl": "https://twitter.com/gigabvait31701", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_299508", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bodega", + "displayName": "Bodega", + "fid": 299508, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3cc5a19-af7b-4cce-4a73-7605b5358100/original", + "followers": 237, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54da363e42e0d4b2de429a108d819cb96918e1cb", + "etherscanUrl": "https://etherscan.io/address/0x54da363e42e0d4b2de429a108d819cb96918e1cb", + "xHandle": "debodegacat", + "xUrl": "https://twitter.com/debodegacat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_711822", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juissynft", + "displayName": "Priya", + "fid": 711822, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763057447/882ab86b-7752-4665-99fa-e90a01b3d037.jpg", + "followers": 237, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x495ee34015e8639ecf1197b4f650e9f25c8fddb7", + "etherscanUrl": "https://etherscan.io/address/0x495ee34015e8639ecf1197b4f650e9f25c8fddb7", + "xHandle": "prasadysrcp", + "xUrl": "https://twitter.com/prasadysrcp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_749528", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "1sharp8", + "displayName": "1sharp8 🎭", + "fid": 749528, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08f1c65e-72d1-4bb1-dd6a-a9c8e5894600/rectcrop3", + "followers": 234, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17e3c1372f29ccbce035f90038d65d199657a98d", + "etherscanUrl": "https://etherscan.io/address/0x17e3c1372f29ccbce035f90038d65d199657a98d", + "xHandle": "kalani2unc", + "xUrl": "https://twitter.com/kalani2unc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1379545", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "seershub", + "displayName": "seershub.base.eth", + "fid": 1379545, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6277a4f5-f930-4518-4be2-a0f19e76b500/original", + "followers": 231, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95ac688bd952d5708466463255dcbec10d50ca74", + "etherscanUrl": "https://etherscan.io/address/0x95ac688bd952d5708466463255dcbec10d50ca74", + "xHandle": "seershub", + "xUrl": "https://twitter.com/seershub", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_884823", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sarvagna", + "displayName": "Sarvagna Kadiya", + "fid": 884823, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a5264a6-7e9a-4f7a-66b8-20584f6a4300/original", + "followers": 230, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9b06e8122f0c51eb69ea713e27da922ca7c458e", + "etherscanUrl": "https://etherscan.io/address/0xc9b06e8122f0c51eb69ea713e27da922ca7c458e", + "xHandle": "sarvagnakadiya", + "xUrl": "https://twitter.com/sarvagnakadiya", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_449598", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khangln", + "displayName": "Khangln.base.eth", + "fid": 449598, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7dd7ab5e-1874-41bf-429f-69775ea61500/original", + "followers": 229, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac9ae0541d85fcbe093cea88b473cfe4c3334157", + "etherscanUrl": "https://etherscan.io/address/0xac9ae0541d85fcbe093cea88b473cfe4c3334157", + "xHandle": "giangtruong1997", + "xUrl": "https://twitter.com/giangtruong1997", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1073937", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "capminal.eth", + "displayName": "Capminal", + "fid": 1073937, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/694ecc01-f03f-4131-92e8-56dfbf512200/original", + "followers": 229, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e770a61fe356640287cb3dec48f3334525ac333", + "etherscanUrl": "https://etherscan.io/address/0x7e770a61fe356640287cb3dec48f3334525ac333", + "xHandle": "capminal", + "xUrl": "https://twitter.com/capminal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062670", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mjbiplob", + "displayName": "Mj Biplob", + "fid": 1062670, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ecce54d0-8734-4bd2-b257-10c254a49a00/original", + "followers": 228, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91bc6fc9026c990adcd4999f1a0bfea79a7a7183", + "etherscanUrl": "https://etherscan.io/address/0x91bc6fc9026c990adcd4999f1a0bfea79a7a7183", + "xHandle": "mjbiplob16", + "xUrl": "https://twitter.com/mjbiplob16", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1087036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theprime1004", + "displayName": "theprime1004", + "fid": 1087036, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b973a257-524f-4958-2f5e-25e7244dab00/original", + "followers": 227, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe31f845b4d04b304db6da6ab56101688d799d78d", + "etherscanUrl": "https://etherscan.io/address/0xe31f845b4d04b304db6da6ab56101688d799d78d", + "xHandle": "theprime1004", + "xUrl": "https://twitter.com/theprime1004", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_242997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xlaw", + "displayName": "Xlaw.base.eth", + "fid": 242997, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8acf0620-e38c-43c9-88f0-89c260567e00/original", + "followers": 225, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01f6b52b04d92c255ba6f4778f19639956112603", + "etherscanUrl": "https://etherscan.io/address/0x01f6b52b04d92c255ba6f4778f19639956112603", + "xHandle": "exlawbond", + "xUrl": "https://twitter.com/exlawbond", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1858", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zack", + "displayName": "Zack", + "fid": 1858, + "pfpUrl": "https://lh3.googleusercontent.com/R7KybJX8D9BREcrzGp7ZCLW8XSmMcs9pstee141R7GqLW7yt_cNU8JChUsIVuagoWQ4XY98FVz7ug1IWWN5s3xUPGyvPC33JkVEzlFE", + "followers": 225, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x927d243b15cc3ca5842a86bbd146e2d3982c11a5", + "etherscanUrl": "https://etherscan.io/address/0x927d243b15cc3ca5842a86bbd146e2d3982c11a5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_384287", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kester1", + "displayName": "Kester1 base.eth", + "fid": 384287, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3cd94ebd-72e2-4fe6-cf39-8dfdec006200/rectcrop3", + "followers": 224, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x377c43bc804e3bb37fe91d1671f3cf25ccb05fc7", + "etherscanUrl": "https://etherscan.io/address/0x377c43bc804e3bb37fe91d1671f3cf25ccb05fc7", + "xHandle": "william213620", + "xUrl": "https://twitter.com/william213620", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_449975", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stranger4599.eth", + "displayName": "Stranger4599", + "fid": 449975, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61d30f13-1f63-4fe0-7cc9-197f27794400/original", + "followers": 224, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68b8dd3d7d5cedb72b40c4cf3152a175990d4599", + "etherscanUrl": "https://etherscan.io/address/0x68b8dd3d7d5cedb72b40c4cf3152a175990d4599", + "xHandle": "stranger4599", + "xUrl": "https://twitter.com/stranger4599", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_403173", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rubleonacorn", + "displayName": "E.A", + "fid": 403173, + "pfpUrl": "https://i.imgur.com/t6iJeS2.jpg", + "followers": 223, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe31402888c283689f91f6bd2caffe21c0d1c45bb", + "etherscanUrl": "https://etherscan.io/address/0xe31402888c283689f91f6bd2caffe21c0d1c45bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_462945", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skibijb", + "displayName": "Jean baptiste mohr.base.eth", + "fid": 462945, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ea79a6d9-9fad-43e7-6d07-d008c6d33900/rectcrop3", + "followers": 223, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71f089c439d96530989643d130099d12b8f895b5", + "etherscanUrl": "https://etherscan.io/address/0x71f089c439d96530989643d130099d12b8f895b5", + "xHandle": "jbmohrskibijb", + "xUrl": "https://twitter.com/jbmohrskibijb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_547444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fiatclone", + "displayName": "🎭Ⓜ️🍖🎩🔑 🔥✨", + "fid": 547444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bd1aea3-675a-499a-a497-d7eebb0cfc00/original", + "followers": 222, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb02b4dd2fb41e45608c68cccf89aab1fbeda1642", + "etherscanUrl": "https://etherscan.io/address/0xb02b4dd2fb41e45608c68cccf89aab1fbeda1642", + "xHandle": "fiatclone", + "xUrl": "https://twitter.com/fiatclone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18418", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "d20", + "displayName": "Jack Fitzpatrick", + "fid": 18418, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/992778dc-97a8-4215-be18-24bdb836e400/original", + "followers": 220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x63adde7442810ca309e7caf18ffc6f2c59b10c87", + "etherscanUrl": "https://etherscan.io/address/0x63adde7442810ca309e7caf18ffc6f2c59b10c87", + "xHandle": "d20_eth", + "xUrl": "https://twitter.com/d20_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_240257", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "futuregeegee", + "displayName": "Gee Gee 🎩🍖", + "fid": 240257, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8f6fd8d-e7ea-428e-d7fb-d6aa9f93e100/original", + "followers": 219, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe115d7417cb1bdc0582dcbe525d84acfba0eba1a", + "etherscanUrl": "https://etherscan.io/address/0xe115d7417cb1bdc0582dcbe525d84acfba0eba1a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1023081", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hexate", + "displayName": "Hex", + "fid": 1023081, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9d22d14-35cf-46f3-d05b-d149eba59d00/rectcrop3", + "followers": 219, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd93915dca6224295ee5f9808e874581b93bb2d06", + "etherscanUrl": "https://etherscan.io/address/0xd93915dca6224295ee5f9808e874581b93bb2d06", + "xHandle": "nymonanym", + "xUrl": "https://twitter.com/nymonanym", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_432054", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bolsaverse.eth", + "displayName": "Bolsa Verse", + "fid": 432054, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1de67322-2d0c-4d7c-cf58-f42d17b71200/original", + "followers": 218, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd5434843c9d1daa5c00f3501f494ff085e3e5c6d", + "etherscanUrl": "https://etherscan.io/address/0xd5434843c9d1daa5c00f3501f494ff085e3e5c6d", + "xHandle": "bolsaverse", + "xUrl": "https://twitter.com/bolsaverse", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_517651", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jpcast", + "displayName": "Jpown 🎩🔵👾🙈", + "fid": 517651, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7046de3-6328-418a-280c-d11c0783bb00/rectcrop3", + "followers": 214, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x946aa3e335bdb1a4809c63bc17aab56a59b4a901", + "etherscanUrl": "https://etherscan.io/address/0x946aa3e335bdb1a4809c63bc17aab56a59b4a901", + "xHandle": "jpown1", + "xUrl": "https://twitter.com/jpown1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_340091", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wenn", + "displayName": "wen", + "fid": 340091, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/503f7dfd-3383-45b9-ac46-99f09b44a500/original", + "followers": 214, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4dd124ce03b12a52176cb340dd9d9380fdf3a37", + "etherscanUrl": "https://etherscan.io/address/0xb4dd124ce03b12a52176cb340dd9d9380fdf3a37", + "xHandle": "44xumut", + "xUrl": "https://twitter.com/44xumut", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_201224", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kenzodadon", + "displayName": "kenzodadon84 🧬", + "fid": 201224, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c610ad24-9ce3-4c9b-c124-5edf33403800/original", + "followers": 213, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x426774a6b350101696db40ae7842361cd8c87950", + "etherscanUrl": "https://etherscan.io/address/0x426774a6b350101696db40ae7842361cd8c87950", + "xHandle": "kenzodadon3", + "xUrl": "https://twitter.com/kenzodadon3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_288019", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dewikagura", + "displayName": "dewikagura.base.eth", + "fid": 288019, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6024d3a5-d5d6-4af8-3c34-afea521b2300/original", + "followers": 212, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc224249678bab5b97aaf782566ba321eea1e3368", + "etherscanUrl": "https://etherscan.io/address/0xc224249678bab5b97aaf782566ba321eea1e3368", + "xHandle": "kzomedo", + "xUrl": "https://twitter.com/kzomedo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_333175", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "paypay", + "displayName": "paypay", + "fid": 333175, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5119e4e-b44a-4579-aa71-d08c25cc1300/rectcrop3", + "followers": 209, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1529b1f06b4c2ddd374bade8880c3a90bebbe43", + "etherscanUrl": "https://etherscan.io/address/0xa1529b1f06b4c2ddd374bade8880c3a90bebbe43", + "xHandle": "jepewong", + "xUrl": "https://twitter.com/jepewong", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zak3939", + "displayName": "zak3939 ↑", + "fid": 20552, + "pfpUrl": "https://i.imgur.com/AAAQU6K.jpg", + "followers": 208, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5037e7747faa78fc0ecf8dfc526dcd19f73076ce", + "etherscanUrl": "https://etherscan.io/address/0x5037e7747faa78fc0ecf8dfc526dcd19f73076ce", + "xHandle": "zack_3939", + "xUrl": "https://twitter.com/zack_3939", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_369992", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ngocthach81", + "displayName": "Lê Ngọc Thạch", + "fid": 369992, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d8b1c2c-f510-4aee-b428-15a41e551d00/original", + "followers": 207, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed3fd648dbc2feedbe024771cabe9d1497babf04", + "etherscanUrl": "https://etherscan.io/address/0xed3fd648dbc2feedbe024771cabe9d1497babf04", + "xHandle": "thach8182019", + "xUrl": "https://twitter.com/thach8182019", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060647", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deboy", + "displayName": "De Boy", + "fid": 1060647, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d15f0092-506a-4ed9-ce97-760b143aeb00/original", + "followers": 206, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7515471af0e998db0c4cdce024e0185f2eda9b8", + "etherscanUrl": "https://etherscan.io/address/0xe7515471af0e998db0c4cdce024e0185f2eda9b8", + "xHandle": "ayanokojisa", + "xUrl": "https://twitter.com/ayanokojisa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_198875", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "akbanks", + "displayName": "Akindayo", + "fid": 198875, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/QmYDVrQBdvG5xh9GfpvdiaVDskp9w5KtrwhtyjixjRRDNW/1310.png", + "followers": 206, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb21be27a6a222a69d7391cddefb192c7d1cffd34", + "etherscanUrl": "https://etherscan.io/address/0xb21be27a6a222a69d7391cddefb192c7d1cffd34", + "xHandle": "akbanksdayo", + "xUrl": "https://twitter.com/akbanksdayo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_977328", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "evgeny028", + "displayName": "Evgeny", + "fid": 977328, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b566b177-f42b-4f66-d928-331bc3be3000/rectcrop3", + "followers": 203, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a7160286a6513d01fb46dd68f59b7953b93878f", + "etherscanUrl": "https://etherscan.io/address/0x2a7160286a6513d01fb46dd68f59b7953b93878f", + "xHandle": "evgeny956138075", + "xUrl": "https://twitter.com/evgeny956138075", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1032105", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "davthebullishman", + "displayName": "Bullishexplorer", + "fid": 1032105, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78f44731-78b3-4577-b8f7-6165d5b92100/rectcrop3", + "followers": 203, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1bf97552876bd365df78218ea058dc3459a331e6", + "etherscanUrl": "https://etherscan.io/address/0x1bf97552876bd365df78218ea058dc3459a331e6", + "xHandle": "waverdav", + "xUrl": "https://twitter.com/waverdav", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13172", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dewd.eth", + "displayName": "Derrick", + "fid": 13172, + "pfpUrl": "https://i.imgur.com/7LXEy2m.jpg", + "followers": 202, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ad4bebee68f657490649ea722b18087a10bfc5d", + "etherscanUrl": "https://etherscan.io/address/0x9ad4bebee68f657490649ea722b18087a10bfc5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_733390", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "manjulaparmar", + "displayName": "Manjula Parmar", + "fid": 733390, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40be4c7d-b738-4528-e160-6754b92e7f00/rectcrop3", + "followers": 199, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1438cda2b2c9868a3b94c8f3c91da2653799d5ed", + "etherscanUrl": "https://etherscan.io/address/0x1438cda2b2c9868a3b94c8f3c91da2653799d5ed", + "xHandle": "ac2_airdrop", + "xUrl": "https://twitter.com/ac2_airdrop", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_373120", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maenswirony", + "displayName": "Maenswirony", + "fid": 373120, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a7456df-a7bf-4daa-9a37-d29c3a43b900/original", + "followers": 199, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x28537de056f1028cbd2a36cb1e56e6992b6bb837", + "etherscanUrl": "https://etherscan.io/address/0x28537de056f1028cbd2a36cb1e56e6992b6bb837", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_308688", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nubplus", + "displayName": "nubplus", + "fid": 308688, + "pfpUrl": "https://i.imgur.com/bxwudbt.jpg", + "followers": 197, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42a1e29826a2acaaa6d3e6c41b76c3a1061797b7", + "etherscanUrl": "https://etherscan.io/address/0x42a1e29826a2acaaa6d3e6c41b76c3a1061797b7", + "xHandle": "nubplus", + "xUrl": "https://twitter.com/nubplus", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060895", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "6555555.eth", + "displayName": "XRAYZ 🧬", + "fid": 1060895, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d8c02533-4123-4671-b902-0df6ae87e500/original", + "followers": 196, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b67a29d1e9fd5105bd75968d4df22b6c543a444", + "etherscanUrl": "https://etherscan.io/address/0x7b67a29d1e9fd5105bd75968d4df22b6c543a444", + "xHandle": "bityox", + "xUrl": "https://twitter.com/bityox", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_551429", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shamir677", + "displayName": "99Land Nft", + "fid": 551429, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeidgy7bgx23ao3dbfplhjybr2bgfdjibtferu6c3rcbqzaptzxtrem", + "followers": 192, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87309e5b2af8bdbcec7a437a82a20045a3286347", + "etherscanUrl": "https://etherscan.io/address/0x87309e5b2af8bdbcec7a437a82a20045a3286347", + "xHandle": "shamshadfri", + "xUrl": "https://twitter.com/shamshadfri", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_963470", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wawiks", + "displayName": "wawiks.base.eth", + "fid": 963470, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9d075c1f-a012-4f60-5432-7b47e2d16000/original", + "followers": 190, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8166a1f8d01cc65ce44dd56ace99db3fcd401269", + "etherscanUrl": "https://etherscan.io/address/0x8166a1f8d01cc65ce44dd56ace99db3fcd401269", + "xHandle": "ronewwwa", + "xUrl": "https://twitter.com/ronewwwa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_848616", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nkechinyere", + "displayName": "Nkechinyere", + "fid": 848616, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ec26008-8787-4cc3-2b74-fe9c78b3e600/rectcrop3", + "followers": 190, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x008c44cc90a40b701729e3cb9b43a31d810ed535", + "etherscanUrl": "https://etherscan.io/address/0x008c44cc90a40b701729e3cb9b43a31d810ed535", + "xHandle": "nkechinyerenm", + "xUrl": "https://twitter.com/nkechinyerenm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1398788", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wilvfred", + "displayName": "wilvfred", + "fid": 1398788, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfe67c89-720e-475e-ec23-1d3106532a00/original", + "followers": 187, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x720acb3662560edf64c38162b76ec69a1e77fc4a", + "etherscanUrl": "https://etherscan.io/address/0x720acb3662560edf64c38162b76ec69a1e77fc4a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1035556", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arakash11", + "displayName": "MD. AKASH ALI 🐱", + "fid": 1035556, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd5621af-86fc-4d54-5b65-9f2e3d7d4a00/original", + "followers": 187, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7cff1a95600d6a14f546964ba7d0016f2576806", + "etherscanUrl": "https://etherscan.io/address/0xc7cff1a95600d6a14f546964ba7d0016f2576806", + "xHandle": "akashkhan9091", + "xUrl": "https://twitter.com/akashkhan9091", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_488234", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hadhad", + "displayName": "Hadikhodaparast \"base.eth\"", + "fid": 488234, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmR1uHEezrMivKw8muaofELajxHAkVxf2daurJ5iM3fZCn?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 187, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x825dd7750cd173b1e534af4b1bac36ecba0e8bc1", + "etherscanUrl": "https://etherscan.io/address/0x825dd7750cd173b1e534af4b1bac36ecba0e8bc1", + "xHandle": "hadikhodaparast", + "xUrl": "https://twitter.com/hadikhodaparast", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_444661", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "twarpcast", + "displayName": "themo.base.eth", + "fid": 444661, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2678bc32-02cc-4b2d-1429-eae6a0448900/rectcrop3", + "followers": 185, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6b3e63863e509029ead0aecd5b57c64c43d3159", + "etherscanUrl": "https://etherscan.io/address/0xb6b3e63863e509029ead0aecd5b57c64c43d3159", + "xHandle": "oxlayersunda", + "xUrl": "https://twitter.com/oxlayersunda", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_546746", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shreemanta", + "displayName": "Shreemanta Barman", + "fid": 546746, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd772212-5b9b-470d-411f-3cf84c753500/rectcrop3", + "followers": 184, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e33cfb186e8fc4d1ab394bf26ba2fd164c44fe3", + "etherscanUrl": "https://etherscan.io/address/0x8e33cfb186e8fc4d1ab394bf26ba2fd164c44fe3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1018550", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gadoo", + "displayName": "Profyeboah", + "fid": 1018550, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6001120c-b8da-469c-ec2a-d12321c5a400/rectcrop3", + "followers": 183, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb226444e314165053af62715ad1da898db00493", + "etherscanUrl": "https://etherscan.io/address/0xbb226444e314165053af62715ad1da898db00493", + "xHandle": "profyeboah", + "xUrl": "https://twitter.com/profyeboah", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1066021", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dhevrir", + "displayName": "dhevri.base.eth", + "fid": 1066021, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e47e912-1565-428c-bc3f-4417d3da4000/original", + "followers": 179, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1d06a65db6a16ce84c9d570e1efc03c196a1a52f", + "etherscanUrl": "https://etherscan.io/address/0x1d06a65db6a16ce84c9d570e1efc03c196a1a52f", + "xHandle": "dhevrir", + "xUrl": "https://twitter.com/dhevrir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_365859", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kriptonesia", + "displayName": "Gundam.eth", + "fid": 365859, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd8e224c-4833-4936-714c-3aadb0072d00/original", + "followers": 179, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabb7ecaef9a7def899372f95fcdc134df090c2d0", + "etherscanUrl": "https://etherscan.io/address/0xabb7ecaef9a7def899372f95fcdc134df090c2d0", + "xHandle": "ahkmaheswari", + "xUrl": "https://twitter.com/ahkmaheswari", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_328942", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andymage", + "displayName": "AndyMage", + "fid": 328942, + "pfpUrl": "https://i.imgur.com/sY2ZDPZ.jpg", + "followers": 179, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0bad62a71592f458740494f14e82bef6cc1bf4df", + "etherscanUrl": "https://etherscan.io/address/0x0bad62a71592f458740494f14e82bef6cc1bf4df", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_293195", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shuvankarsantra", + "displayName": "Shuvankar Santra", + "fid": 293195, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbf7860a-9761-466d-9c4d-ef4bf6aaf000/original", + "followers": 177, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0066ce704b6f34deae3deeec93360a3c125680d5", + "etherscanUrl": "https://etherscan.io/address/0x0066ce704b6f34deae3deeec93360a3c125680d5", + "xHandle": "shuvankarsantr1", + "xUrl": "https://twitter.com/shuvankarsantr1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_380924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trading23", + "displayName": "Trading23", + "fid": 380924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60cafa69-5040-4e1d-3eac-0735f7caa000/original", + "followers": 170, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f6687a6c5ca824627c399e98173042119aba8ac", + "etherscanUrl": "https://etherscan.io/address/0x5f6687a6c5ca824627c399e98173042119aba8ac", + "xHandle": "fernandosimonlu", + "xUrl": "https://twitter.com/fernandosimonlu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_581516", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aahad7220", + "displayName": "Ahadul Islam", + "fid": 581516, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4422926-384e-4c33-c9cc-2310bb81bd00/rectcrop3", + "followers": 169, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba4c49d4a5f41605419d75fa0aa5ff68df704d56", + "etherscanUrl": "https://etherscan.io/address/0xba4c49d4a5f41605419d75fa0aa5ff68df704d56", + "xHandle": "leocasta1994", + "xUrl": "https://twitter.com/leocasta1994", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_360192", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "checkfit", + "displayName": "Pranav", + "fid": 360192, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2658b767-79d5-4a62-6f44-912729a3e000/original", + "followers": 168, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52711ac7e3b246c3ba4112e30b49603660d8f25a", + "etherscanUrl": "https://etherscan.io/address/0x52711ac7e3b246c3ba4112e30b49603660d8f25a", + "xHandle": "checkfit", + "xUrl": "https://twitter.com/checkfit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_637264", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "caiuses", + "displayName": "Caius Raven", + "fid": 637264, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad112220-4f28-4b7a-25e2-5a84accd6100/rectcrop3", + "followers": 167, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x943aa976fd98d0cd20c90dcedcaf15b27724d607", + "etherscanUrl": "https://etherscan.io/address/0x943aa976fd98d0cd20c90dcedcaf15b27724d607", + "xHandle": "carmen1797453", + "xUrl": "https://twitter.com/carmen1797453", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_613561", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "floridamike", + "displayName": "Floridamike.eth🐒", + "fid": 613561, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16465b65-6e0e-4823-d257-64cf0ff88e00/original", + "followers": 167, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6b6257de91a1185660debaa15dc177c9f8d6354", + "etherscanUrl": "https://etherscan.io/address/0xf6b6257de91a1185660debaa15dc177c9f8d6354", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246684", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gokk", + "displayName": "Gok", + "fid": 246684, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/619d1407-fa69-48ec-5cba-83fd44aba300/original", + "followers": 166, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1522917481d65838f46f4492742ac1a287c47539", + "etherscanUrl": "https://etherscan.io/address/0x1522917481d65838f46f4492742ac1a287c47539", + "xHandle": "gokcrypto22", + "xUrl": "https://twitter.com/gokcrypto22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_267849", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "debtcollector", + "displayName": "DebtCollector", + "fid": 267849, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79abc2c4-e779-4be0-093c-aab211641c00/rectcrop3", + "followers": 165, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0628d2b6beb98dfa1c864677fab9250bb64494a", + "etherscanUrl": "https://etherscan.io/address/0xf0628d2b6beb98dfa1c864677fab9250bb64494a", + "xHandle": "0xdecr", + "xUrl": "https://twitter.com/0xdecr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_338889", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "radradosny", + "displayName": "Rad", + "fid": 338889, + "pfpUrl": "https://i.imgur.com/aMA64Ie.jpg", + "followers": 162, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb03e18ee9972d6fe50a4ad58433a49369232c5df", + "etherscanUrl": "https://etherscan.io/address/0xb03e18ee9972d6fe50a4ad58433a49369232c5df", + "xHandle": "radradosny", + "xUrl": "https://twitter.com/radradosny", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074473", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tomaskazlauskas", + "displayName": "productvortex", + "fid": 1074473, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa6cd1de-2669-40f5-7fae-31a41bfe2a00/original", + "followers": 162, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9227e298bbe19aca397f08bf884755fd2e76cf05", + "etherscanUrl": "https://etherscan.io/address/0x9227e298bbe19aca397f08bf884755fd2e76cf05", + "xHandle": "tomaskazlauskas", + "xUrl": "https://twitter.com/tomaskazlauskas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_496685", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sunsub", + "displayName": "Sunsub007", + "fid": 496685, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c866c8a-3c2a-41f1-baf1-15d1c20ce800/original", + "followers": 161, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf5643aa7f93388914bb1ff1c8870547242294e84", + "etherscanUrl": "https://etherscan.io/address/0xf5643aa7f93388914bb1ff1c8870547242294e84", + "xHandle": "sunsub999", + "xUrl": "https://twitter.com/sunsub999", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1019889", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mediation", + "displayName": "A Osho Mystic Monk Meditation", + "fid": 1019889, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eed215d4-800e-4198-0101-b52ffa4f4b00/rectcrop3", + "followers": 160, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x855aa7d32b9c5bdf664e1d3ebf264391bf6173ff", + "etherscanUrl": "https://etherscan.io/address/0x855aa7d32b9c5bdf664e1d3ebf264391bf6173ff", + "xHandle": "blue_skygalaxy", + "xUrl": "https://twitter.com/blue_skygalaxy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7081", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dasher", + "displayName": "dasher", + "fid": 7081, + "pfpUrl": "https://i.imgur.com/lz2L6sp.jpg", + "followers": 159, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87772ff7c65b5c93be52e3504670c6407271f829", + "etherscanUrl": "https://etherscan.io/address/0x87772ff7c65b5c93be52e3504670c6407271f829", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_399273", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ikahq", + "displayName": "Ika", + "fid": 399273, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d56f721c-a54d-4dfa-2ca6-d8ba34e8c400/original", + "followers": 158, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1caf2143a1a3785ce43ee56aa51b62d651a91525", + "etherscanUrl": "https://etherscan.io/address/0x1caf2143a1a3785ce43ee56aa51b62d651a91525", + "xHandle": "ika_xbt", + "xUrl": "https://twitter.com/ika_xbt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1070122", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "t2one", + "displayName": "T2ONE", + "fid": 1070122, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5768e5ab-0047-49e8-c548-a6650ab0bb00/rectcrop3", + "followers": 158, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x208cd9f63399a46ae6501a95bbe78453bf38e08b", + "etherscanUrl": "https://etherscan.io/address/0x208cd9f63399a46ae6501a95bbe78453bf38e08b", + "xHandle": "yulliawen22", + "xUrl": "https://twitter.com/yulliawen22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_522028", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "artitoyp", + "displayName": "findmax.eth", + "fid": 522028, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/362f29b3-ae4b-42d0-dccd-84517355ec00/rectcrop3", + "followers": 156, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1ccb82e4f59afcffedf3e10ddbd0613d2a83195a", + "etherscanUrl": "https://etherscan.io/address/0x1ccb82e4f59afcffedf3e10ddbd0613d2a83195a", + "xHandle": "nurmayun18", + "xUrl": "https://twitter.com/nurmayun18", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1277961", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "beautyblinks202", + "displayName": "Beautyblinks", + "fid": 1277961, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 155, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d11dfa219ed6eee4e8ce08cf7036113880b7877", + "etherscanUrl": "https://etherscan.io/address/0x5d11dfa219ed6eee4e8ce08cf7036113880b7877", + "xHandle": "rosefunmilola", + "xUrl": "https://twitter.com/rosefunmilola", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142631", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cialin", + "displayName": "Cia Lin", + "fid": 1142631, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13215a65-0e12-46b6-2ed1-1c97fdbaeb00/original", + "followers": 152, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc847fcd86c4439ff0317701db13e240b262cfe19", + "etherscanUrl": "https://etherscan.io/address/0xc847fcd86c4439ff0317701db13e240b262cfe19", + "xHandle": "beautypeaces", + "xUrl": "https://twitter.com/beautypeaces", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_936152", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ramdin", + "displayName": "Ramdin Roham", + "fid": 936152, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2202127-e088-4d02-dff8-ad029019e200/original", + "followers": 151, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23f5bbc07a16702aab38c11707b7756c49626f31", + "etherscanUrl": "https://etherscan.io/address/0x23f5bbc07a16702aab38c11707b7756c49626f31", + "xHandle": "123roshansingh1", + "xUrl": "https://twitter.com/123roshansingh1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1067643", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kataadochii", + "displayName": "kataadochi", + "fid": 1067643, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47388892-9f07-4625-eebb-85ac09811700/original", + "followers": 150, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03482e8c00d4ef3ea9717656c4042bb6b9440ad1", + "etherscanUrl": "https://etherscan.io/address/0x03482e8c00d4ef3ea9717656c4042bb6b9440ad1", + "xHandle": "cassanojuns", + "xUrl": "https://twitter.com/cassanojuns", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1448126", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "symslbhry", + "displayName": "symslbhry", + "fid": 1448126, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76812a45-1705-4a63-6eaf-165d08a6c200/original", + "followers": 148, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x613514f4fd1e2ae23ffa59e879bebc472f12bbd0", + "etherscanUrl": "https://etherscan.io/address/0x613514f4fd1e2ae23ffa59e879bebc472f12bbd0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309386", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bobbydigital", + "displayName": "Chris Catalano", + "fid": 309386, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f0e98be-5089-4677-b1ee-d4dfd7976700/original", + "followers": 147, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb5639867b0807ce38e1eb534651380ebb09b2c0e", + "etherscanUrl": "https://etherscan.io/address/0xb5639867b0807ce38e1eb534651380ebb09b2c0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_931532", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chokdee", + "displayName": "Chokdee", + "fid": 931532, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16077b00-fc45-4afa-cc5d-96dd91940200/rectcrop3", + "followers": 147, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x967b9ad0882a52ce865716dcec4c77c6beaee636", + "etherscanUrl": "https://etherscan.io/address/0x967b9ad0882a52ce865716dcec4c77c6beaee636", + "xHandle": "suratana12", + "xUrl": "https://twitter.com/suratana12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1073710", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sharps", + "displayName": "lenidewi 🐉 $MON", + "fid": 1073710, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a718f57-a5a4-44cc-ffd0-abf45b111600/original", + "followers": 147, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e8e548634147d4b72c47d609e69d80eabb07a31", + "etherscanUrl": "https://etherscan.io/address/0x3e8e548634147d4b72c47d609e69d80eabb07a31", + "xHandle": "lenidewi2", + "xUrl": "https://twitter.com/lenidewi2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_969289", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wizberry303", + "displayName": "BASED BADDIE", + "fid": 969289, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a2e2527-6885-4011-b841-2344f2ebf400/original", + "followers": 146, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb03a3e221eeeb63458a31b0fbe1904fcc19de8d8", + "etherscanUrl": "https://etherscan.io/address/0xb03a3e221eeeb63458a31b0fbe1904fcc19de8d8", + "xHandle": "wizberr303", + "xUrl": "https://twitter.com/wizberr303", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1040967", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sicgent", + "displayName": "Sicgent", + "fid": 1040967, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2407949d-6a31-4394-a9ed-0b5c67b25300/original", + "followers": 146, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc172254ad5b72dce2a1b2c93eece9510586f4479", + "etherscanUrl": "https://etherscan.io/address/0xc172254ad5b72dce2a1b2c93eece9510586f4479", + "xHandle": "sicgent", + "xUrl": "https://twitter.com/sicgent", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_248912", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drmoonhatt4n", + "displayName": "Dr.Moonhatt4n", + "fid": 248912, + "pfpUrl": "https://i.imgur.com/UwdZCDB.jpg", + "followers": 146, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd08854bb1f22b95f38c09afc450bd7f3bf110ce9", + "etherscanUrl": "https://etherscan.io/address/0xd08854bb1f22b95f38c09afc450bd7f3bf110ce9", + "xHandle": "_drmoonhatt4n_", + "xUrl": "https://twitter.com/_drmoonhatt4n_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_388930", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shibavox.eth", + "displayName": "Shibavox", + "fid": 388930, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9d34c137-a15f-4edf-312b-898ef4263f00/original", + "followers": 145, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc68675813492569ccc81e805b92d0ba3fb2e023b", + "etherscanUrl": "https://etherscan.io/address/0xc68675813492569ccc81e805b92d0ba3fb2e023b", + "xHandle": "shibavox", + "xUrl": "https://twitter.com/shibavox", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_647883", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zepx", + "displayName": "Zephyr Whisper", + "fid": 647883, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/368cd7f2-6fa6-475b-eeec-ccb307d3b500/rectcrop3", + "followers": 144, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd92304f129c3bbe54f42f1bd12ede327bb5fabb", + "etherscanUrl": "https://etherscan.io/address/0xfd92304f129c3bbe54f42f1bd12ede327bb5fabb", + "xHandle": "claudia1553818", + "xUrl": "https://twitter.com/claudia1553818", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069047", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "moneyout", + "displayName": "Merukurou.Eth", + "fid": 1069047, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53a53365-8d53-40ca-672e-54ce5648a300/original", + "followers": 141, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19716a8df497b8e962041410ceae2ac07196c27d", + "etherscanUrl": "https://etherscan.io/address/0x19716a8df497b8e962041410ceae2ac07196c27d", + "xHandle": "merukurou", + "xUrl": "https://twitter.com/merukurou", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "paramount", + "displayName": "Snowflake", + "fid": 214139, + "pfpUrl": "https://i.imgur.com/URZsIbn.jpg", + "followers": 141, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f30e6f0c1974c3dcd87f05097bf32495d97561a", + "etherscanUrl": "https://etherscan.io/address/0x8f30e6f0c1974c3dcd87f05097bf32495d97561a", + "xHandle": "shiv_ay3", + "xUrl": "https://twitter.com/shiv_ay3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_343390", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "spread-eagle069", + "displayName": "SlutTamer", + "fid": 343390, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762765297/43416bdb-8d3c-46f9-94b0-b2eff379702e.jpg", + "followers": 141, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96f54fa97c865f86c0f75c2be4f7abd1a3c15374", + "etherscanUrl": "https://etherscan.io/address/0x96f54fa97c865f86c0f75c2be4f7abd1a3c15374", + "xHandle": "realreconreal1s", + "xUrl": "https://twitter.com/realreconreal1s", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_643207", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "starligh", + "displayName": "Aria Starlight", + "fid": 643207, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a076df4f-3162-4439-3bec-8f99890b2f00/rectcrop3", + "followers": 139, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6f3052379f2c487ced60f5309af761e0fe5541c", + "etherscanUrl": "https://etherscan.io/address/0xb6f3052379f2c487ced60f5309af761e0fe5541c", + "xHandle": "aleksej221140", + "xUrl": "https://twitter.com/aleksej221140", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_218274", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trananh", + "displayName": "Trần Anh", + "fid": 218274, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84266fe1-a1b2-4f40-147f-ccdd67e08d00/original", + "followers": 138, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e53857999d649237d56502079243265205fb4b8", + "etherscanUrl": "https://etherscan.io/address/0x2e53857999d649237d56502079243265205fb4b8", + "xHandle": "0xanhtran", + "xUrl": "https://twitter.com/0xanhtran", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_477624", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elonx1", + "displayName": "M Yasir Ali", + "fid": 477624, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/pink.jpg", + "followers": 138, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b181020fa94fde42a7e923e4066f2c2f0125f9d", + "etherscanUrl": "https://etherscan.io/address/0x9b181020fa94fde42a7e923e4066f2c2f0125f9d", + "xHandle": "alishanoor0425", + "xUrl": "https://twitter.com/alishanoor0425", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_546602", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "diepcrypto", + "displayName": "Dani", + "fid": 546602, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ffc787b-4444-413d-9bdf-0d759a0e5b00/original", + "followers": 131, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd2f6052039d9c78a91eade8fd1ac3f2e578f5f3", + "etherscanUrl": "https://etherscan.io/address/0xdd2f6052039d9c78a91eade8fd1ac3f2e578f5f3", + "xHandle": "dani_resear", + "xUrl": "https://twitter.com/dani_resear", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1059930", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "smagajibk", + "displayName": "smagajibk", + "fid": 1059930, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95aa956f-b6a3-45af-9d26-aff4fba2f100/original", + "followers": 131, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc03a58b0eb18cb0833deb1b086c12b66d509fdf1", + "etherscanUrl": "https://etherscan.io/address/0xc03a58b0eb18cb0833deb1b086c12b66d509fdf1", + "xHandle": "x_magaji", + "xUrl": "https://twitter.com/x_magaji", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_889734", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "enyart", + "displayName": "WilliamBelfort", + "fid": 889734, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13beabf3-b7ea-4d20-0dbc-6fdf569a0300/original", + "followers": 130, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5150c2864bc321fd2507444aa869c564d8d68e36", + "etherscanUrl": "https://etherscan.io/address/0x5150c2864bc321fd2507444aa869c564d8d68e36", + "xHandle": "williambelfort_", + "xUrl": "https://twitter.com/williambelfort_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_641726", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "timekeepe", + "displayName": "Kairos Timekeeper", + "fid": 641726, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f91a7b39-c529-4998-480e-4d6ce4facf00/rectcrop3", + "followers": 129, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf87cee21b63a7babc04ce6f279a8ce12826ce069", + "etherscanUrl": "https://etherscan.io/address/0xf87cee21b63a7babc04ce6f279a8ce12826ce069", + "xHandle": "abigail6575364", + "xUrl": "https://twitter.com/abigail6575364", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_410582", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "saimona", + "displayName": "Saimona", + "fid": 410582, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeid7kymq6ltgqj3eoy5vt3yet2fwmwvztd75akbativufsnvpagj5q", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe780b9211c1ae26de048d934990a48d5645b5637", + "etherscanUrl": "https://etherscan.io/address/0xe780b9211c1ae26de048d934990a48d5645b5637", + "xHandle": "sultan100801", + "xUrl": "https://twitter.com/sultan100801", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1112395", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "svabhishek", + "displayName": "Sistla V Abhishek", + "fid": 1112395, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21c5cb2a-a3ea-4fb0-2600-7afa83f71800/original", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1af7f33a79349f4ed98665189d91a59ad9d08b5", + "etherscanUrl": "https://etherscan.io/address/0xa1af7f33a79349f4ed98665189d91a59ad9d08b5", + "xHandle": "svabhishek", + "xUrl": "https://twitter.com/svabhishek", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_895194", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mkababio", + "displayName": "Yahya Mukhtar", + "fid": 895194, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c60e3234-723d-4a15-77c3-8d21c3ebad00/rectcrop3", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a227e876b085f9c61b5715cf01d249614c8bc2c", + "etherscanUrl": "https://etherscan.io/address/0x9a227e876b085f9c61b5715cf01d249614c8bc2c", + "xHandle": "maryam47418960", + "xUrl": "https://twitter.com/maryam47418960", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_396437", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dominant", + "displayName": "Dominant base.eth", + "fid": 396437, + "pfpUrl": "https://i.imgur.com/xryMS2x.jpg", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x797c00dcedf9ad05ca4009cbac6acf69bb818c39", + "etherscanUrl": "https://etherscan.io/address/0x797c00dcedf9ad05ca4009cbac6acf69bb818c39", + "xHandle": "andreishubs", + "xUrl": "https://twitter.com/andreishubs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_906094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cloudhost99", + "displayName": "Cloudhost |🔵 \"base.eth\"🔵", + "fid": 906094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6be7a286-ac3f-4c0e-d79e-1bbb5f37a400/rectcrop3", + "followers": 127, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc67483b416103918f7b129b18610bb3caa3fddc8", + "etherscanUrl": "https://etherscan.io/address/0xc67483b416103918f7b129b18610bb3caa3fddc8", + "xHandle": "andrysy63902288", + "xUrl": "https://twitter.com/andrysy63902288", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_522874", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yaelg", + "displayName": "YaElG", + "fid": 522874, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92e09461-2180-4cea-299d-165ba98a4700/rectcrop3", + "followers": 127, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ab6573c612cec4a12ec383507e04d1b2533c4fd", + "etherscanUrl": "https://etherscan.io/address/0x3ab6573c612cec4a12ec383507e04d1b2533c4fd", + "xHandle": "yana_mil6", + "xUrl": "https://twitter.com/yana_mil6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_914123", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "forresttindall", + "displayName": "Forrest", + "fid": 914123, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c1c3e01-90dc-4f0f-99e8-d0236d8e8800/original", + "followers": 127, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2bd3dd742b7068459fe3b107a5164398e7131800", + "etherscanUrl": "https://etherscan.io/address/0x2bd3dd742b7068459fe3b107a5164398e7131800", + "xHandle": "forresttindall", + "xUrl": "https://twitter.com/forresttindall", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_708891", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "defiboy", + "displayName": "defiboy.base.eth", + "fid": 708891, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d60f54be-fb6b-4abc-6c4c-9364823b6100/rectcrop3", + "followers": 127, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x088571f6d104f967d004c811228ac014fb0a3a8b", + "etherscanUrl": "https://etherscan.io/address/0x088571f6d104f967d004c811228ac014fb0a3a8b", + "xHandle": "defiboyszn", + "xUrl": "https://twitter.com/defiboyszn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_522292", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "moonverse", + "displayName": "Waziri", + "fid": 522292, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3be0a261-724b-45c4-9b31-42547c65d000/original", + "followers": 125, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01884f2be5f181027d579216a772b140e9f2d57c", + "etherscanUrl": "https://etherscan.io/address/0x01884f2be5f181027d579216a772b140e9f2d57c", + "xHandle": "akuwazir", + "xUrl": "https://twitter.com/akuwazir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132497", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basefunai", + "displayName": "BASEFUN", + "fid": 1132497, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16a436a5-6cba-4f50-7156-bd95771a6100/original", + "followers": 125, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2219994d3296fdaded354274d5e00ec3cf55cf17", + "etherscanUrl": "https://etherscan.io/address/0x2219994d3296fdaded354274d5e00ec3cf55cf17", + "xHandle": "basefunai", + "xUrl": "https://twitter.com/basefunai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_643356", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eiraex", + "displayName": "Eira Whisper", + "fid": 643356, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4cd4833f-a884-4402-865f-b490bfbfa700/rectcrop3", + "followers": 125, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d347a6628a1ec53288a04f7c8a725b5beb2d5ab", + "etherscanUrl": "https://etherscan.io/address/0x0d347a6628a1ec53288a04f7c8a725b5beb2d5ab", + "xHandle": "eric46447810505", + "xUrl": "https://twitter.com/eric46447810505", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_914890", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thang888888", + "displayName": "Monad", + "fid": 914890, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/904513a8-d2a5-40ce-ebd6-34705e9c3700/rectcrop3", + "followers": 124, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8edaa7af8ac828ed58fb138c382ab77d1c502a76", + "etherscanUrl": "https://etherscan.io/address/0x8edaa7af8ac828ed58fb138c382ab77d1c502a76", + "xHandle": "thangha19931991", + "xUrl": "https://twitter.com/thangha19931991", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639114", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "seraphinaz", + "displayName": "Seraphina Grace", + "fid": 639114, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08ec5d66-04b5-41da-f6b0-115064494800/rectcrop3", + "followers": 124, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x973f5695133463745856f6ca0b55a0f8487fe441", + "etherscanUrl": "https://etherscan.io/address/0x973f5695133463745856f6ca0b55a0f8487fe441", + "xHandle": "chayagutie22024", + "xUrl": "https://twitter.com/chayagutie22024", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_632548", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whisperk", + "displayName": "Echo Whisper", + "fid": 632548, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff3f99b2-1332-466a-01b2-c273ec2c6500/rectcrop3", + "followers": 123, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d3be1e8f30fd4c7aeb8e33b9a944390a7b4e7f2", + "etherscanUrl": "https://etherscan.io/address/0x9d3be1e8f30fd4c7aeb8e33b9a944390a7b4e7f2", + "xHandle": "odissej158984", + "xUrl": "https://twitter.com/odissej158984", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_936169", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joshjo", + "displayName": "Joshjo", + "fid": 936169, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/83cb6705-05f8-48a1-cb75-5e91f9ecc700/original", + "followers": 121, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2692ec970cd02dac9f573b94fbf0b780524c4941", + "etherscanUrl": "https://etherscan.io/address/0x2692ec970cd02dac9f573b94fbf0b780524c4941", + "xHandle": "josh_johnson7", + "xUrl": "https://twitter.com/josh_johnson7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_630705", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "novato", + "displayName": "Nova Quasar", + "fid": 630705, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d1e0769c-10bc-4ec8-24cb-1058fc279200/rectcrop3", + "followers": 121, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7af68e2199889d39bc361c616809bbd934f0de94", + "etherscanUrl": "https://etherscan.io/address/0x7af68e2199889d39bc361c616809bbd934f0de94", + "xHandle": "gordej62786", + "xUrl": "https://twitter.com/gordej62786", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1111551", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "voidhollow", + "displayName": "voidhollow", + "fid": 1111551, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ba297c6-e907-410c-df71-3d38fbd10c00/original", + "followers": 119, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4454cf99d88088354145be82697856483d08860f", + "etherscanUrl": "https://etherscan.io/address/0x4454cf99d88088354145be82697856483d08860f", + "xHandle": "voidhollowa", + "xUrl": "https://twitter.com/voidhollowa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_637288", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eosses", + "displayName": "Eos Dawn", + "fid": 637288, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82ef94de-62e8-4e47-c87c-5724bd1d1000/rectcrop3", + "followers": 118, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1615269cd460e9a39f30a5afd579246e37b00f8e", + "etherscanUrl": "https://etherscan.io/address/0x1615269cd460e9a39f30a5afd579246e37b00f8e", + "xHandle": "yolanda150491", + "xUrl": "https://twitter.com/yolanda150491", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_647662", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "orionquill", + "displayName": "Orion Quill", + "fid": 647662, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/475d87ac-1f30-4108-03e8-b707553f7200/rectcrop3", + "followers": 118, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x050cf7f327738e5887351318ee2f1c5532c24765", + "etherscanUrl": "https://etherscan.io/address/0x050cf7f327738e5887351318ee2f1c5532c24765", + "xHandle": "seth70580139384", + "xUrl": "https://twitter.com/seth70580139384", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_770862", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "okieroad.eth", + "displayName": "Okie Road", + "fid": 770862, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0451a75c-54ca-4cb5-947e-d5e5b27b6d00/original", + "followers": 118, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6573826d843dadb8f0656dd2f99430273ee72096", + "etherscanUrl": "https://etherscan.io/address/0x6573826d843dadb8f0656dd2f99430273ee72096", + "xHandle": "okie_road", + "xUrl": "https://twitter.com/okie_road", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_208189", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "250389.eth", + "displayName": "Jarment32 🫂", + "fid": 208189, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6e5fc454-da0b-44c5-3c4e-65eba9ddaa00/rectcrop3", + "followers": 117, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x039264fded28cc7f7c21b29cd6cdbbbeb8a5cc9e", + "etherscanUrl": "https://etherscan.io/address/0x039264fded28cc7f7c21b29cd6cdbbbeb8a5cc9e", + "xHandle": "jarment32", + "xUrl": "https://twitter.com/jarment32", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1025599", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rapid17", + "displayName": "kangreceh🐐", + "fid": 1025599, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fca209c-ac70-4376-94e7-f922920e1300/rectcrop3", + "followers": 117, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x913fe024c8852391519e88935b173dc4ea57763a", + "etherscanUrl": "https://etherscan.io/address/0x913fe024c8852391519e88935b173dc4ea57763a", + "xHandle": "rapidsarif", + "xUrl": "https://twitter.com/rapidsarif", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_436144", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "krxr", + "displayName": "krxr 🎩🔄🎭👾", + "fid": 436144, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762015788/1000010115.jpg.jpg", + "followers": 115, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43c2d6e3fede1950cbfff725db333b40690e58fd", + "etherscanUrl": "https://etherscan.io/address/0x43c2d6e3fede1950cbfff725db333b40690e58fd", + "xHandle": "soss099", + "xUrl": "https://twitter.com/soss099", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1343955", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "windylam", + "displayName": "Windylam.base.eth", + "fid": 1343955, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a0207d2-a84c-4b83-aecb-e2fe586c6100/original", + "followers": 114, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d790a99426c7be8a7bbebd04d364930a70fda10", + "etherscanUrl": "https://etherscan.io/address/0x4d790a99426c7be8a7bbebd04d364930a70fda10", + "xHandle": "babydogedoo", + "xUrl": "https://twitter.com/babydogedoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307506", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdarafat", + "displayName": "MD Aragat", + "fid": 307506, + "pfpUrl": "https://i.imgur.com/hdUkoYH.jpg", + "followers": 114, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb21a7d32f524b586374901c2727ffd2b839d455", + "etherscanUrl": "https://etherscan.io/address/0xdb21a7d32f524b586374901c2727ffd2b839d455", + "xHandle": "arafatmd5203", + "xUrl": "https://twitter.com/arafatmd5203", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098142", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "justinroberts22", + "displayName": "Justin Roberts", + "fid": 1098142, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/562725be-0505-42f8-10bf-cb4144cc0800/original", + "followers": 113, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc36941912121ecb6143dedfd81a296dfcb9e4e1c", + "etherscanUrl": "https://etherscan.io/address/0xc36941912121ecb6143dedfd81a296dfcb9e4e1c", + "xHandle": "zlatanwilliams7", + "xUrl": "https://twitter.com/zlatanwilliams7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1039247", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xzrx", + "displayName": "zero", + "fid": 1039247, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5aefefa-a0a1-4965-2bad-3f9353a2a300/original", + "followers": 113, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0cd40be67c255f849127b26ea6ff45bda23c9cd", + "etherscanUrl": "https://etherscan.io/address/0xc0cd40be67c255f849127b26ea6ff45bda23c9cd", + "xHandle": "andx_lx", + "xUrl": "https://twitter.com/andx_lx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_523200", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kalistory", + "displayName": "Kali Story_", + "fid": 523200, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd4f2c3e-825e-41e2-68d8-47fc757fef00/original", + "followers": 112, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb897178d4b796495ea64e6c2f61a8032c5563960", + "etherscanUrl": "https://etherscan.io/address/0xb897178d4b796495ea64e6c2f61a8032c5563960", + "xHandle": "thekalistory_", + "xUrl": "https://twitter.com/thekalistory_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_470223", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wasyl", + "displayName": "wasyl", + "fid": 470223, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34feea73-a0ff-423e-484c-a56511cbe400/original", + "followers": 111, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd60b85537c813a873bf2ca4ed1a14011e4c305c", + "etherscanUrl": "https://etherscan.io/address/0xcd60b85537c813a873bf2ca4ed1a14011e4c305c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196104", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lordkeklol", + "displayName": "lordkek", + "fid": 196104, + "pfpUrl": "https://i.imgur.com/vFZVd4a.jpg", + "followers": 110, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf3155897cba051b692276b4fc7ce26980370479", + "etherscanUrl": "https://etherscan.io/address/0xaf3155897cba051b692276b4fc7ce26980370479", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1025595", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bitstore01", + "displayName": "Bits", + "fid": 1025595, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27d46eac-bc54-400a-797e-174e112c7e00/original", + "followers": 110, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebf2b6d4c54ee46e138621b787111111a9301aeb", + "etherscanUrl": "https://etherscan.io/address/0xebf2b6d4c54ee46e138621b787111111a9301aeb", + "xHandle": "bitstore01", + "xUrl": "https://twitter.com/bitstore01", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_632700", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "harmonys", + "displayName": "Aria Harmony", + "fid": 632700, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a777f284-d3dc-49ee-8e81-260d93f3d800/rectcrop3", + "followers": 110, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e768e8bba5b15415c9ad568755063da7c263911", + "etherscanUrl": "https://etherscan.io/address/0x0e768e8bba5b15415c9ad568755063da7c263911", + "xHandle": "isabelle1731224", + "xUrl": "https://twitter.com/isabelle1731224", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_344840", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "calypso", + "displayName": "Chris CATALANO", + "fid": 344840, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4830560d-438b-4a24-74ab-d63a9675a300/original", + "followers": 109, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9efeb581c020fc746c1df51d8d2e829c03aa6674", + "etherscanUrl": "https://etherscan.io/address/0x9efeb581c020fc746c1df51d8d2e829c03aa6674", + "xHandle": "upperplaygroun", + "xUrl": "https://twitter.com/upperplaygroun", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_294666", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "delvalley.eth", + "displayName": "delvalley.degen.eth🎩🎭", + "fid": 294666, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db5febad-434e-4802-d8f6-2d16ae738600/rectcrop3", + "followers": 108, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36774ac472949eafb10f24b99f0f719eb5d8d054", + "etherscanUrl": "https://etherscan.io/address/0x36774ac472949eafb10f24b99f0f719eb5d8d054", + "xHandle": "soloandrea23", + "xUrl": "https://twitter.com/soloandrea23", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1028184", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aldipprt", + "displayName": "yess", + "fid": 1028184, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9ab31e0-becb-4eb0-6d3a-82b70a7a8c00/rectcrop3", + "followers": 108, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7de96115b3ca30239163246f032c8d4d1c8d712a", + "etherscanUrl": "https://etherscan.io/address/0x7de96115b3ca30239163246f032c8d4d1c8d712a", + "xHandle": "laknat222", + "xUrl": "https://twitter.com/laknat222", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921676", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khodox69", + "displayName": "froggy", + "fid": 921676, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4297a1c-3718-4461-6c27-ecee228e8100/original", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe95cfcf2ecdae4dd6348d805043ee78e51a1303e", + "etherscanUrl": "https://etherscan.io/address/0xe95cfcf2ecdae4dd6348d805043ee78e51a1303e", + "xHandle": "khodox6969", + "xUrl": "https://twitter.com/khodox6969", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257981", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arthurdy", + "displayName": "Arthur", + "fid": 257981, + "pfpUrl": "https://i.imgur.com/3FrcCBv.jpg", + "followers": 106, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x79575154bcac15bcc6cee1a0b88ca7b7dc6d8ce1", + "etherscanUrl": "https://etherscan.io/address/0x79575154bcac15bcc6cee1a0b88ca7b7dc6d8ce1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_218063", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "daddyhydro", + "displayName": "daddyhydro | SubCanis ", + "fid": 218063, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b38bf0bb-3609-47cb-9256-b860699d2800/rectcrop3", + "followers": 106, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1958229dcd03de4b9f36d6861aa07171fa790812", + "etherscanUrl": "https://etherscan.io/address/0x1958229dcd03de4b9f36d6861aa07171fa790812", + "xHandle": "scg1001", + "xUrl": "https://twitter.com/scg1001", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "otw", + "displayName": "wizardofongz", + "fid": 4997, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3e72f46-4466-4bd9-dab7-0d1b6b928900/original", + "followers": 105, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd20e8d5e3ddd96c42ded7053842d054bf9e64c29", + "etherscanUrl": "https://etherscan.io/address/0xd20e8d5e3ddd96c42ded7053842d054bf9e64c29", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_891519", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elbandito77", + "displayName": "elbandito77😺", + "fid": 891519, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ceaa63cc-4431-4bd9-20ba-9ccd38ecca00/rectcrop3", + "followers": 104, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5979fc1894de026978d3feaf4b8cd69d66970cce", + "etherscanUrl": "https://etherscan.io/address/0x5979fc1894de026978d3feaf4b8cd69d66970cce", + "xHandle": "theoldlady_o", + "xUrl": "https://twitter.com/theoldlady_o", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_631229", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zephyrs", + "displayName": "Zephyr Breeze", + "fid": 631229, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb168541-b18a-4534-2a44-cfc2b2eae700/rectcrop3", + "followers": 104, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8917c9b50c89f2e8ea969ba6bf36c267e99ba570", + "etherscanUrl": "https://etherscan.io/address/0x8917c9b50c89f2e8ea969ba6bf36c267e99ba570", + "xHandle": "daniel760917713", + "xUrl": "https://twitter.com/daniel760917713", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_942311", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sadikali", + "displayName": "sadik ali", + "fid": 942311, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17cfce9e-4847-4f59-ba90-20e6ecd83700/rectcrop3", + "followers": 104, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60fed58f177587a179559243a257ce7934ad2cdc", + "etherscanUrl": "https://etherscan.io/address/0x60fed58f177587a179559243a257ce7934ad2cdc", + "xHandle": "sadikali18374", + "xUrl": "https://twitter.com/sadikali18374", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117013", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xkrut", + "displayName": "0Xkrut _base.eth", + "fid": 1117013, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/097ee01d-ce4c-421e-f294-94c244bb0d00/original", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbed0006cc4a257c8651beb1a7df42205cf73276c", + "etherscanUrl": "https://etherscan.io/address/0xbed0006cc4a257c8651beb1a7df42205cf73276c", + "xHandle": "xkrut_", + "xUrl": "https://twitter.com/xkrut_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060933", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dwiprase", + "displayName": "DenPras", + "fid": 1060933, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88b985ee-d49a-47fc-37b9-4be163755400/original", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c681e78287900839a9c73b5ae736f2cedb04012", + "etherscanUrl": "https://etherscan.io/address/0x2c681e78287900839a9c73b5ae736f2cedb04012", + "xHandle": "tanakainunft", + "xUrl": "https://twitter.com/tanakainunft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1090387", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "davspick", + "displayName": "Davspick", + "fid": 1090387, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d8a33e93-c850-4c2f-0159-4165ffd8c000/rectcrop3", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x047fdff3d2b46d2a8d5c3a26348d9aef7f9f96ed", + "etherscanUrl": "https://etherscan.io/address/0x047fdff3d2b46d2a8d5c3a26348d9aef7f9f96ed", + "xHandle": "davspick", + "xUrl": "https://twitter.com/davspick", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_994263", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "princetonzart", + "displayName": "princetonzart", + "fid": 994263, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/25dcf022-f773-4626-4846-d270f4a6fa00/rectcrop3", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe212f058bbe2dba2f6d87876887025dc78556210", + "etherscanUrl": "https://etherscan.io/address/0xe212f058bbe2dba2f6d87876887025dc78556210", + "xHandle": "princetonzart", + "xUrl": "https://twitter.com/princetonzart", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_630215", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "seraphinaa", + "displayName": "Seraphina", + "fid": 630215, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44d2d834-1d34-46e2-e89d-725f92be3800/rectcrop3", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9829e8f964004d3e98c6dd3981bdf795ade3e3df", + "etherscanUrl": "https://etherscan.io/address/0x9829e8f964004d3e98c6dd3981bdf795ade3e3df", + "xHandle": "elucas91373", + "xUrl": "https://twitter.com/elucas91373", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1315093", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alexsmartg21771", + "displayName": "artbull", + "fid": 1315093, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/017c9caa-758a-4a04-3a9b-808b30284400/original", + "followers": 101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02d12af23804d744775aa4ec83e1dcd3887379b8", + "etherscanUrl": "https://etherscan.io/address/0x02d12af23804d744775aa4ec83e1dcd3887379b8", + "xHandle": "alexsmartg21771", + "xUrl": "https://twitter.com/alexsmartg21771", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_250032", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kelasheh1", + "displayName": "Anim451", + "fid": 250032, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8476c4eb-bf38-4095-68ab-3bae5b041b00/original", + "followers": 101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59b141dc540f7b13e9231792c23c1f5c091a15cb", + "etherscanUrl": "https://etherscan.io/address/0x59b141dc540f7b13e9231792c23c1f5c091a15cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_421059", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xheru", + "displayName": "Her.eth", + "fid": 421059, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1a3c954-fc02-4db5-e59b-11a6088ff100/original", + "followers": 101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3b1db0ed642a40c58d1b6561d60368452bff1fe", + "etherscanUrl": "https://etherscan.io/address/0xe3b1db0ed642a40c58d1b6561d60368452bff1fe", + "xHandle": "zkrodn", + "xUrl": "https://twitter.com/zkrodn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045513", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juissynfts", + "displayName": "Kayadu Lohar", + "fid": 1045513, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be159811-1ed7-4106-099f-aeef9d263400/original", + "followers": 101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x769327caff8c08b692ce6edf9a2bf4d5abcd3548", + "etherscanUrl": "https://etherscan.io/address/0x769327caff8c08b692ce6edf9a2bf4d5abcd3548", + "xHandle": "vinnycrypto01", + "xUrl": "https://twitter.com/vinnycrypto01", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062481", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "topp-airdrop", + "displayName": "Wish me luck 🧬", + "fid": 1062481, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af9873c3-bfe9-499c-e890-f339346a7100/original", + "followers": 100, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c70620311367e8d8ef0f0ffb4b4336c525ed7c3", + "etherscanUrl": "https://etherscan.io/address/0x3c70620311367e8d8ef0f0ffb4b4336c525ed7c3", + "xHandle": "topp_airdrop", + "xUrl": "https://twitter.com/topp_airdrop", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_824027", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "9229", + "displayName": "Cool 🎩", + "fid": 824027, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd592c4f-9423-4fb2-a01f-3cff7266b600/rectcrop3", + "followers": 100, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x25db866df2fd0e467943e8b21cf21f70cb2a29ad", + "etherscanUrl": "https://etherscan.io/address/0x25db866df2fd0e467943e8b21cf21f70cb2a29ad", + "xHandle": "chanjie112233", + "xUrl": "https://twitter.com/chanjie112233", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_507436", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "esta", + "displayName": "LogicCrafterDz", + "fid": 507436, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80eabf2a-c5a5-4535-6c2f-2d12471a2300/original", + "followers": 99, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14f4696369e60fc31477202b7a53c6e552a489d5", + "etherscanUrl": "https://etherscan.io/address/0x14f4696369e60fc31477202b7a53c6e552a489d5", + "xHandle": "arana_lib", + "xUrl": "https://twitter.com/arana_lib", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1237696", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skuycrot.base.eth", + "displayName": "Wick", + "fid": 1237696, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763335315/744e044a-3fc8-4e3e-ba2c-cbee73486a5e.png", + "followers": 99, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d0fc312d1a3cb6c0caa1dae1d774bc0ae9a71f9", + "etherscanUrl": "https://etherscan.io/address/0x5d0fc312d1a3cb6c0caa1dae1d774bc0ae9a71f9", + "xHandle": "wicky_wey", + "xUrl": "https://twitter.com/wicky_wey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_621625", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohitbmurkute", + "displayName": "Mohit Murkute", + "fid": 621625, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89581ea5-5336-4539-c9c3-7c15e2c60300/rectcrop3", + "followers": 98, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70c6c7c8d763b2ac2e32e4c0c57f678d4b8189d3", + "etherscanUrl": "https://etherscan.io/address/0x70c6c7c8d763b2ac2e32e4c0c57f678d4b8189d3", + "xHandle": "mohitmurku38422", + "xUrl": "https://twitter.com/mohitmurku38422", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_462116", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "taochen", + "displayName": "taochen", + "fid": 462116, + "pfpUrl": "https://i.imgur.com/kV4cUe7.jpg", + "followers": 97, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2df7fb924bfa2817c35e4c527e25b3a4d6b4a6ba", + "etherscanUrl": "https://etherscan.io/address/0x2df7fb924bfa2817c35e4c527e25b3a4d6b4a6ba", + "xHandle": "tes53596747", + "xUrl": "https://twitter.com/tes53596747", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21694", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pysger", + "displayName": "pysger", + "fid": 21694, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9c2f097-9d65-4c77-6085-56c9270df500/original", + "followers": 97, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00fbbc2362303396c22016da616f5b9afa644af8", + "etherscanUrl": "https://etherscan.io/address/0x00fbbc2362303396c22016da616f5b9afa644af8", + "xHandle": "pysger", + "xUrl": "https://twitter.com/pysger", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1007489", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zakareia312", + "displayName": "Zakareia312", + "fid": 1007489, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0de5acd-0062-4f0e-30c8-31fa73cae200/rectcrop3", + "followers": 95, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1daad92dad69e71d688f065e8c7ff8a9ab858add", + "etherscanUrl": "https://etherscan.io/address/0x1daad92dad69e71d688f065e8c7ff8a9ab858add", + "xHandle": "zakareia312", + "xUrl": "https://twitter.com/zakareia312", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_940301", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tony-tt", + "displayName": "Tony TT", + "fid": 940301, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1b28db4e-29df-4dd8-b55d-2d6e43a6d500/original", + "followers": 94, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa40b94ba0bf1388977c4430e3b87be77814665bb", + "etherscanUrl": "https://etherscan.io/address/0xa40b94ba0bf1388977c4430e3b87be77814665bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_235567", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "avlethtl", + "displayName": "Avl", + "fid": 235567, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6926523b-b9f8-4e40-c57f-dd23deb24900/original", + "followers": 94, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2855919965de20d24218c9fcc52765a4a3805d15", + "etherscanUrl": "https://etherscan.io/address/0x2855919965de20d24218c9fcc52765a4a3805d15", + "xHandle": "avlethtl", + "xUrl": "https://twitter.com/avlethtl", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_576235", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rafaona1", + "displayName": "🐱Raf", + "fid": 576235, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dafb942a-7a18-4515-e796-05546b7dbf00/rectcrop3", + "followers": 93, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x35f3fc7e0958ba0b264c2c586616a4fd192c919f", + "etherscanUrl": "https://etherscan.io/address/0x35f3fc7e0958ba0b264c2c586616a4fd192c919f", + "xHandle": "rafsanjaniazan", + "xUrl": "https://twitter.com/rafsanjaniazan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_386722", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "koykoy", + "displayName": "Senditia", + "fid": 386722, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/91d1eefe-d6c0-4d2f-7f89-914b65e53900/original", + "followers": 92, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2b5c163cee1ee1f2bfbc4c2a2fa28fc2a48922f2", + "etherscanUrl": "https://etherscan.io/address/0x2b5c163cee1ee1f2bfbc4c2a2fa28fc2a48922f2", + "xHandle": "kangbaso24", + "xUrl": "https://twitter.com/kangbaso24", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074508", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shisangmoebie", + "displayName": "0xsamb", + "fid": 1074508, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762444547/65eac5cb-1b5a-4b7f-a17e-ce56817ff8d3.jpg.jpg", + "followers": 90, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb99a3817e1ff81536aaf21d0741fc540fc9f36a6", + "etherscanUrl": "https://etherscan.io/address/0xb99a3817e1ff81536aaf21d0741fc540fc9f36a6", + "xHandle": "shisangmoebie", + "xUrl": "https://twitter.com/shisangmoebie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1081904", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rahim22", + "displayName": "Rahinss", + "fid": 1081904, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3177db4c-fe46-4ffc-7b3b-8e813bf3f700/rectcrop3", + "followers": 89, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23f3c82e11d7f83d9b3792d930e91724f9b67cd9", + "etherscanUrl": "https://etherscan.io/address/0x23f3c82e11d7f83d9b3792d930e91724f9b67cd9", + "xHandle": "borsa35804221", + "xUrl": "https://twitter.com/borsa35804221", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_898170", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "romands", + "displayName": "romands.base.eth", + "fid": 898170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebde434e-8356-409f-17f0-4d4f87323d00/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x969464f044b54432b0aa8ba74934cd19d92f43f9", + "etherscanUrl": "https://etherscan.io/address/0x969464f044b54432b0aa8ba74934cd19d92f43f9", + "xHandle": "nstwn29163", + "xUrl": "https://twitter.com/nstwn29163", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "obytex39", + "displayName": "Oby", + "fid": 1129707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f506022-14ea-451b-f580-463be9e2c400/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50c87092834f671ddaa2422b6486ef74f447b07d", + "etherscanUrl": "https://etherscan.io/address/0x50c87092834f671ddaa2422b6486ef74f447b07d", + "xHandle": "obytex44", + "xUrl": "https://twitter.com/obytex44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1035896", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elbarra", + "displayName": "Elbarra", + "fid": 1035896, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab8e28a2-6f8b-4fb2-93dd-d7c809d2aa00/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f7cd39f36914568c81ff5686408b7cd1db673c4", + "etherscanUrl": "https://etherscan.io/address/0x7f7cd39f36914568c81ff5686408b7cd1db673c4", + "xHandle": "hendry_arch", + "xUrl": "https://twitter.com/hendry_arch", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1091567", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "c35ar27", + "displayName": "DR0N3", + "fid": 1091567, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b40f3845-6415-4434-975d-df31e613c200/original", + "followers": 86, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0247ffabcc8aa8883eb10873b58630569c06d494", + "etherscanUrl": "https://etherscan.io/address/0x0247ffabcc8aa8883eb10873b58630569c06d494", + "xHandle": "c35ar_27", + "xUrl": "https://twitter.com/c35ar_27", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_904124", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crypthor", + "displayName": "Crypthor ⚡", + "fid": 904124, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dba42fe-09b8-40a0-18ab-055180597300/rectcrop3", + "followers": 86, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7c9ee89236605ef33995aa0e6cabcf099ea7d4c", + "etherscanUrl": "https://etherscan.io/address/0xd7c9ee89236605ef33995aa0e6cabcf099ea7d4c", + "xHandle": "khaelezekiel", + "xUrl": "https://twitter.com/khaelezekiel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_632723", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sorens", + "displayName": "Soren Raven", + "fid": 632723, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0df074d6-a2f3-4ead-da8d-69eba2894e00/rectcrop3", + "followers": 86, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fcf92dbb5f836c1fe4a0b4fdf86950f4eb0b739", + "etherscanUrl": "https://etherscan.io/address/0x5fcf92dbb5f836c1fe4a0b4fdf86950f4eb0b739", + "xHandle": "jacques327989", + "xUrl": "https://twitter.com/jacques327989", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_313957", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "messager", + "displayName": "Messager", + "fid": 313957, + "pfpUrl": "https://i.imgur.com/wgVn0oM.jpg", + "followers": 85, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89a710dcbfb3a6d9e986bf316648b8505e2c2dfe", + "etherscanUrl": "https://etherscan.io/address/0x89a710dcbfb3a6d9e986bf316648b8505e2c2dfe", + "xHandle": "shadowm09811421", + "xUrl": "https://twitter.com/shadowm09811421", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1088084", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "medob", + "displayName": "Crypto Brooo 🆓 🐐", + "fid": 1088084, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c2b816a-0700-48f4-2b16-d64c7fddfc00/original", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2497d0ef68d531c93fef5fd8f6fde826926dadc0", + "etherscanUrl": "https://etherscan.io/address/0x2497d0ef68d531c93fef5fd8f6fde826926dadc0", + "xHandle": "medobee23", + "xUrl": "https://twitter.com/medobee23", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_258883", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bharath", + "displayName": "Bharath", + "fid": 258883, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35424bae-d1d1-48d3-8e0e-4e660d0daa00/rectcrop3", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc661cff9e5c667cc8914356c7d33599bb98400b7", + "etherscanUrl": "https://etherscan.io/address/0xc661cff9e5c667cc8914356c7d33599bb98400b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_393325", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdsohel1233", + "displayName": "MD SOHEL MOLLA", + "fid": 393325, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9df0072e-5b90-4c4c-6165-a13d2d392600/rectcrop3", + "followers": 83, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe114490329f4f2baa7c10261a77372362841df6b", + "etherscanUrl": "https://etherscan.io/address/0xe114490329f4f2baa7c10261a77372362841df6b", + "xHandle": "mdsohel1244", + "xUrl": "https://twitter.com/mdsohel1244", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_801257", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kenny73", + "displayName": "Superkenn", + "fid": 801257, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45fc0a36-4cb0-4344-0635-62c84d2fd700/original", + "followers": 82, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a68381e116cebebb4a36c2a09e04aac0aff8b30", + "etherscanUrl": "https://etherscan.io/address/0x3a68381e116cebebb4a36c2a09e04aac0aff8b30", + "xHandle": "prettyliciouszs", + "xUrl": "https://twitter.com/prettyliciouszs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1120686", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vansh90s", + "displayName": "NineSeconds.eth 🧬", + "fid": 1120686, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07cd8de6-a3f5-4b84-30e7-a197e3e83000/original", + "followers": 81, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2eefd3d0f201a10b21c62cfd388363aebe58de93", + "etherscanUrl": "https://etherscan.io/address/0x2eefd3d0f201a10b21c62cfd388363aebe58de93", + "xHandle": "9s_eth", + "xUrl": "https://twitter.com/9s_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1123160", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "primejoseph001", + "displayName": "PRIME1", + "fid": 1123160, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c5bc832-97e4-4ba2-c7b7-d5b7523bc400/original", + "followers": 81, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x805ec4d667d1d99c179f1085fd8c098aec45ceda", + "etherscanUrl": "https://etherscan.io/address/0x805ec4d667d1d99c179f1085fd8c098aec45ceda", + "xHandle": "j_joepete", + "xUrl": "https://twitter.com/j_joepete", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082427", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nfafretty", + "displayName": "Ftytrades", + "fid": 1082427, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 80, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe953f23f21f781ca736e629f9efd86a4712ae924", + "etherscanUrl": "https://etherscan.io/address/0xe953f23f21f781ca736e629f9efd86a4712ae924", + "xHandle": "nfa_fretty", + "xUrl": "https://twitter.com/nfa_fretty", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1105011", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "scania", + "displayName": "scanïa", + "fid": 1105011, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762409853/817522c8-89fc-418d-b8fa-3d245a501708.jpg.jpg", + "followers": 80, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12c2ad47d9b19f1733c313d048de1a442856f729", + "etherscanUrl": "https://etherscan.io/address/0x12c2ad47d9b19f1733c313d048de1a442856f729", + "xHandle": "scania1369", + "xUrl": "https://twitter.com/scania1369", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1058870", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "superus", + "displayName": "Ruslan", + "fid": 1058870, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14c798ff-dc85-4d9a-56cf-7d79e10b5700/original", + "followers": 80, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff0065c6407fda63c92aed96b5d2765f2b0e161b", + "etherscanUrl": "https://etherscan.io/address/0xff0065c6407fda63c92aed96b5d2765f2b0e161b", + "xHandle": "content_ar30978", + "xUrl": "https://twitter.com/content_ar30978", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043976", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "defijay1", + "displayName": "Defi Jay🫶✨️", + "fid": 1043976, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761776984/IMG-20250722-WA0005.jpg.jpg", + "followers": 80, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebe78d7ece0a9b7e28dc44c489c6dc33b0252fd6", + "etherscanUrl": "https://etherscan.io/address/0xebe78d7ece0a9b7e28dc44c489c6dc33b0252fd6", + "xHandle": "jayacouture", + "xUrl": "https://twitter.com/jayacouture", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_330364", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "receps", + "displayName": "spyedge", + "fid": 330364, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23ea074b-3f20-4af0-d132-787d8ce8db00/original", + "followers": 79, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa553b8d12df6c1d3ae3e2121f1a62df27c5580df", + "etherscanUrl": "https://etherscan.io/address/0xa553b8d12df6c1d3ae3e2121f1a62df27c5580df", + "xHandle": "cryptoxds", + "xUrl": "https://twitter.com/cryptoxds", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_929643", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sapubersih", + "displayName": "sapubersih.base.eth", + "fid": 929643, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3e4074d-c3ca-4c30-2997-1e28cd440d00/original", + "followers": 79, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60f01fbf5b06cba4290f990e0dafec24b63b45d0", + "etherscanUrl": "https://etherscan.io/address/0x60f01fbf5b06cba4290f990e0dafec24b63b45d0", + "xHandle": "rahmafrida2", + "xUrl": "https://twitter.com/rahmafrida2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1401826", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "4brownbears", + "displayName": "4brownbears", + "fid": 1401826, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da7abbfc-b836-468b-0190-b89821314800/original", + "followers": 78, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb69cdea85f40c4c31f30f30103e1c3bbadd82e0", + "etherscanUrl": "https://etherscan.io/address/0xcb69cdea85f40c4c31f30f30103e1c3bbadd82e0", + "xHandle": "4_brownbears", + "xUrl": "https://twitter.com/4_brownbears", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_201834", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "weisochen.eth", + "displayName": "Weiso", + "fid": 201834, + "pfpUrl": "https://i.imgur.com/qnaC0WY.jpg", + "followers": 77, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa83e274367d45b48ac3b39c1fa4f3664574d23b", + "etherscanUrl": "https://etherscan.io/address/0xfa83e274367d45b48ac3b39c1fa4f3664574d23b", + "xHandle": "acrwc1", + "xUrl": "https://twitter.com/acrwc1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_578753", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vitaliy92", + "displayName": "Vitaliy", + "fid": 578753, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89d367dd-74fe-4aa3-4e9c-ea30a1717500/rectcrop3", + "followers": 76, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed6f66c4238afc7c35c4934710f7dd6d7d387b1d", + "etherscanUrl": "https://etherscan.io/address/0xed6f66c4238afc7c35c4934710f7dd6d7d387b1d", + "xHandle": "vtalj176029", + "xUrl": "https://twitter.com/vtalj176029", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1024718", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ayse3466", + "displayName": "Ayse", + "fid": 1024718, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0bf323ea-9688-4517-a639-f536cf6b1000/rectcrop3", + "followers": 76, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0361ce42c37dea0da71324f599f68269e39097c9", + "etherscanUrl": "https://etherscan.io/address/0x0361ce42c37dea0da71324f599f68269e39097c9", + "xHandle": "abaskal66", + "xUrl": "https://twitter.com/abaskal66", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_570483", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kishour92", + "displayName": ".base.eth", + "fid": 570483, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/12ff23b2-bc07-4ee4-28bb-ffce3f818e00/rectcrop3", + "followers": 75, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9264517687027498cfbeb5749853433310244d08", + "etherscanUrl": "https://etherscan.io/address/0x9264517687027498cfbeb5749853433310244d08", + "xHandle": "kishour92", + "xUrl": "https://twitter.com/kishour92", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_302714", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cuan110", + "displayName": "Cuan110", + "fid": 302714, + "pfpUrl": "https://i.imgur.com/6tFy2i6.jpg", + "followers": 75, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1574dcf018762b9f1b3cd39d5ae3bf2913347973", + "etherscanUrl": "https://etherscan.io/address/0x1574dcf018762b9f1b3cd39d5ae3bf2913347973", + "xHandle": "jeoungsot", + "xUrl": "https://twitter.com/jeoungsot", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106257", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bombiee", + "displayName": "Voxx", + "fid": 1106257, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d0f6ec5a-ca07-4e76-f610-c1499b0dd700/original", + "followers": 74, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76c81973dedfcc4b803f664d73af77ce79e739eb", + "etherscanUrl": "https://etherscan.io/address/0x76c81973dedfcc4b803f664d73af77ce79e739eb", + "xHandle": "baitclick984", + "xUrl": "https://twitter.com/baitclick984", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_252460", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "duts", + "displayName": "Law.base.eth", + "fid": 252460, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eb1275c-5ec0-4790-224e-b67a2b6b7a00/rectcrop3", + "followers": 74, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90f4fe74630e3a25a3e1d7e8585eff53773614c5", + "etherscanUrl": "https://etherscan.io/address/0x90f4fe74630e3a25a3e1d7e8585eff53773614c5", + "xHandle": "0xlawliettee", + "xUrl": "https://twitter.com/0xlawliettee", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14431", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "druid", + "displayName": "Druid", + "fid": 14431, + "pfpUrl": "https://i.imgur.com/Fe6d6fj.jpg", + "followers": 73, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcabf6af1f694c2a3b0aa6135c2aab0e6f3cfe480", + "etherscanUrl": "https://etherscan.io/address/0xcabf6af1f694c2a3b0aa6135c2aab0e6f3cfe480", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17742", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oji3", + "displayName": "oji3", + "fid": 17742, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6f8ac41-aceb-4abe-58a2-98e5fb17f600/original", + "followers": 73, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85e2e5048fd575ae42f250a7a64c136269ae0ad8", + "etherscanUrl": "https://etherscan.io/address/0x85e2e5048fd575ae42f250a7a64c136269ae0ad8", + "xHandle": "open3x", + "xUrl": "https://twitter.com/open3x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043908", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oxxelon", + "displayName": "ZOSE", + "fid": 1043908, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e16af16-e183-41a9-c769-cfab19c38500/original", + "followers": 73, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5c8e6c56e8ff0786b54f246069d52ebf2e6b32f", + "etherscanUrl": "https://etherscan.io/address/0xc5c8e6c56e8ff0786b54f246069d52ebf2e6b32f", + "xHandle": "galax254", + "xUrl": "https://twitter.com/galax254", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zkmattwyatt", + "displayName": "Matt", + "fid": 16036, + "pfpUrl": "https://i.imgur.com/CwBvxOc.jpg", + "followers": 72, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b9314a878a222375000ebbe06d475408b3e52fc", + "etherscanUrl": "https://etherscan.io/address/0x7b9314a878a222375000ebbe06d475408b3e52fc", + "xHandle": "zkmattwyatt", + "xUrl": "https://twitter.com/zkmattwyatt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_337706", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptopalangs", + "displayName": "cryptopalangs", + "fid": 337706, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/22baf2a7-ad8b-414c-3331-13f58fdaff00/original", + "followers": 72, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x093890d6db745d7504f511f6ce9d1912c681ce0c", + "etherscanUrl": "https://etherscan.io/address/0x093890d6db745d7504f511f6ce9d1912c681ce0c", + "xHandle": "palangscrypto", + "xUrl": "https://twitter.com/palangscrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_592312", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "habiscus", + "displayName": "Mariam Ajah", + "fid": 592312, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a806cee2-f20c-4809-4667-b0fcefbc2400/rectcrop3", + "followers": 72, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17f0989b19695cd36c2e637754a320c7644dbcc6", + "etherscanUrl": "https://etherscan.io/address/0x17f0989b19695cd36c2e637754a320c7644dbcc6", + "xHandle": "habiscus6", + "xUrl": "https://twitter.com/habiscus6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1041324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gwess", + "displayName": "gugu.base.eth", + "fid": 1041324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b831ddf-70c8-436b-558d-b28c971a6600/original", + "followers": 72, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4f18397473a708f3e9213d9e3a68e1a29238c66", + "etherscanUrl": "https://etherscan.io/address/0xd4f18397473a708f3e9213d9e3a68e1a29238c66", + "xHandle": "gwess", + "xUrl": "https://twitter.com/gwess", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1310782", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brandon8danny", + "displayName": "Brandon Danny", + "fid": 1310782, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0c5a54ad-556d-4ab1-e165-917516b27000/original", + "followers": 71, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4925e248ee38fdf29b8dd8a27dbf31100f62334b", + "etherscanUrl": "https://etherscan.io/address/0x4925e248ee38fdf29b8dd8a27dbf31100f62334b", + "xHandle": "brandon8danny", + "xUrl": "https://twitter.com/brandon8danny", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1121094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crocky", + "displayName": "Crocky", + "fid": 1121094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5dccabf9-a8d4-451d-050a-7985a4cb2900/rectcrop3", + "followers": 71, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9680f1448a0748089acc0df4c4874777476ac4c", + "etherscanUrl": "https://etherscan.io/address/0xa9680f1448a0748089acc0df4c4874777476ac4c", + "xHandle": "offical_crocky", + "xUrl": "https://twitter.com/offical_crocky", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1096779", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joeyvee", + "displayName": "Ali. Cid", + "fid": 1096779, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4dc864b5-483e-4230-3d37-08f4c2642900/original", + "followers": 69, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3670788ed9ac17f3b40cdd585def527eed1021a6", + "etherscanUrl": "https://etherscan.io/address/0x3670788ed9ac17f3b40cdd585def527eed1021a6", + "xHandle": "joevgamerwi", + "xUrl": "https://twitter.com/joevgamerwi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_865511", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "megathrust", + "displayName": "Megathrust", + "fid": 865511, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a05fb8c1-f63e-497c-b615-c7585ce84b00/original", + "followers": 69, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa158cfb6a35a5dde00b12254af9fa7f69c4b963", + "etherscanUrl": "https://etherscan.io/address/0xfa158cfb6a35a5dde00b12254af9fa7f69c4b963", + "xHandle": "aryshfahmi", + "xUrl": "https://twitter.com/aryshfahmi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1390353", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sergiocryp", + "displayName": "Sergio", + "fid": 1390353, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/176db847-df78-4233-120b-3af790865f00/original", + "followers": 67, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa13d7ab5b0b597accb646e0f6bb488bfad42a3c9", + "etherscanUrl": "https://etherscan.io/address/0xa13d7ab5b0b597accb646e0f6bb488bfad42a3c9", + "xHandle": "sergio_cryp", + "xUrl": "https://twitter.com/sergio_cryp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_735766", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abcryptozone", + "displayName": "MD JOYNAL ABEDIN", + "fid": 735766, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6405873-e3a7-4c3b-c8c0-2380c2114e00/rectcrop3", + "followers": 67, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x415609b9f669ef0938fa6c45cb8bf06ae61115e9", + "etherscanUrl": "https://etherscan.io/address/0x415609b9f669ef0938fa6c45cb8bf06ae61115e9", + "xHandle": "abcryptozone", + "xUrl": "https://twitter.com/abcryptozone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_871799", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nafanros", + "displayName": "Korea", + "fid": 871799, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0969a566-cd1c-46eb-d2a6-823eae746c00/rectcrop3", + "followers": 66, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4f6a9fc8fff635d6c22d6a526656fa0b065b809", + "etherscanUrl": "https://etherscan.io/address/0xe4f6a9fc8fff635d6c22d6a526656fa0b065b809", + "xHandle": "ukmmandiri", + "xUrl": "https://twitter.com/ukmmandiri", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9995", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fidenza", + "displayName": "Neo", + "fid": 9995, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d966cfba-ffb5-49de-5c01-0f961bb1c200/original", + "followers": 66, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87c74daa68c50f9b056d03c072016a7add41a96f", + "etherscanUrl": "https://etherscan.io/address/0x87c74daa68c50f9b056d03c072016a7add41a96f", + "xHandle": "drawingcontext", + "xUrl": "https://twitter.com/drawingcontext", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1023720", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abusayiiid", + "displayName": "Abu Sayed", + "fid": 1023720, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96586ba3-8202-4749-e85f-abf6f5288c00/rectcrop3", + "followers": 65, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x071d417a794236a8b8b2a2fee75fcd10c4192d34", + "etherscanUrl": "https://etherscan.io/address/0x071d417a794236a8b8b2a2fee75fcd10c4192d34", + "xHandle": "abusayiiid", + "xUrl": "https://twitter.com/abusayiiid", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_267821", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "s0crypto", + "displayName": "s0crypto.eth", + "fid": 267821, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47dbca6c-987f-420c-ef4b-d192e5d64800/original", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70cf07f16ec6420417eef30178628f72eec68d71", + "etherscanUrl": "https://etherscan.io/address/0x70cf07f16ec6420417eef30178628f72eec68d71", + "xHandle": "s0crypto", + "xUrl": "https://twitter.com/s0crypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1066170", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ouln00", + "displayName": "Lannabi Ou", + "fid": 1066170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06638f67-2363-4bc3-e852-20dc29fb7a00/rectcrop3", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc841f1cfa3a2253642fd543a734cbeabca88f28d", + "etherscanUrl": "https://etherscan.io/address/0xc841f1cfa3a2253642fd543a734cbeabca88f28d", + "xHandle": "stars_telegram", + "xUrl": "https://twitter.com/stars_telegram", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_883412", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andryrock", + "displayName": "Jhodry", + "fid": 883412, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a5fd234-acc8-4752-b99a-0e6ab7753300/rectcrop3", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf5e141893c3398d9707b4b76404428b4c5a64010", + "etherscanUrl": "https://etherscan.io/address/0xf5e141893c3398d9707b4b76404428b4c5a64010", + "xHandle": "andryyy131211", + "xUrl": "https://twitter.com/andryyy131211", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069262", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptodexx", + "displayName": "Rajib “(✸,✸)", + "fid": 1069262, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1e6760d-3079-4e4e-8c8c-bb1efae65000/original", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xadaa9920a7b9b897dfdb45a8a244754530c31a04", + "etherscanUrl": "https://etherscan.io/address/0xadaa9920a7b9b897dfdb45a8a244754530c31a04", + "xHandle": "133eth", + "xUrl": "https://twitter.com/133eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_631599", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "embers", + "displayName": "Ember Flame", + "fid": 631599, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8b3022d-187e-4ed1-2488-bdf41032cf00/rectcrop3", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9a9dac8f44b426b22b2855bac954c63cc69ead5", + "etherscanUrl": "https://etherscan.io/address/0xf9a9dac8f44b426b22b2855bac954c63cc69ead5", + "xHandle": "valeri193274", + "xUrl": "https://twitter.com/valeri193274", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1079083", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0x45", + "displayName": "0x.prosperity", + "fid": 1079083, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e6d335f0-6916-4274-3573-c08a74cd0100/original", + "followers": 63, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96d821b36768a4e8dbc1b66b721221fd91f7f936", + "etherscanUrl": "https://etherscan.io/address/0x96d821b36768a4e8dbc1b66b721221fd91f7f936", + "xHandle": "0x45__", + "xUrl": "https://twitter.com/0x45__", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_879975", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khyzzer", + "displayName": "Crypto Guapaldo base.eth", + "fid": 879975, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67306938-117c-48e2-817c-8808ccadd200/rectcrop3", + "followers": 63, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ee35e81571f575689b2e1a2076253905b3f1c30", + "etherscanUrl": "https://etherscan.io/address/0x7ee35e81571f575689b2e1a2076253905b3f1c30", + "xHandle": "schzeick", + "xUrl": "https://twitter.com/schzeick", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1228088", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chiwelife", + "displayName": "Chinwendu Michael", + "fid": 1228088, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acdfbb9c-8aee-417e-a046-5355a6252700/original", + "followers": 61, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a6b94045a260c73625696a1b25518a69d17723b", + "etherscanUrl": "https://etherscan.io/address/0x2a6b94045a260c73625696a1b25518a69d17723b", + "xHandle": "chiwelifem", + "xUrl": "https://twitter.com/chiwelifem", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1346247", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kaiwxn.base.eth", + "displayName": "Kai | kaiwxn.base.eth 🐈", + "fid": 1346247, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761433825/IMG_0472.jpg.jpg", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1409e238e5024f917aea3566e22dd28d4763f347", + "etherscanUrl": "https://etherscan.io/address/0x1409e238e5024f917aea3566e22dd28d4763f347", + "xHandle": "gokanrize", + "xUrl": "https://twitter.com/gokanrize", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1340791", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abdullahwriters", + "displayName": "Abdullah Writers 🧬", + "fid": 1340791, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d86ecfe-9959-4317-a571-95da07a71300/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76074e8a48bf7d819cbf8d26addb591e001f3e3a", + "etherscanUrl": "https://etherscan.io/address/0x76074e8a48bf7d819cbf8d26addb591e001f3e3a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109964", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tlenxg", + "displayName": "A. Gonzalez", + "fid": 1109964, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cefde64b-41a1-413a-d09a-df0da7588a00/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff6d13cec8f9b1a9d9cf3f18c51c7eb99baef30c", + "etherscanUrl": "https://etherscan.io/address/0xff6d13cec8f9b1a9d9cf3f18c51c7eb99baef30c", + "xHandle": "tlen_g_", + "xUrl": "https://twitter.com/tlen_g_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1057218", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "famunaz", + "displayName": "0xFamunaz", + "fid": 1057218, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ef7e4b1-6265-4928-ba01-0a5a1ac39b00/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe334cdd1ff8c18b6805833f126bef193b2427b0c", + "etherscanUrl": "https://etherscan.io/address/0xe334cdd1ff8c18b6805833f126bef193b2427b0c", + "xHandle": "famunaz", + "xUrl": "https://twitter.com/famunaz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_882446", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kianu", + "displayName": "Azaticus", + "fid": 882446, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a4e5975-66e0-402b-e27f-e124f9d15900/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1724e84c97fbabb5ea68b7bddce02643c4c2ff5", + "etherscanUrl": "https://etherscan.io/address/0xb1724e84c97fbabb5ea68b7bddce02643c4c2ff5", + "xHandle": "azaticus", + "xUrl": "https://twitter.com/azaticus", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1427360", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lazycap", + "displayName": "lazycap", + "fid": 1427360, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 59, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d56c73fab6953f91a6af71dfd5f28d7dc903715", + "etherscanUrl": "https://etherscan.io/address/0x4d56c73fab6953f91a6af71dfd5f28d7dc903715", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_366595", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deficoncierge", + "displayName": "R Smith", + "fid": 366595, + "pfpUrl": "https://i.imgur.com/pIbmMyx.jpg", + "followers": 59, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c8e7e6719781946a78d2588c49890301c5a5718", + "etherscanUrl": "https://etherscan.io/address/0x5c8e7e6719781946a78d2588c49890301c5a5718", + "xHandle": "ooa09", + "xUrl": "https://twitter.com/ooa09", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_375869", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "justlikeag6", + "displayName": "justlikeag6", + "fid": 375869, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a9e53c36-34b1-40b5-589c-7b1c07ae2a00/original", + "followers": 59, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd77d75e50312b3d99e5a046de4173df861bedbd8", + "etherscanUrl": "https://etherscan.io/address/0xd77d75e50312b3d99e5a046de4173df861bedbd8", + "xHandle": "after_ape", + "xUrl": "https://twitter.com/after_ape", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_866092", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "twifyyt", + "displayName": "azizahhh", + "fid": 866092, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/729c9abb-71e2-4cce-29f3-1a473b81a200/rectcrop3", + "followers": 58, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fdb4d59ffae405a65a167778703ab2305add72b", + "etherscanUrl": "https://etherscan.io/address/0x9fdb4d59ffae405a65a167778703ab2305add72b", + "xHandle": "jessicamoo39701", + "xUrl": "https://twitter.com/jessicamoo39701", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_215299", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "matthu.eth", + "displayName": "matt pereira", + "fid": 215299, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c8c9c3b4-33e4-427e-da47-a32bd9369000/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed8d585fb288c96fe553c2c1ee93f63aa4e9b4da", + "etherscanUrl": "https://etherscan.io/address/0xed8d585fb288c96fe553c2c1ee93f63aa4e9b4da", + "xHandle": "crypt0xmatt", + "xUrl": "https://twitter.com/crypt0xmatt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145032", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmadmukafi", + "displayName": "Ahmadmukafi", + "fid": 1145032, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ad6ba84-15c5-45e4-1e67-075c53c99800/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6b8ec820a54cb909150ca270156096767ded5a7", + "etherscanUrl": "https://etherscan.io/address/0xa6b8ec820a54cb909150ca270156096767ded5a7", + "xHandle": "yzzzz54", + "xUrl": "https://twitter.com/yzzzz54", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069241", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rendidenska", + "displayName": "Rendi Denska", + "fid": 1069241, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dce4d68d-cc03-43e7-825f-4f4f972c0900/original", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c0b88e3dd0c53b54332b9aa78087926580fba14", + "etherscanUrl": "https://etherscan.io/address/0x4c0b88e3dd0c53b54332b9aa78087926580fba14", + "xHandle": "chingu_ngunyah", + "xUrl": "https://twitter.com/chingu_ngunyah", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082046", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fedorchenko98063", + "displayName": "Vitalii Fedorchenko", + "fid": 1082046, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47489923-f2b0-4cd7-a8db-1a619769fb00/rectcrop3", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6ae72aeecd3e326ab5bcfe02dce0ff3a95d2e73", + "etherscanUrl": "https://etherscan.io/address/0xc6ae72aeecd3e326ab5bcfe02dce0ff3a95d2e73", + "xHandle": "fedorcenko98063", + "xUrl": "https://twitter.com/fedorcenko98063", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_635761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elysias", + "displayName": "Elysia Songbird", + "fid": 635761, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80aae318-c865-4d6f-b2bf-260a00888200/rectcrop3", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaabce21bf5ca4b5489d9433d24ad14200db0fa11", + "etherscanUrl": "https://etherscan.io/address/0xaabce21bf5ca4b5489d9433d24ad14200db0fa11", + "xHandle": "raquel819846132", + "xUrl": "https://twitter.com/raquel819846132", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_861122", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oussbaat", + "displayName": "Mou455", + "fid": 861122, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e697831a-a27e-45bb-1fae-c9e4fcf7bf00/rectcrop3", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x662337218b8345b529e404705b3bc77dd006072e", + "etherscanUrl": "https://etherscan.io/address/0x662337218b8345b529e404705b3bc77dd006072e", + "xHandle": "baguimouaad", + "xUrl": "https://twitter.com/baguimouaad", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1218219", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rebelyouth", + "displayName": "ball", + "fid": 1218219, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85bbc219-abaf-4ad8-56ff-6bd6b07eb700/original", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0df91fdd816d15431d863b469de5b67698c8c4a8", + "etherscanUrl": "https://etherscan.io/address/0x0df91fdd816d15431d863b469de5b67698c8c4a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_257195", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nung09", + "displayName": "Bear🍯🎩", + "fid": 257195, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1ae35b3-8f7a-44a5-7ced-9a77f00efa00/rectcrop3", + "followers": 53, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46dd7a8cd247e1813094df0af9841a479ed8dfc4", + "etherscanUrl": "https://etherscan.io/address/0x46dd7a8cd247e1813094df0af9841a479ed8dfc4", + "xHandle": "nurhasan2000", + "xUrl": "https://twitter.com/nurhasan2000", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_695482", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "5n", + "displayName": "5N", + "fid": 695482, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95450233-7e03-4211-78d6-18db9670f400/rectcrop3", + "followers": 53, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4fc88b308723e5ff08003d696aed714768b359fa", + "etherscanUrl": "https://etherscan.io/address/0x4fc88b308723e5ff08003d696aed714768b359fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1381785", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marlowe4", + "displayName": "Marlowe", + "fid": 1381785, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04b4a45b-bd05-4695-e3a8-61e671b6e400/original", + "followers": 51, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc634ac7b2c1261e90633a7f57cdfc6ae5933c4ad", + "etherscanUrl": "https://etherscan.io/address/0xc634ac7b2c1261e90633a7f57cdfc6ae5933c4ad", + "xHandle": "marlowe444", + "xUrl": "https://twitter.com/marlowe444", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1376903", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "panndine", + "displayName": "panndine", + "fid": 1376903, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd50b1cf-cfc3-444b-bffb-85b413d58000/original", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2b56fd8f758156a512f6ab7e2c9d04e739d1062", + "etherscanUrl": "https://etherscan.io/address/0xe2b56fd8f758156a512f6ab7e2c9d04e739d1062", + "xHandle": "cryptopudd", + "xUrl": "https://twitter.com/cryptopudd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1278620", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pemankord19", + "displayName": "PL", + "fid": 1278620, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9538137-b9f6-47d1-ff31-45ba092ef000/original", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36a495148467ea239484e475a94759dc82c8b147", + "etherscanUrl": "https://etherscan.io/address/0x36a495148467ea239484e475a94759dc82c8b147", + "xHandle": "lorstanipeman", + "xUrl": "https://twitter.com/lorstanipeman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_384360", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oksha", + "displayName": "Oksha🔵", + "fid": 384360, + "pfpUrl": "https://i.imgur.com/qJs0acQ.jpg", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6bbc62ba227285d06b4c24835c2c61f6bbf73c18", + "etherscanUrl": "https://etherscan.io/address/0x6bbc62ba227285d06b4c24835c2c61f6bbf73c18", + "xHandle": "okshabae", + "xUrl": "https://twitter.com/okshabae", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1048398", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ojgg", + "displayName": "ojgg.eth", + "fid": 1048398, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d557f948-4b73-4bc4-5b24-261075263e00/rectcrop3", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1b0f3a175167792da8eb6275d4711df7cbb68e9e", + "etherscanUrl": "https://etherscan.io/address/0x1b0f3a175167792da8eb6275d4711df7cbb68e9e", + "xHandle": "ajiarrofie", + "xUrl": "https://twitter.com/ajiarrofie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1058497", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "draven95x", + "displayName": "DRaVeN", + "fid": 1058497, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb32f3d9-6cde-43de-3485-8df52adf0700/rectcrop3", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f581ed2965d15523f4ba0ba526161c2b9c10b47", + "etherscanUrl": "https://etherscan.io/address/0x7f581ed2965d15523f4ba0ba526161c2b9c10b47", + "xHandle": "draven95x", + "xUrl": "https://twitter.com/draven95x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1116007", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aproxbt", + "displayName": "Aproxbt", + "fid": 1116007, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/444b2d24-eb7c-4c92-b3ac-556649859000/original", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e32c168480f7e5500fe368406bf358bf14d62a6", + "etherscanUrl": "https://etherscan.io/address/0x1e32c168480f7e5500fe368406bf358bf14d62a6", + "xHandle": "aproxbt", + "xUrl": "https://twitter.com/aproxbt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097465", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meimeikyuttt", + "displayName": "M", + "fid": 1097465, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cebf9c4e-4e9b-4de1-24e0-6f1d86904700/original", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95552f93f618295bfe6cfd7b8ea6cfb40ab10a2d", + "etherscanUrl": "https://etherscan.io/address/0x95552f93f618295bfe6cfd7b8ea6cfb40ab10a2d", + "xHandle": "sixaap", + "xUrl": "https://twitter.com/sixaap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1281350", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juvnbaseeth", + "displayName": "Juvn.base.eth", + "fid": 1281350, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dabebc0e-147b-4a0b-9b68-50bf68700000/original", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56a6327b2cf1f968d760430b702aa76d64ba6f9c", + "etherscanUrl": "https://etherscan.io/address/0x56a6327b2cf1f968d760430b702aa76d64ba6f9c", + "xHandle": "juvnbaseeth", + "xUrl": "https://twitter.com/juvnbaseeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_471337", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "parvezkhandakar", + "displayName": "Parvezkhandakar", + "fid": 471337, + "pfpUrl": "https://virus.folia.app/img/base/641799429", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x13171ca39402682538523f2862dfa8882563b5af", + "etherscanUrl": "https://etherscan.io/address/0x13171ca39402682538523f2862dfa8882563b5af", + "xHandle": "khonkat", + "xUrl": "https://twitter.com/khonkat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1077049", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wingjelly", + "displayName": "MrShobuj", + "fid": 1077049, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7d6e6de1-b76d-4ee3-8423-e3f60c692500/rectcrop3", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b057730e77e07191acfd4e0eab8e1f5bd475503", + "etherscanUrl": "https://etherscan.io/address/0x6b057730e77e07191acfd4e0eab8e1f5bd475503", + "xHandle": "mrbeast917", + "xUrl": "https://twitter.com/mrbeast917", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1020832", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dallmayr", + "displayName": "Timur", + "fid": 1020832, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94cead6b-d1de-42ac-b9bc-13e5b312e400/rectcrop3", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbac660d1c7208739c9b5876a8df885f853b84d5c", + "etherscanUrl": "https://etherscan.io/address/0xbac660d1c7208739c9b5876a8df885f853b84d5c", + "xHandle": "lisenkovtimur", + "xUrl": "https://twitter.com/lisenkovtimur", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1159333", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jefrysol", + "displayName": "Jefry.base.eth", + "fid": 1159333, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77128635-a0a4-4318-e285-3187d619df00/original", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x560c2445d147d524294ae827a78745d8d3681133", + "etherscanUrl": "https://etherscan.io/address/0x560c2445d147d524294ae827a78745d8d3681133", + "xHandle": "thesolguy7", + "xUrl": "https://twitter.com/thesolguy7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_204471", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aksubiq", + "displayName": "aqsel", + "fid": 204471, + "pfpUrl": "https://i.imgur.com/FF5Powg.jpg", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ed98b49c83e18ff0de08b2382612555205f4679", + "etherscanUrl": "https://etherscan.io/address/0x4ed98b49c83e18ff0de08b2382612555205f4679", + "xHandle": "ubiqq00", + "xUrl": "https://twitter.com/ubiqq00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1061101", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cznaing", + "displayName": "CZ🔶Naing (Ø,G) nexyai.io", + "fid": 1061101, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb281169-f87f-4b24-7ecf-ad407f102600/original", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x98f604b01b01d9d7beacc3271d17205ce70077a7", + "etherscanUrl": "https://etherscan.io/address/0x98f604b01b01d9d7beacc3271d17205ce70077a7", + "xHandle": "cz_naing", + "xUrl": "https://twitter.com/cz_naing", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065937", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hengky420", + "displayName": "Almah 🧬", + "fid": 1065937, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b2942861-0278-4681-852c-7a0a68c10000/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1008668f0dca010f60f59ec6518d70a2ccc7b70c", + "etherscanUrl": "https://etherscan.io/address/0x1008668f0dca010f60f59ec6518d70a2ccc7b70c", + "xHandle": "almahmudi420", + "xUrl": "https://twitter.com/almahmudi420", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060853", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0x74drian", + "displayName": "AW", + "fid": 1060853, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5e7086c-6022-4629-8f15-fcbacf7b1600/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14627d79e6beeab27f8aea820e2c8d1243b3b321", + "etherscanUrl": "https://etherscan.io/address/0x14627d79e6beeab27f8aea820e2c8d1243b3b321", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065388", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bayuazhari", + "displayName": "Azr_Crypto Finder (Ø,G)", + "fid": 1065388, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f57167f-c6f7-460f-0de9-6329c649b600/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbd0ce377e706c8adc324fdbf62d8c4d5c94db06", + "etherscanUrl": "https://etherscan.io/address/0xfbd0ce377e706c8adc324fdbf62d8c4d5c94db06", + "xHandle": "azrcryptofinder", + "xUrl": "https://twitter.com/azrcryptofinder", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108556", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fogtrickster", + "displayName": "fogtrickster", + "fid": 1108556, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6e91dae-f7b7-49f1-4c52-41eea8fd1f00/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1af9508e72b4fa8e5cef38e569ba0754793c6461", + "etherscanUrl": "https://etherscan.io/address/0x1af9508e72b4fa8e5cef38e569ba0754793c6461", + "xHandle": "fogtrickster", + "xUrl": "https://twitter.com/fogtrickster", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_440608", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bjpraiz", + "displayName": "Praise", + "fid": 440608, + "pfpUrl": "https://i.imgur.com/efkFyk0.jpg", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48445a6e9e57e9521aa6aaaa833551538454dc91", + "etherscanUrl": "https://etherscan.io/address/0x48445a6e9e57e9521aa6aaaa833551538454dc91", + "xHandle": "praiseabolaji", + "xUrl": "https://twitter.com/praiseabolaji", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_863448", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hustlebank", + "displayName": "Hustle Bank", + "fid": 863448, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e8ae20b-d0db-41cb-b520-9af880880300/original", + "followers": 46, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cdf7c0f8ed4d7fe235822e9f05a228993190c5c", + "etherscanUrl": "https://etherscan.io/address/0x2cdf7c0f8ed4d7fe235822e9f05a228993190c5c", + "xHandle": "atriskcapital", + "xUrl": "https://twitter.com/atriskcapital", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1432065", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hyunnie", + "displayName": "hyunnie", + "fid": 1432065, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05dd18f9-8bbc-45e1-8ca0-4e2259501a00/original", + "followers": 45, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba964797d21a187b403565eaf9656fb67d9b922a", + "etherscanUrl": "https://etherscan.io/address/0xba964797d21a187b403565eaf9656fb67d9b922a", + "xHandle": "lynnxch157", + "xUrl": "https://twitter.com/lynnxch157", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1027755", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "faezeh1372", + "displayName": "Pinocchio", + "fid": 1027755, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0c3def7d-d7a0-46ef-12be-82697ceda900/rectcrop3", + "followers": 45, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d87fa3245fe127d3b787b1c9958790408afc2e3", + "etherscanUrl": "https://etherscan.io/address/0x9d87fa3245fe127d3b787b1c9958790408afc2e3", + "xHandle": "kiaeifafa", + "xUrl": "https://twitter.com/kiaeifafa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1030233", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mmdmax", + "displayName": "Mohammad Sadegh Esmaeili Nia", + "fid": 1030233, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ac59f4b-2695-4b6d-e0ab-816b2d33a600/rectcrop3", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd46ec4458659e89b8dbfad5cdfd61608ed34c2ad", + "etherscanUrl": "https://etherscan.io/address/0xd46ec4458659e89b8dbfad5cdfd61608ed34c2ad", + "xHandle": "mamacoin2025", + "xUrl": "https://twitter.com/mamacoin2025", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1083744", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joynal2789", + "displayName": "JOYNAL ABEDIN", + "fid": 1083744, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2dc49c6e-c444-4324-f1e8-3f5580adfb00/original", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d189caf7714418052ac8178d42be304256f1ddb", + "etherscanUrl": "https://etherscan.io/address/0x4d189caf7714418052ac8178d42be304256f1ddb", + "xHandle": "joynal2789", + "xUrl": "https://twitter.com/joynal2789", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1006290", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trevbagholder", + "displayName": "Trev", + "fid": 1006290, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94997742-7ff9-4d95-6cef-c2ff6a935d00/rectcrop3", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc12c4dde7cf30d52e9e88bb352ac3a139acce31c", + "etherscanUrl": "https://etherscan.io/address/0xc12c4dde7cf30d52e9e88bb352ac3a139acce31c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089995", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mkubikoff", + "displayName": "Matthieu Kubikoff", + "fid": 1089995, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0a179dd-82e4-4847-ed01-a401452c1000/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3a9f844dcf349930564622a24e110f149159768", + "etherscanUrl": "https://etherscan.io/address/0xe3a9f844dcf349930564622a24e110f149159768", + "xHandle": "mkubikoff", + "xUrl": "https://twitter.com/mkubikoff", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alphanotus", + "displayName": "Vitamin", + "fid": 1109707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8ae40bf-bf66-496b-acc9-e9518910fa00/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61337ff4af38dcb930cd48487697a10420f29364", + "etherscanUrl": "https://etherscan.io/address/0x61337ff4af38dcb930cd48487697a10420f29364", + "xHandle": "0tmd_", + "xUrl": "https://twitter.com/0tmd_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1323798", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xshiba", + "displayName": "🦊", + "fid": 1323798, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/303b9801-e580-46b4-f948-342489d5b400/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce6c49beafe6edc0c227519dc824c4b9dbbfd2f6", + "etherscanUrl": "https://etherscan.io/address/0xce6c49beafe6edc0c227519dc824c4b9dbbfd2f6", + "xHandle": "0xwoodchuck", + "xUrl": "https://twitter.com/0xwoodchuck", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109409", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vitvic", + "displayName": "Drummer", + "fid": 1109409, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7fa8147a-8d4d-4c7b-6b62-4b317ce02c00/rectcrop3", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeec3b2ade40188b480df71633738ed69cf82c1a8", + "etherscanUrl": "https://etherscan.io/address/0xeec3b2ade40188b480df71633738ed69cf82c1a8", + "xHandle": "richmvs", + "xUrl": "https://twitter.com/richmvs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_898343", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "indoteam", + "displayName": "Lilis Nuramini", + "fid": 898343, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3637c265-41c4-4641-a5eb-b4e47ca7c000/rectcrop3", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xea6a0876da7351c7da14b8c0c7d74caaae554328", + "etherscanUrl": "https://etherscan.io/address/0xea6a0876da7351c7da14b8c0c7d74caaae554328", + "xHandle": "lilis_nuramini", + "xUrl": "https://twitter.com/lilis_nuramini", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045175", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "redsmile.eth", + "displayName": "redsmile", + "fid": 1045175, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b435160a-1894-4b6e-7de9-c24775d50b00/rectcrop3", + "followers": 39, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3030685952b31b14dc1ce25e3e76fc6c7446a2b0", + "etherscanUrl": "https://etherscan.io/address/0x3030685952b31b14dc1ce25e3e76fc6c7446a2b0", + "xHandle": "tdavlyatchin", + "xUrl": "https://twitter.com/tdavlyatchin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045851", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "m-o-salami", + "displayName": "M.O Salami", + "fid": 1045851, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/174c08d0-b124-4916-c1ac-75091b5a7100/rectcrop3", + "followers": 38, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf8d044f51c04cf4ee280425b69227c440bc0983", + "etherscanUrl": "https://etherscan.io/address/0xcf8d044f51c04cf4ee280425b69227c440bc0983", + "xHandle": "oyinn_kann_sola", + "xUrl": "https://twitter.com/oyinn_kann_sola", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_723808", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tokyovibes", + "displayName": "sophieraiin", + "fid": 723808, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74f5f3d4-432b-406c-abfa-fbd718fc2400/rectcrop3", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c62f6557f5a1249fee2a72d7c29e875e70e8202", + "etherscanUrl": "https://etherscan.io/address/0x1c62f6557f5a1249fee2a72d7c29e875e70e8202", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_329481", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrxpoint", + "displayName": "0xmrxp", + "fid": 329481, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e0c6a28c-bf49-4c60-0d63-07e669d9aa00/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd97318d9a6f83881457a0e9aabfaf9c3bb125376", + "etherscanUrl": "https://etherscan.io/address/0xd97318d9a6f83881457a0e9aabfaf9c3bb125376", + "xHandle": "0xmrxp", + "xUrl": "https://twitter.com/0xmrxp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108555", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cipherwhale", + "displayName": "cipherwhale", + "fid": 1108555, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14104706-697c-4698-e072-93e973bde100/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f19955724eb747030fd5e5e17c95ea8655fe3a5", + "etherscanUrl": "https://etherscan.io/address/0x1f19955724eb747030fd5e5e17c95ea8655fe3a5", + "xHandle": "cipherwhalep", + "xUrl": "https://twitter.com/cipherwhalep", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_415021", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "heyyovz", + "displayName": "heyyovz🔵", + "fid": 415021, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/631e385f-5239-40f0-a392-0503e35ccf00/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ae98cfc9e83550b112c27d701c436011a8b75bb", + "etherscanUrl": "https://etherscan.io/address/0x3ae98cfc9e83550b112c27d701c436011a8b75bb", + "xHandle": "heyyovz", + "xUrl": "https://twitter.com/heyyovz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1409024", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zeikonft", + "displayName": "zeikonft.base.eth", + "fid": 1409024, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bac89549-9379-4be0-0928-302cf7e16200/original", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe42d34c3662f4b12161cc0fe7ac036e31ab08a22", + "etherscanUrl": "https://etherscan.io/address/0xe42d34c3662f4b12161cc0fe7ac036e31ab08a22", + "xHandle": "zeiko_nft", + "xUrl": "https://twitter.com/zeiko_nft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_297202", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babycorn0907", + "displayName": "Naveen 👾", + "fid": 297202, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02b2338cfc2d1a8d615040eaffed146617a6893e", + "etherscanUrl": "https://etherscan.io/address/0x02b2338cfc2d1a8d615040eaffed146617a6893e", + "xHandle": "babycon95", + "xUrl": "https://twitter.com/babycon95", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1201858", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tradeos", + "displayName": "Trading Operating System", + "fid": 1201858, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e5378c1-992d-4c02-2e0a-c95f53883600/rectcrop3", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b80f783ff016afff40891d45bc8832f0c12d2f5", + "etherscanUrl": "https://etherscan.io/address/0x5b80f783ff016afff40891d45bc8832f0c12d2f5", + "xHandle": "yl8805178047861", + "xUrl": "https://twitter.com/yl8805178047861", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_460344", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fuhao", + "displayName": "Fuhao", + "fid": 460344, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ab38642-07e7-4f0f-23f0-d4695ab91400/original", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a6db355c59325783f1dd8c5bf047b88863d0489", + "etherscanUrl": "https://etherscan.io/address/0x4a6db355c59325783f1dd8c5bf047b88863d0489", + "xHandle": "fffuhaoo", + "xUrl": "https://twitter.com/fffuhaoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_317904", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gdegen.eth", + "displayName": "gustav ", + "fid": 317904, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27a25c48-9474-466d-dfda-318563087b00/original", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22bdac1c8dd5396362cc1101b04d7559025b631e", + "etherscanUrl": "https://etherscan.io/address/0x22bdac1c8dd5396362cc1101b04d7559025b631e", + "xHandle": "liblik", + "xUrl": "https://twitter.com/liblik", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1395983", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mindracer", + "displayName": "mindracer", + "fid": 1395983, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762240977/IMG_0377.jpg.jpg", + "followers": 35, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad1a8e33ee6a833091179fa87bb1fddf1fee1a9f", + "etherscanUrl": "https://etherscan.io/address/0xad1a8e33ee6a833091179fa87bb1fddf1fee1a9f", + "xHandle": "muzzledmind101", + "xUrl": "https://twitter.com/muzzledmind101", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_423876", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "calskard", + "displayName": "CalskaRd", + "fid": 423876, + "pfpUrl": "https://i.imgur.com/mP2uotg.jpg", + "followers": 35, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x285ead776abf917b10362131752f45ddc94784e7", + "etherscanUrl": "https://etherscan.io/address/0x285ead776abf917b10362131752f45ddc94784e7", + "xHandle": "emre10530357", + "xUrl": "https://twitter.com/emre10530357", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210448", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nguyennsh", + "displayName": "Nguyennsh", + "fid": 210448, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e67ead77-623f-40e0-64e1-10d24f9bba00/original", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6e5eb68a230b7d38cb9a601255da4718b1dd7f0", + "etherscanUrl": "https://etherscan.io/address/0xa6e5eb68a230b7d38cb9a601255da4718b1dd7f0", + "xHandle": "hongngu43790371", + "xUrl": "https://twitter.com/hongngu43790371", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_298453", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "morocco", + "displayName": "Cat", + "fid": 298453, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63fb35f9-7943-49f3-0691-0dfe8c42ba00/rectcrop3", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb48b43a933fd6d82cb759593151c9c56eabdcf50", + "etherscanUrl": "https://etherscan.io/address/0xb48b43a933fd6d82cb759593151c9c56eabdcf50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_452977", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xxgxrxbxx", + "displayName": "Jack Russell", + "fid": 452977, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9087000-2743-4d6d-1b7b-bb62a4f31f00/original", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f3606b56cd2c61eccdc6e3f669f2872c32ba391", + "etherscanUrl": "https://etherscan.io/address/0x5f3606b56cd2c61eccdc6e3f669f2872c32ba391", + "xHandle": "jackrussell369", + "xUrl": "https://twitter.com/jackrussell369", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065377", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xcuan", + "displayName": "ngar", + "fid": 1065377, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1e8824c-6e73-4784-7b1a-8bcaf7ecef00/original", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x234088b2096b853cc1cf8e5855d612a1565f7c92", + "etherscanUrl": "https://etherscan.io/address/0x234088b2096b853cc1cf8e5855d612a1565f7c92", + "xHandle": "nggar1609", + "xUrl": "https://twitter.com/nggar1609", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1081286", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "atbanklan", + "displayName": "atbanklan.base.eth", + "fid": 1081286, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab1d88e8-34ee-436c-1a35-075da7a00f00/rectcrop3", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb510185ec90020d1acb03e1d2729baaa82b02c57", + "etherscanUrl": "https://etherscan.io/address/0xb510185ec90020d1acb03e1d2729baaa82b02c57", + "xHandle": "receparslan59", + "xUrl": "https://twitter.com/receparslan59", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1064401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "siregarp", + "displayName": "siregarp", + "fid": 1064401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d298b0ca-60b2-4ffe-8acc-ac336737b900/original", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d559b31ef0c13b168c6c69f82d465ac442c9e41", + "etherscanUrl": "https://etherscan.io/address/0x8d559b31ef0c13b168c6c69f82d465ac442c9e41", + "xHandle": "wdaw79737", + "xUrl": "https://twitter.com/wdaw79737", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1396394", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raiwoo", + "displayName": "raiwoo", + "fid": 1396394, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffd86832-d40b-414e-8428-aa48f21dc300/original", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9593dedf93158900f5c9880fafc4046f4f3cda47", + "etherscanUrl": "https://etherscan.io/address/0x9593dedf93158900f5c9880fafc4046f4f3cda47", + "xHandle": "rywcommunity", + "xUrl": "https://twitter.com/rywcommunity", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1163132", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juggboyballin", + "displayName": "The Wzrd", + "fid": 1163132, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53bbf9aa-e758-4cf5-9ce3-b581933a5300/original", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe221dc4c4ec741474e9c099088eb349db1b88ae", + "etherscanUrl": "https://etherscan.io/address/0xfe221dc4c4ec741474e9c099088eb349db1b88ae", + "xHandle": "juggboyballin", + "xUrl": "https://twitter.com/juggboyballin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_489494", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "virtualbacon", + "displayName": "VirtualBacon", + "fid": 489494, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9995f452-1d3d-410d-0bcd-7584a576e000/original", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9e1aa3c7a9e8aff6855cd85f99c80938581c030", + "etherscanUrl": "https://etherscan.io/address/0xf9e1aa3c7a9e8aff6855cd85f99c80938581c030", + "xHandle": "virtualbacon0x", + "xUrl": "https://twitter.com/virtualbacon0x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1094078", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xgemmahl", + "displayName": "Gemmahl", + "fid": 1094078, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51a1588c-9c3b-44fa-65ed-dcbfe0fea800/original", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf291b59dbc877801cf720baf5c4afda8347d9303", + "etherscanUrl": "https://etherscan.io/address/0xf291b59dbc877801cf720baf5c4afda8347d9303", + "xHandle": "gemmahl_li", + "xUrl": "https://twitter.com/gemmahl_li", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1404992", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xcv456", + "displayName": "xcv456", + "fid": 1404992, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c476bd5-6177-4cd2-db6b-431d568e1500/original", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa447e2aebd36cb45e295b0063caf55e365234375", + "etherscanUrl": "https://etherscan.io/address/0xa447e2aebd36cb45e295b0063caf55e365234375", + "xHandle": "qyh559t", + "xUrl": "https://twitter.com/qyh559t", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_902788", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qvuvp", + "displayName": "blue", + "fid": 902788, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d638549e-89ef-455f-b4ec-32fc4bed0c00/rectcrop3", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3da564c22fd85ce7cff29f1392088f6a8c65c19", + "etherscanUrl": "https://etherscan.io/address/0xf3da564c22fd85ce7cff29f1392088f6a8c65c19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1456523", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "baseland", + "displayName": "baseland", + "fid": 1456523, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/462f1b94-4399-4230-987f-a588ca6f1d00/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11bc30d8cbc54db2a8b8f24033c818102b9f5bd2", + "etherscanUrl": "https://etherscan.io/address/0x11bc30d8cbc54db2a8b8f24033c818102b9f5bd2", + "xHandle": "baselandhq", + "xUrl": "https://twitter.com/baselandhq", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117277", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "acolytai", + "displayName": "Acolyt", + "fid": 1117277, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36bceb84-01ca-4b2c-1007-813f34608900/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32f24d9de0fbdbbc3b23d55ed70b921a44c7a92d", + "etherscanUrl": "https://etherscan.io/address/0x32f24d9de0fbdbbc3b23d55ed70b921a44c7a92d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1102750", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "djyackz", + "displayName": "🧪ÐOGE ÐJ 👾", + "fid": 1102750, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d38a6491-a3c9-47ef-5976-cf1f996a9f00/rectcrop3", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x070f8e48af9c0a1cd21a910bd98e8946b3ec2a48", + "etherscanUrl": "https://etherscan.io/address/0x070f8e48af9c0a1cd21a910bd98e8946b3ec2a48", + "xHandle": "djyackz", + "xUrl": "https://twitter.com/djyackz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_469529", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ant33k", + "displayName": "ant33k.base.eth", + "fid": 469529, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bd66603-c355-4d6c-e7c0-4fc710869c00/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x380cd6c49002b8b5c3da51296d1b48393c1e2f2f", + "etherscanUrl": "https://etherscan.io/address/0x380cd6c49002b8b5c3da51296d1b48393c1e2f2f", + "xHandle": "kof3ina", + "xUrl": "https://twitter.com/kof3ina", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130996", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dennyagustiana", + "displayName": "Denny Agustiana", + "fid": 1130996, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/df5e5e93-833e-4189-45b5-0d889216e600/original", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5548e0c12cde6a1d969e23e0bf13ccc4b51fe023", + "etherscanUrl": "https://etherscan.io/address/0x5548e0c12cde6a1d969e23e0bf13ccc4b51fe023", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1088929", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jdish", + "displayName": "jdish test", + "fid": 1088929, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8812268b5d81d9bfeeb9dd17978052489de21d6f", + "etherscanUrl": "https://etherscan.io/address/0x8812268b5d81d9bfeeb9dd17978052489de21d6f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_385986", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "davidoomodee", + "displayName": "Davidoo🐹", + "fid": 385986, + "pfpUrl": "https://i.imgur.com/bOLiBLn.jpg", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf4c556312186d822a72d4308e0b186e6be6e452", + "etherscanUrl": "https://etherscan.io/address/0xdf4c556312186d822a72d4308e0b186e6be6e452", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1023785", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "asep75", + "displayName": "Asep Pujianto", + "fid": 1023785, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f31d40f-d8f3-41d6-7792-ce13c4ee4f00/rectcrop3", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8611de634088121c8b5dd0ce8c5a89d633ecd68", + "etherscanUrl": "https://etherscan.io/address/0xe8611de634088121c8b5dd0ce8c5a89d633ecd68", + "xHandle": "kiano798", + "xUrl": "https://twitter.com/kiano798", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1368238", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theonlyvalen.eth", + "displayName": "theonlyvalen", + "fid": 1368238, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f974791-3b63-4a3a-cf52-cbe483e60e00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3382a499ed43763a40676604f4d6a76005ae8580", + "etherscanUrl": "https://etherscan.io/address/0x3382a499ed43763a40676604f4d6a76005ae8580", + "xHandle": "theonlyvalen", + "xUrl": "https://twitter.com/theonlyvalen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1456811", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fayc", + "displayName": "Farcaster Ape Yacht Club", + "fid": 1456811, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ec0d979-c490-44ad-72e6-5bedbc7f0b00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08964310b0b9b97b0dba1ad94591fb4631cc28fb", + "etherscanUrl": "https://etherscan.io/address/0x08964310b0b9b97b0dba1ad94591fb4631cc28fb", + "xHandle": "farcaster_ayc", + "xUrl": "https://twitter.com/farcaster_ayc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1281853", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "izimaki", + "displayName": "Izimaki", + "fid": 1281853, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27253808-b357-43c3-5672-01bc3b3be800/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06947908661a1f1db4da53f3c02cbc1077beef1e", + "etherscanUrl": "https://etherscan.io/address/0x06947908661a1f1db4da53f3c02cbc1077beef1e", + "xHandle": "izimaki26", + "xUrl": "https://twitter.com/izimaki26", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_875831", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "baethernet", + "displayName": "baethernet", + "fid": 875831, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a14c7a29-5fcb-4651-c8b1-70dda191dc00/rectcrop3", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68ef1404454113c970067d53f40f60b4bb36d216", + "etherscanUrl": "https://etherscan.io/address/0x68ef1404454113c970067d53f40f60b4bb36d216", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1217517", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nakuro", + "displayName": "Nakuro", + "fid": 1217517, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d795765-6c52-4153-e1ae-d72ac787a000/original", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x117d307543cad1fc0af79cf149ed530911ea7a99", + "etherscanUrl": "https://etherscan.io/address/0x117d307543cad1fc0af79cf149ed530911ea7a99", + "xHandle": "nakuro_0", + "xUrl": "https://twitter.com/nakuro_0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1070127", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rukroy", + "displayName": "Crypto Airdrop Radar 🚨", + "fid": 1070127, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46e6db06-e7c1-47e9-078c-fc8c321c5600/original", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a8cfa1034a28c6d175d43ebb509c118eb9989c8", + "etherscanUrl": "https://etherscan.io/address/0x7a8cfa1034a28c6d175d43ebb509c118eb9989c8", + "xHandle": "airdropalerts9", + "xUrl": "https://twitter.com/airdropalerts9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1064711", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rarasaprillia", + "displayName": "Raras Aprillia", + "fid": 1064711, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77e0551d-2f4d-491c-eee5-59ebfc121300/original", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd331dd5acf41f29b36296edfd41e5989758b540", + "etherscanUrl": "https://etherscan.io/address/0xdd331dd5acf41f29b36296edfd41e5989758b540", + "xHandle": "rarasaprillia", + "xUrl": "https://twitter.com/rarasaprillia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_330800", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adywal", + "displayName": "Adywal", + "fid": 330800, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf22d5fe-b696-4be7-77bc-8c45a645f700/rectcrop3", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x547174b6876d80095d8cca5c139dd3be2ffb8aae", + "etherscanUrl": "https://etherscan.io/address/0x547174b6876d80095d8cca5c139dd3be2ffb8aae", + "xHandle": "adywal07", + "xUrl": "https://twitter.com/adywal07", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_646724", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gtimaster101", + "displayName": "GTI_Sonu_mehta", + "fid": 646724, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5381bad1-d94f-42e4-89a7-2971ae242200/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f1b3e62cb506821d21b835fa834cd74e0114f87", + "etherscanUrl": "https://etherscan.io/address/0x1f1b3e62cb506821d21b835fa834cd74e0114f87", + "xHandle": "berachain1o1", + "xUrl": "https://twitter.com/berachain1o1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_997370", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nurulp", + "displayName": "Nurul Putri Azizah", + "fid": 997370, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f02a4628-39d3-4c06-7a8d-c9222be5f200/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02c05c04a1434ffce9a98af09e5ea858b010c250", + "etherscanUrl": "https://etherscan.io/address/0x02c05c04a1434ffce9a98af09e5ea858b010c250", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_892577", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nadillaazhary", + "displayName": "Dillaa.base.eth", + "fid": 892577, + "pfpUrl": "https://warpcast.com/avatar.png?t=1746442698761", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0a4addb835ee725e85f7f6be2bc6250594b67b8", + "etherscanUrl": "https://etherscan.io/address/0xc0a4addb835ee725e85f7f6be2bc6250594b67b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1371953", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ireomotoyosi", + "displayName": "ireomotoyosi", + "fid": 1371953, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb8ca3341b31f927622fa73fc7447851635cd24a", + "etherscanUrl": "https://etherscan.io/address/0xbb8ca3341b31f927622fa73fc7447851635cd24a", + "xHandle": "oluwafisayomi78", + "xUrl": "https://twitter.com/oluwafisayomi78", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1440099", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crystalgravy", + "displayName": "crystalgravy", + "fid": 1440099, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/568e2139-0de4-4482-50bf-a1e2d4f4a800/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ea509807482193144cb16eee1d8d9fa23d90c56", + "etherscanUrl": "https://etherscan.io/address/0x4ea509807482193144cb16eee1d8d9fa23d90c56", + "xHandle": "crystalgravy2", + "xUrl": "https://twitter.com/crystalgravy2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921513", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adonistelfair", + "displayName": "Adonis Telfair", + "fid": 921513, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cba6627c-33e5-4f70-c77a-149df2db7400/rectcrop3", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd9cb4c017a07e8e45bf01cb6704221281f46cca1", + "etherscanUrl": "https://etherscan.io/address/0xd9cb4c017a07e8e45bf01cb6704221281f46cca1", + "xHandle": "anton_igna46066", + "xUrl": "https://twitter.com/anton_igna46066", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1449993", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "baper21", + "displayName": "baper21", + "fid": 1449993, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c00938-f9b3-437f-f7f8-123d19440100/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0698776945644386cb35e5dd0dddda69a647a7d6", + "etherscanUrl": "https://etherscan.io/address/0x0698776945644386cb35e5dd0dddda69a647a7d6", + "xHandle": "butut_mobi41596", + "xUrl": "https://twitter.com/butut_mobi41596", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103319", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alycan", + "displayName": "Ali Can", + "fid": 1103319, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23949490-c943-4f17-8441-e9dd1295a000/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd10eb8905f23d44f84b91d5620e14540a349f257", + "etherscanUrl": "https://etherscan.io/address/0xd10eb8905f23d44f84b91d5620e14540a349f257", + "xHandle": "ebubekir195077", + "xUrl": "https://twitter.com/ebubekir195077", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_537150", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "millionx", + "displayName": "Sam", + "fid": 537150, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/585cf7a1-5935-4a57-4e19-15abd12d3900/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x34a4aa35ce7545dc8597a13606ae619e69cf1650", + "etherscanUrl": "https://etherscan.io/address/0x34a4aa35ce7545dc8597a13606ae619e69cf1650", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1004526", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "smoll-viking", + "displayName": "Basedmidget.base.eth", + "fid": 1004526, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93b7bacb-61ed-4f7e-1a0b-1440d88ebc00/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9cccd0151b288fe46142682d24ba8757baa46313", + "etherscanUrl": "https://etherscan.io/address/0x9cccd0151b288fe46142682d24ba8757baa46313", + "xHandle": "motenforcement", + "xUrl": "https://twitter.com/motenforcement", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1420061", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xszee", + "displayName": "xszee", + "fid": 1420061, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfca0c12dcc1d5397cf725e3b14ec37e7ab1fbc65", + "etherscanUrl": "https://etherscan.io/address/0xfca0c12dcc1d5397cf725e3b14ec37e7ab1fbc65", + "xHandle": "setang91907", + "xUrl": "https://twitter.com/setang91907", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_473549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dreamsbender", + "displayName": "Dreamsbender", + "fid": 473549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1ad69b0-14d5-4b84-7d3a-7af7b4e5a100/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0da489b734ff82b8489d70bc65df3cbbf8f7b985", + "etherscanUrl": "https://etherscan.io/address/0x0da489b734ff82b8489d70bc65df3cbbf8f7b985", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_902604", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoradeployers", + "displayName": "raindeployz🌈", + "fid": 902604, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7df4a7a-20ee-46d3-f749-05c21c62c600/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8fbf1a6a613d59580144d1b79030b1e9305c6161", + "etherscanUrl": "https://etherscan.io/address/0x8fbf1a6a613d59580144d1b79030b1e9305c6161", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_923169", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cruxito", + "displayName": "cruxito.base.eth", + "fid": 923169, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/702f7ef8-02ff-4f71-04fa-17d9af169600/public", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x525170a4b878cfa83d43f439b49d8b6766d4961e", + "etherscanUrl": "https://etherscan.io/address/0x525170a4b878cfa83d43f439b49d8b6766d4961e", + "xHandle": "dl681645", + "xUrl": "https://twitter.com/dl681645", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1049507", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "knoxfort", + "displayName": "Denis", + "fid": 1049507, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/368cfc5e-f64b-4446-adaf-635493308b00/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x573e02402851d1cdcd1ab8d3f37dc523676a1c61", + "etherscanUrl": "https://etherscan.io/address/0x573e02402851d1cdcd1ab8d3f37dc523676a1c61", + "xHandle": "denisgacic", + "xUrl": "https://twitter.com/denisgacic", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_350549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lianne", + "displayName": "Lianne Li", + "fid": 350549, + "pfpUrl": "https://i.imgur.com/1yVdolQ.jpg", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd33f3095f2aa6ccba996a70507976ed6ed3b1b54", + "etherscanUrl": "https://etherscan.io/address/0xd33f3095f2aa6ccba996a70507976ed6ed3b1b54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1395669", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gmach", + "displayName": "gmach", + "fid": 1395669, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2491c17a-f877-4832-8bbd-184ef3027100/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcbbcbcbc048d88f86cc3006d10f65653b49eba87", + "etherscanUrl": "https://etherscan.io/address/0xcbbcbcbc048d88f86cc3006d10f65653b49eba87", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1315983", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deshicryptoguy", + "displayName": "Creator Economics", + "fid": 1315983, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40055371-15a8-48e4-fe45-4c9511913800/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab855a955c872a8f61813df077ed61eb03fe639c", + "etherscanUrl": "https://etherscan.io/address/0xab855a955c872a8f61813df077ed61eb03fe639c", + "xHandle": "bhandarysu99076", + "xUrl": "https://twitter.com/bhandarysu99076", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_890711", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ivan86", + "displayName": "Jesse.base_eth", + "fid": 890711, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8337bcd2-b94f-4be3-4041-6e526ec54200/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb948cd1361fe7d01e973ff7e260d126dda13368b", + "etherscanUrl": "https://etherscan.io/address/0xb948cd1361fe7d01e973ff7e260d126dda13368b", + "xHandle": "ivan86__clone", + "xUrl": "https://twitter.com/ivan86__clone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1073907", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jackto", + "displayName": "Jackto.Eth", + "fid": 1073907, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3f291f4-f256-45f5-21cd-9a37c6cd0200/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x409677bf21ae777b89d7ecad36e42f247c5258e5", + "etherscanUrl": "https://etherscan.io/address/0x409677bf21ae777b89d7ecad36e42f247c5258e5", + "xHandle": "rokoksurya1688", + "xUrl": "https://twitter.com/rokoksurya1688", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_562482", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zlyusia", + "displayName": "Ivan.base.eth", + "fid": 562482, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75f064da-838d-401e-41df-a1b7bb1dcb00/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01c1432ae9433e3cc055286a64692c05fa924caf", + "etherscanUrl": "https://etherscan.io/address/0x01c1432ae9433e3cc055286a64692c05fa924caf", + "xHandle": "zlyusia", + "xUrl": "https://twitter.com/zlyusia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1018605", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "powerchain", + "displayName": "Powerchain🎩", + "fid": 1018605, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36e148e8-5535-4b51-4170-57161d01d100/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c1cb5a57c3de27ee2ad8cd0c1b921cf280cb2eb", + "etherscanUrl": "https://etherscan.io/address/0x4c1cb5a57c3de27ee2ad8cd0c1b921cf280cb2eb", + "xHandle": "doranjori33948", + "xUrl": "https://twitter.com/doranjori33948", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_274857", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kmsami-eth", + "displayName": "kmsami.base.eth", + "fid": 274857, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d533d526-5ed4-4441-e062-6ea977b0b100/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f5af1c426f5f24296e9bbb76d2d15531aa660e6", + "etherscanUrl": "https://etherscan.io/address/0x5f5af1c426f5f24296e9bbb76d2d15531aa660e6", + "xHandle": "kmsami_eth", + "xUrl": "https://twitter.com/kmsami_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1176700", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aizeus", + "displayName": "AIzeus", + "fid": 1176700, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a07896c-30bf-4bc3-dc96-c0816183a000/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1822681f0de0e43fb4b7597f34ab28b5cfab465", + "etherscanUrl": "https://etherscan.io/address/0xe1822681f0de0e43fb4b7597f34ab28b5cfab465", + "xHandle": "artgedit", + "xUrl": "https://twitter.com/artgedit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1149714", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soapboxchats", + "displayName": "SoapBox", + "fid": 1149714, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/032c65c0-16a6-4931-465c-9f219b635a00/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca719d896e57547faa7b802f9fea95004a971a2f", + "etherscanUrl": "https://etherscan.io/address/0xca719d896e57547faa7b802f9fea95004a971a2f", + "xHandle": "soapboxchats", + "xUrl": "https://twitter.com/soapboxchats", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1039626", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "avurdbkkh", + "displayName": "avur", + "fid": 1039626, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a3bff1c-8ca1-4947-7dfd-f08dcfbc6b00/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29f423e3264847a2c73f44cf7e73ebb8a85b1499", + "etherscanUrl": "https://etherscan.io/address/0x29f423e3264847a2c73f44cf7e73ebb8a85b1499", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_971817", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mansamu", + "displayName": "Musa Salihu Yusuf", + "fid": 971817, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ced9a509-ac55-449d-e9e7-20ac78ac2300/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bc32fb0931bde3ee992fa48e24b8b49c2b2c32a", + "etherscanUrl": "https://etherscan.io/address/0x4bc32fb0931bde3ee992fa48e24b8b49c2b2c32a", + "xHandle": "musay89732", + "xUrl": "https://twitter.com/musay89732", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1433167", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emoneth", + "displayName": "emon.eth 🥦", + "fid": 1433167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a4fd72-ef1f-4071-882c-a1db8437d600/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ac3263dd17cba808a2f06895fd5fd32b3bce4d1", + "etherscanUrl": "https://etherscan.io/address/0x0ac3263dd17cba808a2f06895fd5fd32b3bce4d1", + "xHandle": "ripotor", + "xUrl": "https://twitter.com/ripotor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1166227", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ntrenched", + "displayName": "Entrenched", + "fid": 1166227, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86e49edc-dc93-4864-5de7-e7d42fe11800/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf32af4aa6445158f01351250fe422beed142a350", + "etherscanUrl": "https://etherscan.io/address/0xf32af4aa6445158f01351250fe422beed142a350", + "xHandle": "entrenched_", + "xUrl": "https://twitter.com/entrenched_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_361263", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "killermanilla", + "displayName": "N3CRIMINY", + "fid": 361263, + "pfpUrl": "https://i.imgur.com/89UGhN0.jpg", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc049f4173606ddc39c5b345ee4cbebb033989a46", + "etherscanUrl": "https://etherscan.io/address/0xc049f4173606ddc39c5b345ee4cbebb033989a46", + "xHandle": "andrewb28834084", + "xUrl": "https://twitter.com/andrewb28834084", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050161", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wadidaw", + "displayName": "Wadidaw", + "fid": 1050161, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86375ee3-ae58-46cb-44a9-09a8b5501c00/rectcrop3", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1e34572134489714b9c5e0722229830c27bba10", + "etherscanUrl": "https://etherscan.io/address/0xd1e34572134489714b9c5e0722229830c27bba10", + "xHandle": "growcrit", + "xUrl": "https://twitter.com/growcrit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_779840", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "payalm", + "displayName": "PixelPips", + "fid": 779840, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8f4372d-088a-4bfd-d70b-172a03b67200/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e0f6b9b8b452bc06dcb12fcb8864ac9b7df620d", + "etherscanUrl": "https://etherscan.io/address/0x0e0f6b9b8b452bc06dcb12fcb8864ac9b7df620d", + "xHandle": "pmpixelpips", + "xUrl": "https://twitter.com/pmpixelpips", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_236695", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jayjay24", + "displayName": "Jayjay", + "fid": 236695, + "pfpUrl": "https://i.imgur.com/3AfO6G1.jpg", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x857a8982b991bd4ee796030c4491a61a18132f4f", + "etherscanUrl": "https://etherscan.io/address/0x857a8982b991bd4ee796030c4491a61a18132f4f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139047", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jasonween", + "displayName": "Cinemadose", + "fid": 1139047, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e0376439-8ef3-44ad-47d9-513323079c00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa30f6f091abbed787129ba4c1bd0371d6acdcdc5", + "etherscanUrl": "https://etherscan.io/address/0xa30f6f091abbed787129ba4c1bd0371d6acdcdc5", + "xHandle": "thanvanhuy3", + "xUrl": "https://twitter.com/thanvanhuy3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_232535", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "faustboar", + "displayName": "faust", + "fid": 232535, + "pfpUrl": "https://i.imgur.com/1bHaI6X.jpg", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2dc9b7ebc8934370cb5185ba7343b713fd5a390", + "etherscanUrl": "https://etherscan.io/address/0xe2dc9b7ebc8934370cb5185ba7343b713fd5a390", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_873906", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ibrahimkevon", + "displayName": "ibrahimkevon", + "fid": 873906, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27652bd1-50d8-4268-4d65-ec535459d200/rectcrop3", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcebe160a03a4b6dc8b7080c25954eb07f5c58df2", + "etherscanUrl": "https://etherscan.io/address/0xcebe160a03a4b6dc8b7080c25954eb07f5c58df2", + "xHandle": "sergey785286", + "xUrl": "https://twitter.com/sergey785286", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045102", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theworldisyours", + "displayName": "lazy", + "fid": 1045102, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52bb42ad-bf80-4e6b-de1b-4dee79648d00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73959dbee46f8373ff6155f9cde8e00673dac70d", + "etherscanUrl": "https://etherscan.io/address/0x73959dbee46f8373ff6155f9cde8e00673dac70d", + "xHandle": "poehislisu17065", + "xUrl": "https://twitter.com/poehislisu17065", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1014628", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sreemonojit", + "displayName": "SreeMonojit", + "fid": 1014628, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54fd9eb4-1505-4a58-54cd-98cafe1e2500/rectcrop3", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x046162736e2b722fe4518e1150e63c85f54d9102", + "etherscanUrl": "https://etherscan.io/address/0x046162736e2b722fe4518e1150e63c85f54d9102", + "xHandle": "smonojit52617", + "xUrl": "https://twitter.com/smonojit52617", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1337722", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "midwestmind", + "displayName": "Living_and_Loving_Art", + "fid": 1337722, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8adbf86-a6be-4110-aa64-dc6c3be24b00/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e4927eacfe47cb1c0aec6c55e6f31bdb9cf71af", + "etherscanUrl": "https://etherscan.io/address/0x4e4927eacfe47cb1c0aec6c55e6f31bdb9cf71af", + "xHandle": "midwestartlover", + "xUrl": "https://twitter.com/midwestartlover", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1318077", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nazila1991", + "displayName": "Nazila", + "fid": 1318077, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f616057f-8504-4d5c-ad2f-ad170c029d00/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaceb1d8deb198ba079d0922c8d01dd094e6299a3", + "etherscanUrl": "https://etherscan.io/address/0xaceb1d8deb198ba079d0922c8d01dd094e6299a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_956923", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "infatuatedsimp", + "displayName": "TheSimp", + "fid": 956923, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7918dbe-11fb-4041-9fce-aa088b4ca900/rectcrop3", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc63274b565ba479902cb9db2901decabd6e433df", + "etherscanUrl": "https://etherscan.io/address/0xc63274b565ba479902cb9db2901decabd6e433df", + "xHandle": "infatuated_simp", + "xUrl": "https://twitter.com/infatuated_simp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190450", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jokky11", + "displayName": "Joke Bello", + "fid": 1190450, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ae5c7c802a0fe88cde6a4127e2ee39c51165bcf", + "etherscanUrl": "https://etherscan.io/address/0x7ae5c7c802a0fe88cde6a4127e2ee39c51165bcf", + "xHandle": "jokky11", + "xUrl": "https://twitter.com/jokky11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044609", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "staiwo", + "displayName": "yadnusot", + "fid": 1044609, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3c39d72-59cb-4092-b9c7-575eab951900/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44d1265d0dbabad2113b730a66fe691964f75a7e", + "etherscanUrl": "https://etherscan.io/address/0x44d1265d0dbabad2113b730a66fe691964f75a7e", + "xHandle": "therealyadnuso", + "xUrl": "https://twitter.com/therealyadnuso", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1172362", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ledon", + "displayName": "B.U.S.Y", + "fid": 1172362, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd731d7b-fdc5-4adf-7590-78224a5d5500/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a3ff25f0d52b034590a85c8fe48417cfb8d8be4", + "etherscanUrl": "https://etherscan.io/address/0x9a3ff25f0d52b034590a85c8fe48417cfb8d8be4", + "xHandle": "777_busy", + "xUrl": "https://twitter.com/777_busy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1238229", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "duckphart-greg", + "displayName": "DuckPhart (Greg)", + "fid": 1238229, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52611e26-4472-4146-a3ba-24164bf06b00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36894e4c92681c642d59c801f2625bf635ee7363", + "etherscanUrl": "https://etherscan.io/address/0x36894e4c92681c642d59c801f2625bf635ee7363", + "xHandle": "roughyield96866", + "xUrl": "https://twitter.com/roughyield96866", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1114372", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sendarc", + "displayName": "Send Arcade", + "fid": 1114372, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32119ac7-d01c-4ccd-45e6-5fd9a9851900/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee47b36cdab18ddece299020a07dc23909e78d83", + "etherscanUrl": "https://etherscan.io/address/0xee47b36cdab18ddece299020a07dc23909e78d83", + "xHandle": "sendarcade_", + "xUrl": "https://twitter.com/sendarcade_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1046735", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alexetrafilm", + "displayName": "AlexEtraFilm", + "fid": 1046735, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16b3ec47-ea61-4e60-f9b6-ea889f116900/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x13cc2cea6b5a1bb76c0198127c1c7f2e471d21f6", + "etherscanUrl": "https://etherscan.io/address/0x13cc2cea6b5a1bb76c0198127c1c7f2e471d21f6", + "xHandle": "etrafilm", + "xUrl": "https://twitter.com/etrafilm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930688", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ssshamim2003", + "displayName": "SS Shamim", + "fid": 930688, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e41db4-621e-442d-2cbb-c998ea11bc00/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x396c113345d572bd5fbeec2e3f4ccbe3f84fedb4", + "etherscanUrl": "https://etherscan.io/address/0x396c113345d572bd5fbeec2e3f4ccbe3f84fedb4", + "xHandle": "litegam36172214", + "xUrl": "https://twitter.com/litegam36172214", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_992014", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elpablo102002", + "displayName": "el base.eth", + "fid": 992014, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/522ea2a4-f435-453d-6498-4bc5bcf0e600/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x45673f46bf151c08e9c5dd20828c310a01a06ea8", + "etherscanUrl": "https://etherscan.io/address/0x45673f46bf151c08e9c5dd20828c310a01a06ea8", + "xHandle": "pabloc59890", + "xUrl": "https://twitter.com/pabloc59890", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141066", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thamrin30", + "displayName": "Usni", + "fid": 1141066, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2591536b3da1e1c052f30e764d5ebab905f0e1f4", + "etherscanUrl": "https://etherscan.io/address/0x2591536b3da1e1c052f30e764d5ebab905f0e1f4", + "xHandle": "thamrin30", + "xUrl": "https://twitter.com/thamrin30", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1060709", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suirewardsme", + "displayName": "j", + "fid": 1060709, + "pfpUrl": "https://warpcast.com/avatar.png?t=1746173124470", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7778822cb066ff5a912700e201ada0615c64289", + "etherscanUrl": "https://etherscan.io/address/0xf7778822cb066ff5a912700e201ada0615c64289", + "xHandle": "gabrielgubl", + "xUrl": "https://twitter.com/gabrielgubl", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097181", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pinmaa", + "displayName": "Pinma", + "fid": 1097181, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1a194b91cb19465a7297dee2908ee245c5eb5f6", + "etherscanUrl": "https://etherscan.io/address/0xd1a194b91cb19465a7297dee2908ee245c5eb5f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1076090", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whalebux", + "displayName": "WhaleBux.Shinzo.base", + "fid": 1076090, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79694762-43fa-49b8-3309-e4d25fb2d600/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa904912ffe8a94070bd09f724bfddfa3b5ffab2b", + "etherscanUrl": "https://etherscan.io/address/0xa904912ffe8a94070bd09f724bfddfa3b5ffab2b", + "xHandle": "ishinzo369", + "xUrl": "https://twitter.com/ishinzo369", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1020834", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jalantze", + "displayName": "Jalantze", + "fid": 1020834, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3260d68-ecce-4b18-3d45-e9f121c63600/rectcrop3", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe234d042249aee329859f280fed1a3f6e38b2b86", + "etherscanUrl": "https://etherscan.io/address/0xe234d042249aee329859f280fed1a3f6e38b2b86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072385", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "milom655", + "displayName": "Milon CLONE", + "fid": 1072385, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/407e3149-fbf5-4002-5abf-b23127c6ac00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b64b116c85f40c7d239cf3365537daa2a2542a8", + "etherscanUrl": "https://etherscan.io/address/0x6b64b116c85f40c7d239cf3365537daa2a2542a8", + "xHandle": "mdmilon91772240", + "xUrl": "https://twitter.com/mdmilon91772240", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1068329", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdziyad09", + "displayName": "Lee", + "fid": 1068329, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3969a40a-59bf-4bb9-a505-c6dcc765bc00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x135ec645150354ac1e31c21085bc13a3c27a0369", + "etherscanUrl": "https://etherscan.io/address/0x135ec645150354ac1e31c21085bc13a3c27a0369", + "xHandle": "mdziyad00", + "xUrl": "https://twitter.com/mdziyad00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_892611", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "martin2up", + "displayName": "MartinUp", + "fid": 892611, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1dee55fa-e203-478b-3479-5825d956bc00/rectcrop3", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2485f4d78a264558620e5c0fc68e11f5a37dc82c", + "etherscanUrl": "https://etherscan.io/address/0x2485f4d78a264558620e5c0fc68e11f5a37dc82c", + "xHandle": "martin_up18383", + "xUrl": "https://twitter.com/martin_up18383", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1042006", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joycst12", + "displayName": "Joy", + "fid": 1042006, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cfb0c619-da6c-4b42-4ff5-0eeb899bf500/rectcrop3", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9a27ffa10a3d0ca1419ebd8d0c7a2016dc86a47", + "etherscanUrl": "https://etherscan.io/address/0xe9a27ffa10a3d0ca1419ebd8d0c7a2016dc86a47", + "xHandle": "joy21535857", + "xUrl": "https://twitter.com/joy21535857", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_871631", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "predragshields", + "displayName": "predragshields", + "fid": 871631, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52642312-3e6e-44c8-ac77-416702c42500/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fde43989e6d409da0ace5b71bab98c25fa70a09", + "etherscanUrl": "https://etherscan.io/address/0x0fde43989e6d409da0ace5b71bab98c25fa70a09", + "xHandle": "varnava497346", + "xUrl": "https://twitter.com/varnava497346", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143542", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anyanwu43", + "displayName": "promiseanyanwu \"Meshchain.Ai\"", + "fid": 1143542, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6ee6b69-c59e-479e-9a68-c863553e4e00/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdf44ba97b590c627ed2cf30d025fa0ea6f72209", + "etherscanUrl": "https://etherscan.io/address/0xbdf44ba97b590c627ed2cf30d025fa0ea6f72209", + "xHandle": "promise19576748", + "xUrl": "https://twitter.com/promise19576748", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1105642", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sergiy7777777", + "displayName": "sergiy7.base.eth", + "fid": 1105642, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16a70821-6d6d-4859-7afe-e2a8f9563700/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd213059c43db698f739821a3375946860047cd0", + "etherscanUrl": "https://etherscan.io/address/0xdd213059c43db698f739821a3375946860047cd0", + "xHandle": "jekpotj", + "xUrl": "https://twitter.com/jekpotj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_397526", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trader06", + "displayName": "Jon Kamper", + "fid": 397526, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c89e1a4c-ea84-4f6b-4797-1a04faff6e00/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73bc0ec716e95ccd8d5c9a12f526948375a9d8b9", + "etherscanUrl": "https://etherscan.io/address/0x73bc0ec716e95ccd8d5c9a12f526948375a9d8b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139879", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "musrifah01", + "displayName": "Musrifah", + "fid": 1139879, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e86d8665-76d7-434c-fe8e-c9b14a3d4f00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba426e90e9daa0c4c91614471e78a416c97ae93e", + "etherscanUrl": "https://etherscan.io/address/0xba426e90e9daa0c4c91614471e78a416c97ae93e", + "xHandle": "musrifahiffah", + "xUrl": "https://twitter.com/musrifahiffah", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_939912", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "samratbera", + "displayName": "Samrat", + "fid": 939912, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/859d6464-6221-47b4-935e-38806c987100/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa8fec6936f36e5a36a81d01b6b937ca186f7f668", + "etherscanUrl": "https://etherscan.io/address/0xa8fec6936f36e5a36a81d01b6b937ca186f7f668", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1080433", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jayzbase", + "displayName": "Stephen Jayz", + "fid": 1080433, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e8ec51fb7b8f077374ed9e89df432a93d03f94c", + "etherscanUrl": "https://etherscan.io/address/0x3e8ec51fb7b8f077374ed9e89df432a93d03f94c", + "xHandle": "i_feadigo", + "xUrl": "https://twitter.com/i_feadigo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_385945", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mmokkil", + "displayName": "Morema🐹", + "fid": 385945, + "pfpUrl": "https://i.imgur.com/t8VVFDH.jpg", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18a996bfc78a753e38277b01744061544e986365", + "etherscanUrl": "https://etherscan.io/address/0x18a996bfc78a753e38277b01744061544e986365", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1417104", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blakebluu", + "displayName": "BlakeBluu", + "fid": 1417104, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/037bc61f-d478-425f-cc0a-1e2bbb227700/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6002a7442f29097fd457ba61005456b476c509e", + "etherscanUrl": "https://etherscan.io/address/0xa6002a7442f29097fd457ba61005456b476c509e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1424781", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iamon", + "displayName": "iamon", + "fid": 1424781, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59da9a6adc43413d6f2d8d8166b7d4113326f0a0", + "etherscanUrl": "https://etherscan.io/address/0x59da9a6adc43413d6f2d8d8166b7d4113326f0a0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1026537", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mehedihasan2mh", + "displayName": "Mehedi hasan", + "fid": 1026537, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c98c715-32d1-4af3-8e32-7fcdb837a200/rectcrop3", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b5a856edeed5ed06aacfdf8c2c4c6ac66aaad50", + "etherscanUrl": "https://etherscan.io/address/0x5b5a856edeed5ed06aacfdf8c2c4c6ac66aaad50", + "xHandle": "mehedihasan9rt", + "xUrl": "https://twitter.com/mehedihasan9rt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "legend47", + "displayName": "Idris Ishaq", + "fid": 1131524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aba16f57-1805-444b-9069-ae47d3009600/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d2f7302692eb2443effbc1e806e8195d57143c8", + "etherscanUrl": "https://etherscan.io/address/0x2d2f7302692eb2443effbc1e806e8195d57143c8", + "xHandle": "idrisishaq47", + "xUrl": "https://twitter.com/idrisishaq47", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089092", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "subhajit321", + "displayName": "I", + "fid": 1089092, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc93050f38352b12b487c82ed56d0300ad8c3304", + "etherscanUrl": "https://etherscan.io/address/0xfc93050f38352b12b487c82ed56d0300ad8c3304", + "xHandle": "subhajitma18999", + "xUrl": "https://twitter.com/subhajitma18999", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043007", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "renzoskye", + "displayName": "Renzo Skye", + "fid": 1043007, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06754546-461a-42d4-bbf7-885eb0197200/rectcrop3", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x401cdee44fc91cc98e3bbca4365f714e46457c9c", + "etherscanUrl": "https://etherscan.io/address/0x401cdee44fc91cc98e3bbca4365f714e46457c9c", + "xHandle": "renzo_skye", + "xUrl": "https://twitter.com/renzo_skye", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1120226", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cwyxhsw", + "displayName": "发财小狗屁1.0", + "fid": 1120226, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae7f00d3-65dc-4f2e-6212-48b6ab87f800/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab880948d63028a159bed4e11c26a6a2141a5f40", + "etherscanUrl": "https://etherscan.io/address/0xab880948d63028a159bed4e11c26a6a2141a5f40", + "xHandle": "cwyxhqz", + "xUrl": "https://twitter.com/cwyxhqz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1052654", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tikulma", + "displayName": "-4°", + "fid": 1052654, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a4db9aa-a028-49a0-e2cf-d0117e844500/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd05c705891464d52347c9becfd61c6245985aa4e", + "etherscanUrl": "https://etherscan.io/address/0xd05c705891464d52347c9becfd61c6245985aa4e", + "xHandle": "tikulmax", + "xUrl": "https://twitter.com/tikulmax", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_892561", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "duts67", + "displayName": "Decu0x", + "fid": 892561, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ae5cd78-1623-4451-fabb-e3fa48ee6100/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d335378ce0d4f8ef89dc2b4b5efa3b3613db3a2", + "etherscanUrl": "https://etherscan.io/address/0x2d335378ce0d4f8ef89dc2b4b5efa3b3613db3a2", + "xHandle": "guaremperorr", + "xUrl": "https://twitter.com/guaremperorr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1028484", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oxaave", + "displayName": "0xaave", + "fid": 1028484, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c3360d9-c75f-4825-f93a-d3c227eb9700/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b0c0adae0ce0b91d45b2d419265f45e5f88f8df", + "etherscanUrl": "https://etherscan.io/address/0x7b0c0adae0ce0b91d45b2d419265f45e5f88f8df", + "xHandle": "_0xrey", + "xUrl": "https://twitter.com/_0xrey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_897481", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "garyma", + "displayName": "GaryMa", + "fid": 897481, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/29db9d9b-bd33-49b2-271c-4a27e8948200/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb924f68aae1a544366f93ea453f9da56f239c88b", + "etherscanUrl": "https://etherscan.io/address/0xb924f68aae1a544366f93ea453f9da56f239c88b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1398640", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mr-hunt-g", + "displayName": "mr-hunt-g", + "fid": 1398640, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4ed83f523433432619044ed5fc37abafebd287a", + "etherscanUrl": "https://etherscan.io/address/0xd4ed83f523433432619044ed5fc37abafebd287a", + "xHandle": "mr_hunt_g", + "xUrl": "https://twitter.com/mr_hunt_g", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1388907", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jake-clover", + "displayName": "jake-clover", + "fid": 1388907, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4f0e22e9-a2bb-48a7-ebff-1ba77c0aae00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd53764ccd3f79d66e0fae632cf8204ad83b3661b", + "etherscanUrl": "https://etherscan.io/address/0xd53764ccd3f79d66e0fae632cf8204ad83b3661b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141363", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stonimals", + "displayName": "Stonimals", + "fid": 1141363, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d886e695-6e38-48e5-6a8f-7d0f9ded8300/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb365ae5a015f1dfcd693307aabc4bf52f4a5c500", + "etherscanUrl": "https://etherscan.io/address/0xb365ae5a015f1dfcd693307aabc4bf52f4a5c500", + "xHandle": "stonimals", + "xUrl": "https://twitter.com/stonimals", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106287", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "scannooor", + "displayName": "Scannooor", + "fid": 1106287, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef26192b-05c5-4e9d-64c3-9852dc43f000/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d94af1db57d58da44ce9e57a418cacf9770ff64", + "etherscanUrl": "https://etherscan.io/address/0x3d94af1db57d58da44ce9e57a418cacf9770ff64", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106404", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "superautism.eth", + "displayName": "superautism", + "fid": 1106404, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa9eb92d-f9b2-48cd-c619-780d93f35500/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c67abab31de6d82c1e308614476c55b0b228d08", + "etherscanUrl": "https://etherscan.io/address/0x4c67abab31de6d82c1e308614476c55b0b228d08", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1099466", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "clankr", + "displayName": "ClankR.xyz", + "fid": 1099466, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e907abda-a816-4281-7fb5-1218db96f100/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x966a7467fa31cf9316ba04c6cd819916e0fc7827", + "etherscanUrl": "https://etherscan.io/address/0x966a7467fa31cf9316ba04c6cd819916e0fc7827", + "xHandle": "clankr_xyz", + "xUrl": "https://twitter.com/clankr_xyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1427359", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xshakuna", + "displayName": "0xshakuna", + "fid": 1427359, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762143088/1000276976.jpg.jpg", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ce56394b654895a4c723397ae8afbba64ed1164", + "etherscanUrl": "https://etherscan.io/address/0x7ce56394b654895a4c723397ae8afbba64ed1164", + "xHandle": "waltershaku", + "xUrl": "https://twitter.com/waltershaku", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1373135", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ethmascot", + "displayName": "ethmascot", + "fid": 1373135, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3a07671-537a-4bdb-194f-cbcea73d6300/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb36fc534916665e1c8c5e53041fa29be599f4eb1", + "etherscanUrl": "https://etherscan.io/address/0xb36fc534916665e1c8c5e53041fa29be599f4eb1", + "xHandle": "0x_nizsa", + "xUrl": "https://twitter.com/0x_nizsa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138356", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "samtechrana", + "displayName": "RANA", + "fid": 1138356, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/551efa6d-f86b-4fb6-5afc-21c706e26800/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x269f13e3ad42ea7863040866db8a580589bc00a5", + "etherscanUrl": "https://etherscan.io/address/0x269f13e3ad42ea7863040866db8a580589bc00a5", + "xHandle": "diya667366", + "xUrl": "https://twitter.com/diya667366", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1178811", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "degentruffles", + "displayName": "Degen Truffles", + "fid": 1178811, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af757db7-5e62-438c-9b16-c3c7ce4cf700/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe347655221dd751da3a42652f190b5324c08ec28", + "etherscanUrl": "https://etherscan.io/address/0xe347655221dd751da3a42652f190b5324c08ec28", + "xHandle": "degentruffles", + "xUrl": "https://twitter.com/degentruffles", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117768", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "heyanonai", + "displayName": "Hey Anon", + "fid": 1117768, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/df546a28-9ef4-443a-7e0b-df7714614e00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x197a1e37de8ca195645df8c1e55419a971291365", + "etherscanUrl": "https://etherscan.io/address/0x197a1e37de8ca195645df8c1e55419a971291365", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1093602", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "apeofct", + "displayName": "Monke", + "fid": 1093602, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cfdb912e-ea8f-42b2-dbc6-742fcb780200/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e275f0739c09751580beeea3ea7a91154d53a44", + "etherscanUrl": "https://etherscan.io/address/0x1e275f0739c09751580beeea3ea7a91154d53a44", + "xHandle": "apeofct", + "xUrl": "https://twitter.com/apeofct", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_901234", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xione", + "displayName": "xione", + "fid": 901234, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7b3b0b9-3b45-4d18-4dc9-3e6edbeed500/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9037d62bc9e03faebc3cc14f9a38366c141b9455", + "etherscanUrl": "https://etherscan.io/address/0x9037d62bc9e03faebc3cc14f9a38366c141b9455", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1070591", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "timir548", + "displayName": "Timir Roy", + "fid": 1070591, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64f87b81-c673-4097-429a-a217339be800/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a5b2bcbb3e862e97b93769f631ceb10f16ef94e", + "etherscanUrl": "https://etherscan.io/address/0x5a5b2bcbb3e862e97b93769f631ceb10f16ef94e", + "xHandle": "timirroy366710", + "xUrl": "https://twitter.com/timirroy366710", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1059167", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "universal-truth", + "displayName": "Universal Truth Engine", + "fid": 1059167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a1e51592-d749-4b12-70ca-9f87de93da00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9dfeb4e7163f4e2f0ace20eae2b2cc4177a9fb0", + "etherscanUrl": "https://etherscan.io/address/0xe9dfeb4e7163f4e2f0ace20eae2b2cc4177a9fb0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_968126", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basevine", + "displayName": "Base Vine", + "fid": 968126, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f63b8377-9032-4e3f-83a0-7e71c3463c00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51ac51967a4be9879f7cce67681e0a65525cfa80", + "etherscanUrl": "https://etherscan.io/address/0x51ac51967a4be9879f7cce67681e0a65525cfa80", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_538182", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "betatron", + "displayName": "betatron", + "fid": 538182, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b459c47-bc80-4af2-98ce-b52824444900/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x886c01d23a50c144b6c80f92799a895f54cc74be", + "etherscanUrl": "https://etherscan.io/address/0x886c01d23a50c144b6c80f92799a895f54cc74be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1427295", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "punkofficial", + "displayName": "punkofficial", + "fid": 1427295, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9095c68-b34f-4a46-3638-2ef96110fa00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17d6ccfb5b53984de3af3e52e9a9a228ac36075f", + "etherscanUrl": "https://etherscan.io/address/0x17d6ccfb5b53984de3af3e52e9a9a228ac36075f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_432731", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jeff-pesos", + "displayName": "Jeff.Pesos.btc ", + "fid": 432731, + "pfpUrl": "https://i.imgur.com/kFQXtOl.jpg", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0939b6f997a950e6e3b6c120344b2ab021a8e4bb", + "etherscanUrl": "https://etherscan.io/address/0x0939b6f997a950e6e3b6c120344b2ab021a8e4bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1068988", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dim20230610", + "displayName": "diman20230610", + "fid": 1068988, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b199acc7-478d-4927-1f05-07ca55282300/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89b81ae1e84679cc825888426403ba7b95e2ed11", + "etherscanUrl": "https://etherscan.io/address/0x89b81ae1e84679cc825888426403ba7b95e2ed11", + "xHandle": "dim20230610", + "xUrl": "https://twitter.com/dim20230610", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1087928", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "umeduk", + "displayName": "Umi", + "fid": 1087928, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6993fd8788e0f912c2b8570720eb8cf709c3ef0", + "etherscanUrl": "https://etherscan.io/address/0xd6993fd8788e0f912c2b8570720eb8cf709c3ef0", + "xHandle": "kotadiyaum65472", + "xUrl": "https://twitter.com/kotadiyaum65472", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1085719", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmad98319", + "displayName": "Ahmad Usman", + "fid": 1085719, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d7c18e8-53f7-4fc4-2736-d1ebf5195100/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a5a6fd9c1f38454a8b8551f6aac2e1821f3ffec", + "etherscanUrl": "https://etherscan.io/address/0x4a5a6fd9c1f38454a8b8551f6aac2e1821f3ffec", + "xHandle": "ahmad98319", + "xUrl": "https://twitter.com/ahmad98319", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_385964", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dmakroni29313", + "displayName": "Davidee🐹", + "fid": 385964, + "pfpUrl": "https://i.imgur.com/mVNKHxV.jpg", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c13ec2cfc126b58f756b46259df1be64bf32cfb", + "etherscanUrl": "https://etherscan.io/address/0x6c13ec2cfc126b58f756b46259df1be64bf32cfb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1046992", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trendr", + "displayName": "Condor", + "fid": 1046992, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6911201-a7a5-45cf-c3ad-a33e869fd300/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a34fc26bae35aa68d1f88fc8459ad58f3ecd149", + "etherscanUrl": "https://etherscan.io/address/0x3a34fc26bae35aa68d1f88fc8459ad58f3ecd149", + "xHandle": "im_a_richb", + "xUrl": "https://twitter.com/im_a_richb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043098", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "simonm", + "displayName": "simonm", + "fid": 1043098, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e89cca88-0aa2-4079-092f-c7b02d1ea900/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x775267a8012b0d164fc134ecb06aa6d92c68c268", + "etherscanUrl": "https://etherscan.io/address/0x775267a8012b0d164fc134ecb06aa6d92c68c268", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1028922", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vombatusfans", + "displayName": "vombatusfans", + "fid": 1028922, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa1f14a7-62ba-4ff0-18c4-c7e2abfe7900/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe797cde5272e1c9b43fe0cb1bb86a0635733034e", + "etherscanUrl": "https://etherscan.io/address/0xe797cde5272e1c9b43fe0cb1bb86a0635733034e", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1022416", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mulahcrypto", + "displayName": "Mulah Crypto", + "fid": 1022416, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a06025c-d050-4bd1-b041-a1541c53d200/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31a65ee41c036a89fd40adb11838c186ecf534f7", + "etherscanUrl": "https://etherscan.io/address/0x31a65ee41c036a89fd40adb11838c186ecf534f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1179382", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "catbusonbase", + "displayName": "catbus", + "fid": 1179382, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32501781-02a1-4ff1-7370-8fff3c819100/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd52bdf7731e150cfb8ccf65f7c898411b11a8502", + "etherscanUrl": "https://etherscan.io/address/0xd52bdf7731e150cfb8ccf65f7c898411b11a8502", + "xHandle": "catbus_", + "xUrl": "https://twitter.com/catbus_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "disenchakma", + "displayName": "Notun Priyo", + "fid": 1142444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b98214a4-9189-474e-fc1c-d06b7be7f300/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d234d042c4fb0ce3041034bba7fab4601dc4143", + "etherscanUrl": "https://etherscan.io/address/0x3d234d042c4fb0ce3041034bba7fab4601dc4143", + "xHandle": "disenchakma", + "xUrl": "https://twitter.com/disenchakma", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097084", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shanmugaprabhu", + "displayName": "shanmugaprabhu 75T5BPGG", + "fid": 1097084, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b677e4d-f487-49b0-4a7a-d4cacff8fa00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x200f6be6851a20350c7828434ade016aa3966df8", + "etherscanUrl": "https://etherscan.io/address/0x200f6be6851a20350c7828434ade016aa3966df8", + "xHandle": "shanmugaprabhu0", + "xUrl": "https://twitter.com/shanmugaprabhu0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1086122", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mekas", + "displayName": "Mekas", + "fid": 1086122, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4b22765e-9c8c-48fb-df41-759f48494b00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4c968a93c2ddbc12ba1b4b5790afdf175d0ce61", + "etherscanUrl": "https://etherscan.io/address/0xc4c968a93c2ddbc12ba1b4b5790afdf175d0ce61", + "xHandle": "0xmekas", + "xUrl": "https://twitter.com/0xmekas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072250", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sim202308145602", + "displayName": "SimSon20230816 (Ø,G) $ODY", + "fid": 1072250, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be46a903-be25-44b7-2bbd-ac1171e8ce00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93850071912ababb40ac57acaec340d9e0f3161e", + "etherscanUrl": "https://etherscan.io/address/0x93850071912ababb40ac57acaec340d9e0f3161e", + "xHandle": "sim202308145602", + "xUrl": "https://twitter.com/sim202308145602", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dim10p", + "displayName": "Glory (Ø,G) $ODY", + "fid": 1071552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66f933c6-6809-48f5-7734-78ad44b17300/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb20d873ceabd15c81b67e5b6b802abf7877a6952", + "etherscanUrl": "https://etherscan.io/address/0xb20d873ceabd15c81b67e5b6b802abf7877a6952", + "xHandle": "dim10p", + "xUrl": "https://twitter.com/dim10p", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1039610", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reynaangelica", + "displayName": "reyna", + "fid": 1039610, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c51dec8-9008-4f23-fa47-10692d95e800/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f410b33e13155e9309f3e6f361f56dceea40a74", + "etherscanUrl": "https://etherscan.io/address/0x2f410b33e13155e9309f3e6f361f56dceea40a74", + "xHandle": "domikajojo31310", + "xUrl": "https://twitter.com/domikajojo31310", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1022718", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mastepe", + "displayName": "KING", + "fid": 1022718, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2668ecc2b55487dbdde569130679ae8fa00a208", + "etherscanUrl": "https://etherscan.io/address/0xf2668ecc2b55487dbdde569130679ae8fa00a208", + "xHandle": "omtepe_", + "xUrl": "https://twitter.com/omtepe_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1033911", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun024", + "displayName": "minokun024", + "fid": 1033911, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7380c5d4-4992-46d8-6172-bc3e51f19100/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x090224a68d83240cc64169bb7e99048d3f04710e", + "etherscanUrl": "https://etherscan.io/address/0x090224a68d83240cc64169bb7e99048d3f04710e", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1030524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun664", + "displayName": "minokun664", + "fid": 1030524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/021c1177-1683-4ae5-78a6-bf8deb659100/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7699b53ce206b389523b8b88c1bd38baf25a6bc", + "etherscanUrl": "https://etherscan.io/address/0xe7699b53ce206b389523b8b88c1bd38baf25a6bc", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1021340", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sayftyhazard", + "displayName": "Sayf", + "fid": 1021340, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a9c09acc-9efe-4e00-0c79-23877318af00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1310811a6b53401bfba70cef1118090ae147252b", + "etherscanUrl": "https://etherscan.io/address/0x1310811a6b53401bfba70cef1118090ae147252b", + "xHandle": "sayftyhazard", + "xUrl": "https://twitter.com/sayftyhazard", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1029329", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lisagail", + "displayName": "lisa gail", + "fid": 1029329, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96551903-ca0c-4087-dd28-9081d87cdd00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a3c0fccd3ef7256d72d29aaed585eb01ed53b31", + "etherscanUrl": "https://etherscan.io/address/0x4a3c0fccd3ef7256d72d29aaed585eb01ed53b31", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1457260", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bardetti34", + "displayName": "CTokenized", + "fid": 1457260, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2dfd7a34-eced-4376-c5d0-6343dbdfa000/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe8385a206c18c08c86421d4b7bbd8e2ce7a40a7", + "etherscanUrl": "https://etherscan.io/address/0xfe8385a206c18c08c86421d4b7bbd8e2ce7a40a7", + "xHandle": "ctokenized", + "xUrl": "https://twitter.com/ctokenized", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1377353", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cfgijosh", + "displayName": "Joshua", + "fid": 1377353, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3708f2b1-79b9-4f8a-ec3e-797f9ca45100/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x708d2714e33e99a3dd9b0439dbabb95d5e8acf19", + "etherscanUrl": "https://etherscan.io/address/0x708d2714e33e99a3dd9b0439dbabb95d5e8acf19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1368041", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basetv", + "displayName": "basetv", + "fid": 1368041, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b05f951-4c9b-47f0-c5ec-810073ddf600/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d030dadcfe95800caef7bc50a006f2d5f3ae6f6", + "etherscanUrl": "https://etherscan.io/address/0x6d030dadcfe95800caef7bc50a006f2d5f3ae6f6", + "xHandle": "basetv328642", + "xUrl": "https://twitter.com/basetv328642", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063818", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "est10088", + "displayName": "Fcvk", + "fid": 1063818, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f28902ee-9cb5-4f1f-0014-169092dfe000/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2f39775b85a2ff90e048deac9dc4d9148b0d67d", + "etherscanUrl": "https://etherscan.io/address/0xf2f39775b85a2ff90e048deac9dc4d9148b0d67d", + "xHandle": "est10088", + "xUrl": "https://twitter.com/est10088", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_941794", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tinaconstance", + "displayName": "TinaConstance", + "fid": 941794, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e685f34-4a1b-46b9-5e5b-cfe09a55ca00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5dd2fe68d82fabefa7a9cde290c2744ac4e3f1a6", + "etherscanUrl": "https://etherscan.io/address/0x5dd2fe68d82fabefa7a9cde290c2744ac4e3f1a6", + "xHandle": "immekeygarcia", + "xUrl": "https://twitter.com/immekeygarcia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065525", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iangarry", + "displayName": "Intann 🕊️", + "fid": 1065525, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b65842e8-a305-4116-423a-5b19e7715400/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6200b3bc8000838c259b129630414198dbec66d", + "etherscanUrl": "https://etherscan.io/address/0xa6200b3bc8000838c259b129630414198dbec66d", + "xHandle": "intannsui", + "xUrl": "https://twitter.com/intannsui", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043613", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "incentiv", + "displayName": "Incentiv", + "fid": 1043613, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc24cd22-f777-4edf-5ee7-1817d1449200/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2177ad2185076d3e97a1faff0addc0efa5fc68d1", + "etherscanUrl": "https://etherscan.io/address/0x2177ad2185076d3e97a1faff0addc0efa5fc68d1", + "xHandle": "incentivnet", + "xUrl": "https://twitter.com/incentivnet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1034318", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun406", + "displayName": "minokun406", + "fid": 1034318, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1c378da7-b30c-4d33-2887-67b75f368b00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6825e875bdd5ab1778f91cdf7aa3b3ec991af8a6", + "etherscanUrl": "https://etherscan.io/address/0x6825e875bdd5ab1778f91cdf7aa3b3ec991af8a6", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130854", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oleaden", + "displayName": "Oleaden", + "fid": 1130854, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fff668dc-e930-4b40-f9bd-71f97ff7da00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c6e44f2d545137ddff8a0391f60695b0e3b8d4c", + "etherscanUrl": "https://etherscan.io/address/0x9c6e44f2d545137ddff8a0391f60695b0e3b8d4c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1447069", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cowboytommy", + "displayName": "cowboytommy", + "fid": 1447069, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ac3d53f-8c75-4249-99f8-dca5a4857000/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d412b23ce29bf7aea99c617a3df2351608c1689", + "etherscanUrl": "https://etherscan.io/address/0x5d412b23ce29bf7aea99c617a3df2351608c1689", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1411799", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dubclub", + "displayName": "Dub Club", + "fid": 1411799, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27fa97e2-b79a-4822-dfe8-6799966fc900/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf44797a6a6da88185981758afdea9e54104bc10a", + "etherscanUrl": "https://etherscan.io/address/0xf44797a6a6da88185981758afdea9e54104bc10a", + "xHandle": "dubclubtools", + "xUrl": "https://twitter.com/dubclubtools", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074159", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mansueto", + "displayName": "Singay", + "fid": 1074159, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0866c9a8-00fb-4767-e8fa-5233fc663300/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa575632df1acad8d9d42149584746daba45f8b70", + "etherscanUrl": "https://etherscan.io/address/0xa575632df1acad8d9d42149584746daba45f8b70", + "xHandle": "singay1990", + "xUrl": "https://twitter.com/singay1990", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1181860", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demydov", + "displayName": "MykhailoAwsm", + "fid": 1181860, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53cfb839-1ec5-4557-96be-ba5df5160700/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e665597ca2387d82e168c614d5cb4c8fb0483e9", + "etherscanUrl": "https://etherscan.io/address/0x3e665597ca2387d82e168c614d5cb4c8fb0483e9", + "xHandle": "demidovmsh", + "xUrl": "https://twitter.com/demidovmsh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1319826", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "boehner", + "displayName": "Boehner", + "fid": 1319826, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdee4fb5-8236-47f0-c513-fa48f05fd000/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00f4ed4f2d02f0da30a646ce2ec09703efd77554", + "etherscanUrl": "https://etherscan.io/address/0x00f4ed4f2d02f0da30a646ce2ec09703efd77554", + "xHandle": "andrewboehner", + "xUrl": "https://twitter.com/andrewboehner", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062174", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ruelxynd", + "displayName": "Xbrox", + "fid": 1062174, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b23dac94-b9aa-4d9a-1f57-0e1979a2bc00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xace3d54d12f502d99e171a28a0453779c4b9a863", + "etherscanUrl": "https://etherscan.io/address/0xace3d54d12f502d99e171a28a0453779c4b9a863", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1094938", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bobjones", + "displayName": "Bob Jones", + "fid": 1094938, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7659dac1d9fdd653de41e7788194a3557e30353b", + "etherscanUrl": "https://etherscan.io/address/0x7659dac1d9fdd653de41e7788194a3557e30353b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_947464", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xanthemelville", + "displayName": "XantheMelville", + "fid": 947464, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59371d8b-5397-401c-caec-178cbcb9a900/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb7b1fcf889f3deb2102ca64699bb298a02f1a3e", + "etherscanUrl": "https://etherscan.io/address/0xeb7b1fcf889f3deb2102ca64699bb298a02f1a3e", + "xHandle": "ostralopitek88", + "xUrl": "https://twitter.com/ostralopitek88", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1030296", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun662", + "displayName": "minokun662", + "fid": 1030296, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3bb63f4-0079-49ca-c2ed-91bcd779c300/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73fe169af391f32e8dd16ad8bd6e58e4ddc9ee71", + "etherscanUrl": "https://etherscan.io/address/0x73fe169af391f32e8dd16ad8bd6e58e4ddc9ee71", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1428588", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "growlz", + "displayName": "growlz", + "fid": 1428588, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c1d684d-f705-4cba-cbe1-303980c15500/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2c603cef72ae0674b65586792bf650ae528d9a3", + "etherscanUrl": "https://etherscan.io/address/0xa2c603cef72ae0674b65586792bf650ae528d9a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1368048", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basedjpegapp", + "displayName": "basedjpegapp", + "fid": 1368048, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/608266c3-20ab-4a00-d1bc-135babd55100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x161810de482e91d4cb11a21d22109200163a3ea2", + "etherscanUrl": "https://etherscan.io/address/0x161810de482e91d4cb11a21d22109200163a3ea2", + "xHandle": "based_jpegapp", + "xUrl": "https://twitter.com/based_jpegapp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1122746", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dikihs", + "displayName": "Diki Agung Setiawan", + "fid": 1122746, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4e3d88a1f67522541cc5e7039900a2f9ae10271", + "etherscanUrl": "https://etherscan.io/address/0xf4e3d88a1f67522541cc5e7039900a2f9ae10271", + "xHandle": "ridwangoden", + "xUrl": "https://twitter.com/ridwangoden", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1153406", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "totocrypto00", + "displayName": "Toto头头crypto", + "fid": 1153406, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da4b2e0c-691a-4156-342c-612fe6008d00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2d0552b7b7e299e376f08338d6f1c9298eb3e23", + "etherscanUrl": "https://etherscan.io/address/0xa2d0552b7b7e299e376f08338d6f1c9298eb3e23", + "xHandle": "toto_crypto00", + "xUrl": "https://twitter.com/toto_crypto00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082329", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "etheria", + "displayName": "Etheria | Monaverse", + "fid": 1082329, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e94bb192-8034-425c-a1e4-fbfb0a044600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa4a8ea48224d9c72921047c78bfc99e27efa9dd4", + "etherscanUrl": "https://etherscan.io/address/0xa4a8ea48224d9c72921047c78bfc99e27efa9dd4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074624", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "clanking", + "displayName": "KING", + "fid": 1074624, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5116556-0ef1-472b-8dcf-724c6a038400/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94bc3069238dc6eb83fd0a0918cb345c78d7ca8e", + "etherscanUrl": "https://etherscan.io/address/0x94bc3069238dc6eb83fd0a0918cb345c78d7ca8e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1046197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eliano", + "displayName": "eliano", + "fid": 1046197, + "pfpUrl": "https://gateway.pinata.cloud/ipfs/bafkreihnek7pmxf2gzbsuyxxftphik5dx45famufoxxsvblwsm5mkanzpa", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71eb1b04c922e5ec477aadc102ef76e0b49895d1", + "etherscanUrl": "https://etherscan.io/address/0x71eb1b04c922e5ec477aadc102ef76e0b49895d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1034211", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun030", + "displayName": "minokun030", + "fid": 1034211, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb5bd213-dce4-4aae-829e-bd22d0e0eb00/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7972151fa20e97cc1704069bd844fe770ec1ed9", + "etherscanUrl": "https://etherscan.io/address/0xe7972151fa20e97cc1704069bd844fe770ec1ed9", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_213289", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nericomio", + "displayName": "nericomio", + "fid": 213289, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1859d689-88f8-47ed-957e-3781789e7900/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6db973ba138e0b670ede3ea3e9ac5c4f642c4f0", + "etherscanUrl": "https://etherscan.io/address/0xb6db973ba138e0b670ede3ea3e9ac5c4f642c4f0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1341953", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lumaprotocol", + "displayName": "Luma Protocol", + "fid": 1341953, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3cc80af3-40c4-4ae9-4429-a6dae1131f00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa36b1f8642f9cb6c32ddfe09add76bebf3c35fb9", + "etherscanUrl": "https://etherscan.io/address/0xa36b1f8642f9cb6c32ddfe09add76bebf3c35fb9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1006492", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nguyencryp", + "displayName": "Nguyen", + "fid": 1006492, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21b88345-f1e7-4f19-dc09-684bcc2e3400/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa207581eaad68be8d7e6500d75f631227f664072", + "etherscanUrl": "https://etherscan.io/address/0xa207581eaad68be8d7e6500d75f631227f664072", + "xHandle": "nguyencryptoo", + "xUrl": "https://twitter.com/nguyencryptoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1111084", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kong000", + "displayName": "wukong000", + "fid": 1111084, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeff9e5b403aa90b8def0373bd3b11d361f2c8b8d", + "etherscanUrl": "https://etherscan.io/address/0xeff9e5b403aa90b8def0373bd3b11d361f2c8b8d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1102675", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "donnshim", + "displayName": "Signal Crypto", + "fid": 1102675, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/961a142c-1c48-4538-abe2-bb49bd450700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5db0e3b839279fc1ea1c85d587ffbf2908aa6cb7", + "etherscanUrl": "https://etherscan.io/address/0x5db0e3b839279fc1ea1c85d587ffbf2908aa6cb7", + "xHandle": "donnshim", + "xUrl": "https://twitter.com/donnshim", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1086953", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "miquel1000", + "displayName": "MickeyS111", + "fid": 1086953, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b2231be-cf3a-4f9a-a9b9-d23a0fbc2500/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bee5ab67a6a52d6e9b3b375553a3cb0003259c6", + "etherscanUrl": "https://etherscan.io/address/0x9bee5ab67a6a52d6e9b3b375553a3cb0003259c6", + "xHandle": "mickeys111", + "xUrl": "https://twitter.com/mickeys111", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089478", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptonewbie22", + "displayName": "Steven", + "fid": 1089478, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61243c0bcf71ec21037fefbf447d2386bf5816c1", + "etherscanUrl": "https://etherscan.io/address/0x61243c0bcf71ec21037fefbf447d2386bf5816c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065412", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tedysdr09", + "displayName": "Tedy", + "fid": 1065412, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/320a8fc0-fa4c-452b-6cad-21f28a0f6000/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0096303dd04dee3d58e77d428e85d28c0ecf50ae", + "etherscanUrl": "https://etherscan.io/address/0x0096303dd04dee3d58e77d428e85d28c0ecf50ae", + "xHandle": "tedy_sdr", + "xUrl": "https://twitter.com/tedy_sdr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1051240", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emmanuelrich", + "displayName": "udo emmanuel", + "fid": 1051240, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1046693b-755c-4da7-4cae-a28150854b00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91a43a731a6a57221777315c845d7939d8f8af71", + "etherscanUrl": "https://etherscan.io/address/0x91a43a731a6a57221777315c845d7939d8f8af71", + "xHandle": "udoemmanuel2017", + "xUrl": "https://twitter.com/udoemmanuel2017", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062525", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mougakuin", + "displayName": "Mou", + "fid": 1062525, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3af7234e-d82c-4000-d8c5-1d448e6a7400/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2b087787ae4d0df2bb4c52e8a138768ca94f6de3", + "etherscanUrl": "https://etherscan.io/address/0x2b087787ae4d0df2bb4c52e8a138768ca94f6de3", + "xHandle": "xmeta_domains", + "xUrl": "https://twitter.com/xmeta_domains", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045210", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vitaeth", + "displayName": "Warp", + "fid": 1045210, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e09aff5-7950-4151-e453-b79e057bd000/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x816e3c83806c33ea981e91579c93c93ea1975c1c", + "etherscanUrl": "https://etherscan.io/address/0x816e3c83806c33ea981e91579c93c93ea1975c1c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1022195", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iceclank", + "displayName": "Ice Clank", + "fid": 1022195, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f03aafe-c011-4417-e70a-97144b6cd500/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58d953827e1c4167c0c989058e56867c53ec30f3", + "etherscanUrl": "https://etherscan.io/address/0x58d953827e1c4167c0c989058e56867c53ec30f3", + "xHandle": "clankice", + "xUrl": "https://twitter.com/clankice", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044018", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "frankovacs", + "displayName": "fran", + "fid": 1044018, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3619150-e86a-47ff-38fe-5b5837c15900/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc30ffac4b356e5ef020422d1bf822bd77f29cbde", + "etherscanUrl": "https://etherscan.io/address/0xc30ffac4b356e5ef020422d1bf822bd77f29cbde", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1030968", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun667", + "displayName": "minokun667", + "fid": 1030968, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d10a06bd-df5b-4779-266d-af8684801400/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9922bf1cd975c4835a4aaa43101b3ae634d396f0", + "etherscanUrl": "https://etherscan.io/address/0x9922bf1cd975c4835a4aaa43101b3ae634d396f0", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043217", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "horseinme", + "displayName": "BasedTitcoin", + "fid": 1043217, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/132396f2-8046-4684-691f-f7eb4449ae00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ebe852bc2c7b2fe6968d034656cb50dbbc6a038", + "etherscanUrl": "https://etherscan.io/address/0x9ebe852bc2c7b2fe6968d034656cb50dbbc6a038", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1034494", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yuyulll1", + "displayName": "yuyulll1", + "fid": 1034494, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c15b4533-592f-42a4-a850-141f6643e300/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x592365e90c50ca9f52c7fd8a4c4b48f592d79e2e", + "etherscanUrl": "https://etherscan.io/address/0x592365e90c50ca9f52c7fd8a4c4b48f592d79e2e", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1010713", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brubino.eth", + "displayName": "Beppe Rubino", + "fid": 1010713, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5562f47d-1c9f-48fb-edf8-834f38a93700/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafd8d4a1c9fb949b6b486571a52b16d45ece3517", + "etherscanUrl": "https://etherscan.io/address/0xafd8d4a1c9fb949b6b486571a52b16d45ece3517", + "xHandle": "brubino73", + "xUrl": "https://twitter.com/brubino73", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1033828", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun019", + "displayName": "minokun019", + "fid": 1033828, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3fadf7e0-2b2b-40de-330b-0c67b6c7f200/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf255e53b3fb96a8d1572673c4a791d701bb9113f", + "etherscanUrl": "https://etherscan.io/address/0xf255e53b3fb96a8d1572673c4a791d701bb9113f", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1030698", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun665", + "displayName": "minokun665", + "fid": 1030698, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06ea30b4-b77a-407e-e277-f063a4caec00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1891a16e591697eaf37f465052674620cc275053", + "etherscanUrl": "https://etherscan.io/address/0x1891a16e591697eaf37f465052674620cc275053", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1032091", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun669", + "displayName": "minokun669", + "fid": 1032091, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32a0072d-3189-4f0c-5a87-685e02e16800/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40883fe7813e9cb500ff18d25d72b93b94cc404d", + "etherscanUrl": "https://etherscan.io/address/0x40883fe7813e9cb500ff18d25d72b93b94cc404d", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1032668", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun404", + "displayName": "minokun404", + "fid": 1032668, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c4ea000-ae00-483c-38eb-0a80cd8deb00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2a412d3ef21007c96172b81b584f3ac567aef46", + "etherscanUrl": "https://etherscan.io/address/0xc2a412d3ef21007c96172b81b584f3ac567aef46", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1032369", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "minokun402", + "displayName": "minokun402", + "fid": 1032369, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b70f5d0f-fb03-4127-4894-bc792c781600/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf605f69625b04dbe25686683299dc283ccd29832", + "etherscanUrl": "https://etherscan.io/address/0xf605f69625b04dbe25686683299dc283ccd29832", + "xHandle": "makerdao2023", + "xUrl": "https://twitter.com/makerdao2023", + "githubHandle": null, + "githubUrl": null + } + ], + "tokenSymbol": null, + "tokenDecimals": null, + "lastUpdatedTimestamp": "2025-11-17T21:47:14.470Z", + "lastFetchSettings": { + "source": "farcasterChannel", + "channelName": "clanker", + "channelFilter": "all" + } +} diff --git a/src/config/clanker/initialSpaces/exploreTabs/clanker.json b/src/config/clanker/initialSpaces/exploreTabs/clanker.json new file mode 100644 index 000000000..ab0937188 --- /dev/null +++ b/src/config/clanker/initialSpaces/exploreTabs/clanker.json @@ -0,0 +1,18918 @@ +{ + "members": [ + { + "address": "0xc1a6fbedae68e1472dbb91fe29b51f7a0bd44f97", + "balanceRaw": "56317028663018893878469", + "balanceFormatted": "56317.028663018893878469", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc1a6fbedae68e1472dbb91fe29b51f7a0bd44f97", + "etherscanUrl": "https://etherscan.io/address/0xc1a6fbedae68e1472dbb91fe29b51f7a0bd44f97", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc983bf6bc9d7062a879b47b5dcf12caa76761324", + "balanceRaw": "45465504128586018863760", + "balanceFormatted": "45465.50412858601886376", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc983bf6bc9d7062a879b47b5dcf12caa76761324", + "etherscanUrl": "https://etherscan.io/address/0xc983bf6bc9d7062a879b47b5dcf12caa76761324", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60787d9820984dab3bfbf5ad0ed5152444a56f48", + "balanceRaw": "33301751307740739128373", + "balanceFormatted": "33301.751307740739128373", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60787d9820984dab3bfbf5ad0ed5152444a56f48", + "etherscanUrl": "https://etherscan.io/address/0x60787d9820984dab3bfbf5ad0ed5152444a56f48", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xffa8db7b38579e6a2d14f9b347a9ace4d044cd54", + "balanceRaw": "27973505644780000000000", + "balanceFormatted": "27973.50564478", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xffa8db7b38579e6a2d14f9b347a9ace4d044cd54", + "etherscanUrl": "https://etherscan.io/address/0xffa8db7b38579e6a2d14f9b347a9ace4d044cd54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x301f742573c76ee107cb8e263f2d5c009ecbfb28", + "balanceRaw": "25111107960689975853613", + "balanceFormatted": "25111.107960689975853613", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x301f742573c76ee107cb8e263f2d5c009ecbfb28", + "etherscanUrl": "https://etherscan.io/address/0x301f742573c76ee107cb8e263f2d5c009ecbfb28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c716d252b53891753de883894ff29a9ebee0f54", + "balanceRaw": "19965418590000000000000", + "balanceFormatted": "19965.41859", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c716d252b53891753de883894ff29a9ebee0f54", + "etherscanUrl": "https://etherscan.io/address/0x3c716d252b53891753de883894ff29a9ebee0f54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x351a910d4a853870e23bfd7761ee720a43ddb889", + "balanceRaw": "18499420695598908776867", + "balanceFormatted": "18499.420695598908776867", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x351a910d4a853870e23bfd7761ee720a43ddb889", + "etherscanUrl": "https://etherscan.io/address/0x351a910d4a853870e23bfd7761ee720a43ddb889", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73d8bd54f7cf5fab43fe4ef40a62d390644946db", + "balanceRaw": "17632494960921718683375", + "balanceFormatted": "17632.494960921718683375", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73d8bd54f7cf5fab43fe4ef40a62d390644946db", + "etherscanUrl": "https://etherscan.io/address/0x73d8bd54f7cf5fab43fe4ef40a62d390644946db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8d4ab2a3e89eadfdc729204adf863a0bfc7746f6", + "balanceRaw": "15519819463824622498812", + "balanceFormatted": "15519.819463824622498812", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d4ab2a3e89eadfdc729204adf863a0bfc7746f6", + "etherscanUrl": "https://etherscan.io/address/0x8d4ab2a3e89eadfdc729204adf863a0bfc7746f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xada74cabf4716d83e1771a3ca427fecc9be8901e", + "balanceRaw": "15040991805940295170152", + "balanceFormatted": "15040.991805940295170152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xada74cabf4716d83e1771a3ca427fecc9be8901e", + "etherscanUrl": "https://etherscan.io/address/0xada74cabf4716d83e1771a3ca427fecc9be8901e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4e3ae00e8323558fa5cac04b152238924aa31b60", + "balanceRaw": "13563381171433224107039", + "balanceFormatted": "13563.381171433224107039", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e3ae00e8323558fa5cac04b152238924aa31b60", + "etherscanUrl": "https://etherscan.io/address/0x4e3ae00e8323558fa5cac04b152238924aa31b60", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc024d81e80b010b7f941aca53e9d2af7f588d5fc", + "balanceRaw": "13093683024644407894498", + "balanceFormatted": "13093.683024644407894498", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc024d81e80b010b7f941aca53e9d2af7f588d5fc", + "etherscanUrl": "https://etherscan.io/address/0xc024d81e80b010b7f941aca53e9d2af7f588d5fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "balanceRaw": "13000000000000000000000", + "balanceFormatted": "13000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "etherscanUrl": "https://etherscan.io/address/0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0d0707963952f2fba59dd06f2b425ace40b492fe", + "balanceRaw": "10391176962313534157568", + "balanceFormatted": "10391.176962313534157568", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d0707963952f2fba59dd06f2b425ace40b492fe", + "etherscanUrl": "https://etherscan.io/address/0x0d0707963952f2fba59dd06f2b425ace40b492fe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x58918db69302e21e0478c97f20de9153b9ee92d6", + "balanceRaw": "10039028152250400714088", + "balanceFormatted": "10039.028152250400714088", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58918db69302e21e0478c97f20de9153b9ee92d6", + "etherscanUrl": "https://etherscan.io/address/0x58918db69302e21e0478c97f20de9153b9ee92d6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x916be95459f406ed8a8a4b4b957c6c0d349d523f", + "balanceRaw": "10000824480988407844846", + "balanceFormatted": "10000.824480988407844846", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x916be95459f406ed8a8a4b4b957c6c0d349d523f", + "etherscanUrl": "https://etherscan.io/address/0x916be95459f406ed8a8a4b4b957c6c0d349d523f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd2f2c63961f63b16082e275e9ba49a474633e672", + "balanceRaw": "9301147025274116379515", + "balanceFormatted": "9301.147025274116379515", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2f2c63961f63b16082e275e9ba49a474633e672", + "etherscanUrl": "https://etherscan.io/address/0xd2f2c63961f63b16082e275e9ba49a474633e672", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f92fa1f814cadad5d6510af617b420d6be7af05", + "balanceRaw": "9244725609162634700419", + "balanceFormatted": "9244.725609162634700419", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f92fa1f814cadad5d6510af617b420d6be7af05", + "etherscanUrl": "https://etherscan.io/address/0x6f92fa1f814cadad5d6510af617b420d6be7af05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x28b7c3553461a726b70d73dc46b2db715e36583a", + "balanceRaw": "8610407980341901303029", + "balanceFormatted": "8610.407980341901303029", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x28b7c3553461a726b70d73dc46b2db715e36583a", + "etherscanUrl": "https://etherscan.io/address/0x28b7c3553461a726b70d73dc46b2db715e36583a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf855aa266f7106a1765c1349c434fbca2fb71af3", + "balanceRaw": "8341373477136586680813", + "balanceFormatted": "8341.373477136586680813", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf855aa266f7106a1765c1349c434fbca2fb71af3", + "etherscanUrl": "https://etherscan.io/address/0xf855aa266f7106a1765c1349c434fbca2fb71af3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd23fe2db317e1a96454a2d1c7e8fc0dbf19bb000", + "balanceRaw": "8053371746816659513061", + "balanceFormatted": "8053.371746816659513061", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd23fe2db317e1a96454a2d1c7e8fc0dbf19bb000", + "etherscanUrl": "https://etherscan.io/address/0xd23fe2db317e1a96454a2d1c7e8fc0dbf19bb000", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5deb0821cfa27fc71708b8807d572ac9c7816a19", + "balanceRaw": "7640706311840565959900", + "balanceFormatted": "7640.7063118405659599", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5deb0821cfa27fc71708b8807d572ac9c7816a19", + "etherscanUrl": "https://etherscan.io/address/0x5deb0821cfa27fc71708b8807d572ac9c7816a19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1c887f42cfdecf8a250d96ead42d2c105851f80f", + "balanceRaw": "7575683300282082491293", + "balanceFormatted": "7575.683300282082491293", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c887f42cfdecf8a250d96ead42d2c105851f80f", + "etherscanUrl": "https://etherscan.io/address/0x1c887f42cfdecf8a250d96ead42d2c105851f80f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc0dd7ac8113fdad11a68a2544e57ef30ccdcbbcb", + "balanceRaw": "7149391062156327430000", + "balanceFormatted": "7149.39106215632743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0dd7ac8113fdad11a68a2544e57ef30ccdcbbcb", + "etherscanUrl": "https://etherscan.io/address/0xc0dd7ac8113fdad11a68a2544e57ef30ccdcbbcb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc314d77cab5f7c62845c36d5e28ddeea0e94aa03", + "balanceRaw": "7149391062156327430000", + "balanceFormatted": "7149.39106215632743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc314d77cab5f7c62845c36d5e28ddeea0e94aa03", + "etherscanUrl": "https://etherscan.io/address/0xc314d77cab5f7c62845c36d5e28ddeea0e94aa03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd544799e6514d9568ee7ee7c7362307bcb102f64", + "balanceRaw": "7149391062156327430000", + "balanceFormatted": "7149.39106215632743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd544799e6514d9568ee7ee7c7362307bcb102f64", + "etherscanUrl": "https://etherscan.io/address/0xd544799e6514d9568ee7ee7c7362307bcb102f64", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf136f91c66ad1161fe03b3325dcc30eeb5edb02e", + "balanceRaw": "7149391062156327430000", + "balanceFormatted": "7149.39106215632743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf136f91c66ad1161fe03b3325dcc30eeb5edb02e", + "etherscanUrl": "https://etherscan.io/address/0xf136f91c66ad1161fe03b3325dcc30eeb5edb02e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3fda366788bffd025774f23300fd64c5a5e70d25", + "balanceRaw": "6939614327160116839200", + "balanceFormatted": "6939.6143271601168392", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fda366788bffd025774f23300fd64c5a5e70d25", + "etherscanUrl": "https://etherscan.io/address/0x3fda366788bffd025774f23300fd64c5a5e70d25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e40b238289bb0bcf59a71639f3e21729e297964", + "balanceRaw": "6654468437111516198740", + "balanceFormatted": "6654.46843711151619874", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e40b238289bb0bcf59a71639f3e21729e297964", + "etherscanUrl": "https://etherscan.io/address/0x5e40b238289bb0bcf59a71639f3e21729e297964", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x498581ff718922c3f8e6a244956af099b2652b2b", + "balanceRaw": "6257045038829559072380", + "balanceFormatted": "6257.04503882955907238", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x498581ff718922c3f8e6a244956af099b2652b2b", + "etherscanUrl": "https://etherscan.io/address/0x498581ff718922c3f8e6a244956af099b2652b2b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0e86aaf378c4082c1ede2448b0f30c24b1e0e5fc", + "balanceRaw": "5840073138193857183753", + "balanceFormatted": "5840.073138193857183753", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e86aaf378c4082c1ede2448b0f30c24b1e0e5fc", + "etherscanUrl": "https://etherscan.io/address/0x0e86aaf378c4082c1ede2448b0f30c24b1e0e5fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf2043109af60d2e1e9a0321fd8d6ec1f28baa727", + "balanceRaw": "5651624636362457748258", + "balanceFormatted": "5651.624636362457748258", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2043109af60d2e1e9a0321fd8d6ec1f28baa727", + "etherscanUrl": "https://etherscan.io/address/0xf2043109af60d2e1e9a0321fd8d6ec1f28baa727", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x892557865fead1a207b46bb8d7c8dc6b6d149faa", + "balanceRaw": "5079724202461255704173", + "balanceFormatted": "5079.724202461255704173", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x892557865fead1a207b46bb8d7c8dc6b6d149faa", + "etherscanUrl": "https://etherscan.io/address/0x892557865fead1a207b46bb8d7c8dc6b6d149faa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x009913a28a9ac6c881f05c992b697f76ef526bbc", + "balanceRaw": "5009749224510100234356", + "balanceFormatted": "5009.749224510100234356", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x009913a28a9ac6c881f05c992b697f76ef526bbc", + "etherscanUrl": "https://etherscan.io/address/0x009913a28a9ac6c881f05c992b697f76ef526bbc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaba8a38902c9837f89e287131c5e0ee8951ea73a", + "balanceRaw": "5000000000000000000000", + "balanceFormatted": "5000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaba8a38902c9837f89e287131c5e0ee8951ea73a", + "etherscanUrl": "https://etherscan.io/address/0xaba8a38902c9837f89e287131c5e0ee8951ea73a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7dafba1d69f6c01ae7567ffd7b046ca03b706f83", + "balanceRaw": "4505048845000000000000", + "balanceFormatted": "4505.048845", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7dafba1d69f6c01ae7567ffd7b046ca03b706f83", + "etherscanUrl": "https://etherscan.io/address/0x7dafba1d69f6c01ae7567ffd7b046ca03b706f83", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x20fe51a9229eef2cf8ad9e89d91cab9312cf3b7a", + "balanceRaw": "4473454965645866920794", + "balanceFormatted": "4473.454965645866920794", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20fe51a9229eef2cf8ad9e89d91cab9312cf3b7a", + "etherscanUrl": "https://etherscan.io/address/0x20fe51a9229eef2cf8ad9e89d91cab9312cf3b7a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2933782b5a8d72f2754103d1489614f29bfa4625", + "balanceRaw": "4309229874917509205981", + "balanceFormatted": "4309.229874917509205981", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2933782b5a8d72f2754103d1489614f29bfa4625", + "etherscanUrl": "https://etherscan.io/address/0x2933782b5a8d72f2754103d1489614f29bfa4625", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3036", + "balanceRaw": "4196630273020396143351", + "balanceFormatted": "4196.630273020396143351", + "lastTransferAt": null, + "username": "dwayne", + "displayName": "Dwayne 'The Jock' Ronson", + "fid": 3036, + "followers": 5825, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/322bc667-a666-4670-d36c-cce86689ef00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f75005973b6395f82e2026af37e9d6864cd0798", + "etherscanUrl": "https://etherscan.io/address/0x8f75005973b6395f82e2026af37e9d6864cd0798", + "xHandle": "dwaynetjr", + "xUrl": "https://twitter.com/dwaynetjr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf60a605eda07952f691a1d86171a06539c931988", + "balanceRaw": "4106565890000000000000", + "balanceFormatted": "4106.56589", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf60a605eda07952f691a1d86171a06539c931988", + "etherscanUrl": "https://etherscan.io/address/0xf60a605eda07952f691a1d86171a06539c931988", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc163e65275368b3145a1a386737d0cd6127c1e2", + "balanceRaw": "4073646871070280951559", + "balanceFormatted": "4073.646871070280951559", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc163e65275368b3145a1a386737d0cd6127c1e2", + "etherscanUrl": "https://etherscan.io/address/0xdc163e65275368b3145a1a386737d0cd6127c1e2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa", + "balanceRaw": "4032087925000000000000", + "balanceFormatted": "4032.087925", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa", + "etherscanUrl": "https://etherscan.io/address/0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfcd65cf309493762135d370fdbb1ca10b1ec74a2", + "balanceRaw": "4023338931765799317974", + "balanceFormatted": "4023.338931765799317974", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcd65cf309493762135d370fdbb1ca10b1ec74a2", + "etherscanUrl": "https://etherscan.io/address/0xfcd65cf309493762135d370fdbb1ca10b1ec74a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb46ddd09146cf8c59c275f4cf277e8de6868f838", + "balanceRaw": "4000000000000000000000", + "balanceFormatted": "4000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb46ddd09146cf8c59c275f4cf277e8de6868f838", + "etherscanUrl": "https://etherscan.io/address/0xb46ddd09146cf8c59c275f4cf277e8de6868f838", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf131022f41c0d95378a550397f5f1af47cd5900e", + "balanceRaw": "4000000000000000000000", + "balanceFormatted": "4000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf131022f41c0d95378a550397f5f1af47cd5900e", + "etherscanUrl": "https://etherscan.io/address/0xf131022f41c0d95378a550397f5f1af47cd5900e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5661f2740e55c325e5a219cd537bc1fb954e1c81", + "balanceRaw": "3944377692008478371801", + "balanceFormatted": "3944.377692008478371801", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5661f2740e55c325e5a219cd537bc1fb954e1c81", + "etherscanUrl": "https://etherscan.io/address/0x5661f2740e55c325e5a219cd537bc1fb954e1c81", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaa8fc25fda37281f07ebb013030ad5070597e54d", + "balanceRaw": "3877917124413381356337", + "balanceFormatted": "3877.917124413381356337", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa8fc25fda37281f07ebb013030ad5070597e54d", + "etherscanUrl": "https://etherscan.io/address/0xaa8fc25fda37281f07ebb013030ad5070597e54d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0aa3f4f5d7b5769c1f1d6de2dcab56e431bc51d3", + "balanceRaw": "3826416178479899791681", + "balanceFormatted": "3826.416178479899791681", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0aa3f4f5d7b5769c1f1d6de2dcab56e431bc51d3", + "etherscanUrl": "https://etherscan.io/address/0x0aa3f4f5d7b5769c1f1d6de2dcab56e431bc51d3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe1673847ce40765cf3687fa7eccab0f8ac878e47", + "balanceRaw": "3792117990868523330774", + "balanceFormatted": "3792.117990868523330774", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1673847ce40765cf3687fa7eccab0f8ac878e47", + "etherscanUrl": "https://etherscan.io/address/0xe1673847ce40765cf3687fa7eccab0f8ac878e47", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5d2bb9e5a29657935010fdf2a911e957d51b6c51", + "balanceRaw": "3777042648039074490577", + "balanceFormatted": "3777.042648039074490577", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d2bb9e5a29657935010fdf2a911e957d51b6c51", + "etherscanUrl": "https://etherscan.io/address/0x5d2bb9e5a29657935010fdf2a911e957d51b6c51", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed0526c047edecbcbd9cd7531c2ea86cf9566f5d", + "balanceRaw": "3734709247967221641564", + "balanceFormatted": "3734.709247967221641564", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed0526c047edecbcbd9cd7531c2ea86cf9566f5d", + "etherscanUrl": "https://etherscan.io/address/0xed0526c047edecbcbd9cd7531c2ea86cf9566f5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd3e0341b361134014e0c89378b3e36bc5020cd97", + "balanceRaw": "3676387158399862425919", + "balanceFormatted": "3676.387158399862425919", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3e0341b361134014e0c89378b3e36bc5020cd97", + "etherscanUrl": "https://etherscan.io/address/0xd3e0341b361134014e0c89378b3e36bc5020cd97", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x056c0ace599ff4b6a5f3e252794c541c05812be6", + "balanceRaw": "3636858116964210804166", + "balanceFormatted": "3636.858116964210804166", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x056c0ace599ff4b6a5f3e252794c541c05812be6", + "etherscanUrl": "https://etherscan.io/address/0x056c0ace599ff4b6a5f3e252794c541c05812be6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa591d0b5fd0fc0fd8a0976c68298f6b28208e871", + "balanceRaw": "3454305283181306945899", + "balanceFormatted": "3454.305283181306945899", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa591d0b5fd0fc0fd8a0976c68298f6b28208e871", + "etherscanUrl": "https://etherscan.io/address/0xa591d0b5fd0fc0fd8a0976c68298f6b28208e871", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6455327f820edd69c4cd665b995e0fec679d7f9e", + "balanceRaw": "3383000000000000000000", + "balanceFormatted": "3383", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6455327f820edd69c4cd665b995e0fec679d7f9e", + "etherscanUrl": "https://etherscan.io/address/0x6455327f820edd69c4cd665b995e0fec679d7f9e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0646f27c9c7931e24260cfb6cc0beb3c71a136e8", + "balanceRaw": "3333365027364753326010", + "balanceFormatted": "3333.36502736475332601", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0646f27c9c7931e24260cfb6cc0beb3c71a136e8", + "etherscanUrl": "https://etherscan.io/address/0x0646f27c9c7931e24260cfb6cc0beb3c71a136e8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x18b0f4547a89fe4c5fe84f258bea3601fa281e9f", + "balanceRaw": "3191540716508088017571", + "balanceFormatted": "3191.540716508088017571", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18b0f4547a89fe4c5fe84f258bea3601fa281e9f", + "etherscanUrl": "https://etherscan.io/address/0x18b0f4547a89fe4c5fe84f258bea3601fa281e9f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec67ad9721f3856ec8c474032fd722122f91fdb8", + "balanceRaw": "3111318145735955095361", + "balanceFormatted": "3111.318145735955095361", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec67ad9721f3856ec8c474032fd722122f91fdb8", + "etherscanUrl": "https://etherscan.io/address/0xec67ad9721f3856ec8c474032fd722122f91fdb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4767d1b638b0c5898f2ae9382ee8c7fd4883f857", + "balanceRaw": "3080137628014511140600", + "balanceFormatted": "3080.1376280145111406", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4767d1b638b0c5898f2ae9382ee8c7fd4883f857", + "etherscanUrl": "https://etherscan.io/address/0x4767d1b638b0c5898f2ae9382ee8c7fd4883f857", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbee3717cce30e95cc3f4e1a8b52e47f3b5f69d27", + "balanceRaw": "3000284314353323141168", + "balanceFormatted": "3000.284314353323141168", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbee3717cce30e95cc3f4e1a8b52e47f3b5f69d27", + "etherscanUrl": "https://etherscan.io/address/0xbee3717cce30e95cc3f4e1a8b52e47f3b5f69d27", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a5adc20b7e17d6535e34ff31bc9549ac2771286", + "balanceRaw": "2987737809687290003447", + "balanceFormatted": "2987.737809687290003447", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a5adc20b7e17d6535e34ff31bc9549ac2771286", + "etherscanUrl": "https://etherscan.io/address/0x8a5adc20b7e17d6535e34ff31bc9549ac2771286", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd0bb0c1972a1e6585525e1c4267d583b5fca7de4", + "balanceRaw": "2955009627482435464497", + "balanceFormatted": "2955.009627482435464497", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd0bb0c1972a1e6585525e1c4267d583b5fca7de4", + "etherscanUrl": "https://etherscan.io/address/0xd0bb0c1972a1e6585525e1c4267d583b5fca7de4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x50d5d7ae0d61d1de5ebbe33e9f7e5efbb5d091a0", + "balanceRaw": "2945029656217627699406", + "balanceFormatted": "2945.029656217627699406", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50d5d7ae0d61d1de5ebbe33e9f7e5efbb5d091a0", + "etherscanUrl": "https://etherscan.io/address/0x50d5d7ae0d61d1de5ebbe33e9f7e5efbb5d091a0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1015735", + "balanceRaw": "2903638033979413440318", + "balanceFormatted": "2903.638033979413440318", + "lastTransferAt": null, + "username": "theneetguy.eth", + "displayName": "The Neet Guy", + "fid": 1015735, + "followers": 547, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/820c1a61-94b0-4ad0-b74f-eb2066a82c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9db704bae6a8f4582cd79b3a6eb88211aad936b3", + "etherscanUrl": "https://etherscan.io/address/0x9db704bae6a8f4582cd79b3a6eb88211aad936b3", + "xHandle": "theneetguy", + "xUrl": "https://twitter.com/theneetguy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6ca37e08760ed7acd4d1d4d88918d3aa1b8e5618", + "balanceRaw": "2779576093804788696557", + "balanceFormatted": "2779.576093804788696557", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ca37e08760ed7acd4d1d4d88918d3aa1b8e5618", + "etherscanUrl": "https://etherscan.io/address/0x6ca37e08760ed7acd4d1d4d88918d3aa1b8e5618", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcb52f68714c5a09a4c36e9a73647270c504499f7", + "balanceRaw": "2750000000000000000000", + "balanceFormatted": "2750", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb52f68714c5a09a4c36e9a73647270c504499f7", + "etherscanUrl": "https://etherscan.io/address/0xcb52f68714c5a09a4c36e9a73647270c504499f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbc90bd26b6f69b7b9b7698ba3c4b2c7f76d710af", + "balanceRaw": "2727099154263089917818", + "balanceFormatted": "2727.099154263089917818", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc90bd26b6f69b7b9b7698ba3c4b2c7f76d710af", + "etherscanUrl": "https://etherscan.io/address/0xbc90bd26b6f69b7b9b7698ba3c4b2c7f76d710af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_6208", + "balanceRaw": "2714745904252595926241", + "balanceFormatted": "2714.745904252595926241", + "lastTransferAt": null, + "username": "wwarren", + "displayName": "Will Warren", + "fid": 6208, + "followers": 4532, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ac8eae9-6273-46c2-1579-87092e894000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c0e301fca17ffe6f5f97fd4719a616004b6050a", + "etherscanUrl": "https://etherscan.io/address/0x3c0e301fca17ffe6f5f97fd4719a616004b6050a", + "xHandle": "willwarren", + "xUrl": "https://twitter.com/willwarren", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16512", + "balanceRaw": "2708194202977082875727", + "balanceFormatted": "2708.194202977082875727", + "lastTransferAt": null, + "username": "0xbamboostrong", + "displayName": "bamboostrong", + "fid": 16512, + "followers": 1722, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7dff3ec1-191f-4c8e-a84d-d562c2e69d00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x133bd0684e97d0a46b9adffb4af5de36c92a9256", + "etherscanUrl": "https://etherscan.io/address/0x133bd0684e97d0a46b9adffb4af5de36c92a9256", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ae0b5594da29f0d3e08bbcdf007579d3bb5fd52", + "balanceRaw": "2624539898035786916303", + "balanceFormatted": "2624.539898035786916303", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ae0b5594da29f0d3e08bbcdf007579d3bb5fd52", + "etherscanUrl": "https://etherscan.io/address/0x0ae0b5594da29f0d3e08bbcdf007579d3bb5fd52", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0112ecdc00582fd622b0ae8b2c55001727f97946", + "balanceRaw": "2572636798312073373085", + "balanceFormatted": "2572.636798312073373085", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0112ecdc00582fd622b0ae8b2c55001727f97946", + "etherscanUrl": "https://etherscan.io/address/0x0112ecdc00582fd622b0ae8b2c55001727f97946", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "balanceRaw": "2535354456969673000000", + "balanceFormatted": "2535.354456969673", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "etherscanUrl": "https://etherscan.io/address/0x97b9d2102a9a65a26e1ee82d59e42d1b73b68689", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd17e7602be8f78aeb62d769286784d6dd9a56742", + "balanceRaw": "2530656722100919418073", + "balanceFormatted": "2530.656722100919418073", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd17e7602be8f78aeb62d769286784d6dd9a56742", + "etherscanUrl": "https://etherscan.io/address/0xd17e7602be8f78aeb62d769286784d6dd9a56742", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb11f0625dcfb71d8095f019aecf1815ca5746776", + "balanceRaw": "2381032432271135067606", + "balanceFormatted": "2381.032432271135067606", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb11f0625dcfb71d8095f019aecf1815ca5746776", + "etherscanUrl": "https://etherscan.io/address/0xb11f0625dcfb71d8095f019aecf1815ca5746776", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe907b2f99e995926db9d3e0d307454c0a94ea220", + "balanceRaw": "2373598016647386713345", + "balanceFormatted": "2373.598016647386713345", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe907b2f99e995926db9d3e0d307454c0a94ea220", + "etherscanUrl": "https://etherscan.io/address/0xe907b2f99e995926db9d3e0d307454c0a94ea220", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930130", + "balanceRaw": "2371674303209009140903", + "balanceFormatted": "2371.674303209009140903", + "lastTransferAt": null, + "username": "bananabob", + "displayName": "Geth", + "fid": 930130, + "followers": 458, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42383698-4bf4-4e4d-3b8c-5053ebe24800/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x938ce09a1f21123d3d8af975525238313d0220a7", + "etherscanUrl": "https://etherscan.io/address/0x938ce09a1f21123d3d8af975525238313d0220a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x46162f7fadd5f3245300a1986ab4610666c57f65", + "balanceRaw": "2332933859093269838133", + "balanceFormatted": "2332.933859093269838133", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46162f7fadd5f3245300a1986ab4610666c57f65", + "etherscanUrl": "https://etherscan.io/address/0x46162f7fadd5f3245300a1986ab4610666c57f65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd13da05b9288ba4961973110594bd0fe3428791f", + "balanceRaw": "2303842119855392014535", + "balanceFormatted": "2303.842119855392014535", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd13da05b9288ba4961973110594bd0fe3428791f", + "etherscanUrl": "https://etherscan.io/address/0xd13da05b9288ba4961973110594bd0fe3428791f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x30308bf960bea8167146c86696fa98f70f944e2c", + "balanceRaw": "2298009522903461053295", + "balanceFormatted": "2298.009522903461053295", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30308bf960bea8167146c86696fa98f70f944e2c", + "etherscanUrl": "https://etherscan.io/address/0x30308bf960bea8167146c86696fa98f70f944e2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x14a0d8a5b419be59304bb5463339aacd37a5e635", + "balanceRaw": "2250766372659690354078", + "balanceFormatted": "2250.766372659690354078", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14a0d8a5b419be59304bb5463339aacd37a5e635", + "etherscanUrl": "https://etherscan.io/address/0x14a0d8a5b419be59304bb5463339aacd37a5e635", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcb332a38a9770a99e0f986eb821f37190ad8cff3", + "balanceRaw": "2243269324726458031174", + "balanceFormatted": "2243.269324726458031174", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb332a38a9770a99e0f986eb821f37190ad8cff3", + "etherscanUrl": "https://etherscan.io/address/0xcb332a38a9770a99e0f986eb821f37190ad8cff3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e90590542e36df645696f161abdc526bfb6d247", + "balanceRaw": "2161157034526076518260", + "balanceFormatted": "2161.15703452607651826", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e90590542e36df645696f161abdc526bfb6d247", + "etherscanUrl": "https://etherscan.io/address/0x7e90590542e36df645696f161abdc526bfb6d247", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeac18ab911a688772ff832d0d8b06be381ef1bfd", + "balanceRaw": "2160000000000000000000", + "balanceFormatted": "2160", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeac18ab911a688772ff832d0d8b06be381ef1bfd", + "etherscanUrl": "https://etherscan.io/address/0xeac18ab911a688772ff832d0d8b06be381ef1bfd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x75fb62aa7d072a6a96692b207278a760e5df42cc", + "balanceRaw": "2113533707128123166740", + "balanceFormatted": "2113.53370712812316674", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75fb62aa7d072a6a96692b207278a760e5df42cc", + "etherscanUrl": "https://etherscan.io/address/0x75fb62aa7d072a6a96692b207278a760e5df42cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x58da1b5811ee7b1a2797eca47a5cd52ec131228f", + "balanceRaw": "2044147611336621281898", + "balanceFormatted": "2044.147611336621281898", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58da1b5811ee7b1a2797eca47a5cd52ec131228f", + "etherscanUrl": "https://etherscan.io/address/0x58da1b5811ee7b1a2797eca47a5cd52ec131228f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9933", + "balanceRaw": "2035273564067190950420", + "balanceFormatted": "2035.27356406719095042", + "lastTransferAt": null, + "username": "m00npapi.eth", + "displayName": "m00npapi.eth", + "fid": 9933, + "followers": 22628, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e8e6cb7-8fea-40f9-1dc7-47810f634700/original", + "ensName": "m00npapi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbf4977f1295454cb46d95fe7d8e1d99e32d8aed1", + "etherscanUrl": "https://etherscan.io/address/0xbf4977f1295454cb46d95fe7d8e1d99e32d8aed1", + "xHandle": "m00npapi", + "xUrl": "https://twitter.com/m00npapi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe6c1a7c3b84f1871c30d14aeb443b667ff71c410", + "balanceRaw": "2009051250748479691600", + "balanceFormatted": "2009.0512507484796916", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6c1a7c3b84f1871c30d14aeb443b667ff71c410", + "etherscanUrl": "https://etherscan.io/address/0xe6c1a7c3b84f1871c30d14aeb443b667ff71c410", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4f835c3bbe19b569fbfceabc42c95631f354b532", + "balanceRaw": "2000000000775671234149", + "balanceFormatted": "2000.000000775671234149", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f835c3bbe19b569fbfceabc42c95631f354b532", + "etherscanUrl": "https://etherscan.io/address/0x4f835c3bbe19b569fbfceabc42c95631f354b532", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9824697f7c12cabada9b57842060931c48dea969", + "balanceRaw": "1999997245643576986856", + "balanceFormatted": "1999.997245643576986856", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9824697f7c12cabada9b57842060931c48dea969", + "etherscanUrl": "https://etherscan.io/address/0x9824697f7c12cabada9b57842060931c48dea969", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2da9580235d1dc096919f5c231500e506351c55d", + "balanceRaw": "1992727177184776552674", + "balanceFormatted": "1992.727177184776552674", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2da9580235d1dc096919f5c231500e506351c55d", + "etherscanUrl": "https://etherscan.io/address/0x2da9580235d1dc096919f5c231500e506351c55d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7333d779c6ecdfc4507a53706b0e173bd086a18", + "balanceRaw": "1923309287668906454528", + "balanceFormatted": "1923.309287668906454528", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7333d779c6ecdfc4507a53706b0e173bd086a18", + "etherscanUrl": "https://etherscan.io/address/0xb7333d779c6ecdfc4507a53706b0e173bd086a18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_987012", + "balanceRaw": "1814104724423308838077", + "balanceFormatted": "1814.104724423308838077", + "lastTransferAt": null, + "username": "rafflemaster", + "displayName": "Raffle Bot", + "fid": 987012, + "followers": 17, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcbd8e7e-ab5a-4a8f-0efa-4cf2705f8400/rectcrop3", + "ensName": "rafflemaster.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdf948a0ab481b952ade31cae4e2e348509a66c56", + "etherscanUrl": "https://etherscan.io/address/0xdf948a0ab481b952ade31cae4e2e348509a66c56", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1338", + "balanceRaw": "1799999760340202812579", + "balanceFormatted": "1799.999760340202812579", + "lastTransferAt": null, + "username": "bli.eth", + "displayName": "Brian Li 🍊👾", + "fid": 1338, + "followers": 5594, + "pfpUrl": "https://i.imgur.com/84EUSLS.jpg", + "ensName": "bli.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x033707e9847c41515e337d16e01addf18cd9adc8", + "etherscanUrl": "https://etherscan.io/address/0x033707e9847c41515e337d16e01addf18cd9adc8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdd3a68eb8324c3ff54f39fc4bca933d11812ca41", + "balanceRaw": "1782872192308190882077", + "balanceFormatted": "1782.872192308190882077", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd3a68eb8324c3ff54f39fc4bca933d11812ca41", + "etherscanUrl": "https://etherscan.io/address/0xdd3a68eb8324c3ff54f39fc4bca933d11812ca41", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xef73c5e0cba2d03a7dd66012ca4375502ef6f7aa", + "balanceRaw": "1779864792618147056595", + "balanceFormatted": "1779.864792618147056595", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef73c5e0cba2d03a7dd66012ca4375502ef6f7aa", + "etherscanUrl": "https://etherscan.io/address/0xef73c5e0cba2d03a7dd66012ca4375502ef6f7aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x44df085447dbebcf69c6675c3b8a795c7fdeb3f4", + "balanceRaw": "1776041150663203626767", + "balanceFormatted": "1776.041150663203626767", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44df085447dbebcf69c6675c3b8a795c7fdeb3f4", + "etherscanUrl": "https://etherscan.io/address/0x44df085447dbebcf69c6675c3b8a795c7fdeb3f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0019ce38fad6767c15f124591395f23ffff08412", + "balanceRaw": "1752585611759236007937", + "balanceFormatted": "1752.585611759236007937", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0019ce38fad6767c15f124591395f23ffff08412", + "etherscanUrl": "https://etherscan.io/address/0x0019ce38fad6767c15f124591395f23ffff08412", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_884391", + "balanceRaw": "1725213850118366982895", + "balanceFormatted": "1725.213850118366982895", + "lastTransferAt": null, + "username": "bluezingboing", + "displayName": "Alexandre Gagnon", + "fid": 884391, + "followers": 4, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/25769ed1-24ed-45a5-fec4-7d755e583d00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5688cbfd16d49c16d89f24f8787d264731ee1273", + "etherscanUrl": "https://etherscan.io/address/0x5688cbfd16d49c16d89f24f8787d264731ee1273", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd56de11dcc755b880633cd7ea73c9a8c215eb8b5", + "balanceRaw": "1724970931129266138215", + "balanceFormatted": "1724.970931129266138215", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd56de11dcc755b880633cd7ea73c9a8c215eb8b5", + "etherscanUrl": "https://etherscan.io/address/0xd56de11dcc755b880633cd7ea73c9a8c215eb8b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdb3176bb2ba5d0004ed21787adaf563e7bd812d5", + "balanceRaw": "1702661065434925056411", + "balanceFormatted": "1702.661065434925056411", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb3176bb2ba5d0004ed21787adaf563e7bd812d5", + "etherscanUrl": "https://etherscan.io/address/0xdb3176bb2ba5d0004ed21787adaf563e7bd812d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x95c54255e8e0c5b95d6ea16b97843ce00fce6153", + "balanceRaw": "1626311833554227154900", + "balanceFormatted": "1626.3118335542271549", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95c54255e8e0c5b95d6ea16b97843ce00fce6153", + "etherscanUrl": "https://etherscan.io/address/0x95c54255e8e0c5b95d6ea16b97843ce00fce6153", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd929fce80152e986088af291b582890a6c6bc619", + "balanceRaw": "1620519994062597530604", + "balanceFormatted": "1620.519994062597530604", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd929fce80152e986088af291b582890a6c6bc619", + "etherscanUrl": "https://etherscan.io/address/0xd929fce80152e986088af291b582890a6c6bc619", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53ea79b7339ccd0897f0882dc3ab8d4520c2c305", + "balanceRaw": "1608392964138100391471", + "balanceFormatted": "1608.392964138100391471", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53ea79b7339ccd0897f0882dc3ab8d4520c2c305", + "etherscanUrl": "https://etherscan.io/address/0x53ea79b7339ccd0897f0882dc3ab8d4520c2c305", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x44551ca46fa5592bb572e20043f7c3d54c85cad7", + "balanceRaw": "1588270918788552981858", + "balanceFormatted": "1588.270918788552981858", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44551ca46fa5592bb572e20043f7c3d54c85cad7", + "etherscanUrl": "https://etherscan.io/address/0x44551ca46fa5592bb572e20043f7c3d54c85cad7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9b1de5b0d8f033d171a1057333960afd66249d65", + "balanceRaw": "1570151296503123323944", + "balanceFormatted": "1570.151296503123323944", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b1de5b0d8f033d171a1057333960afd66249d65", + "etherscanUrl": "https://etherscan.io/address/0x9b1de5b0d8f033d171a1057333960afd66249d65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_444067", + "balanceRaw": "1568744376717373218039", + "balanceFormatted": "1568.744376717373218039", + "lastTransferAt": null, + "username": "macster", + "displayName": "Yonii🌸", + "fid": 444067, + "followers": 8361, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77ea3c84-a38a-4091-528a-02e4afaafc00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8676cf3a5ca6e068eb586c948ca06c119eb38e03", + "etherscanUrl": "https://etherscan.io/address/0x8676cf3a5ca6e068eb586c948ca06c119eb38e03", + "xHandle": "goyagl90", + "xUrl": "https://twitter.com/goyagl90", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9266f125fb2ecb730d9953b46de9c32e2fa83e4a", + "balanceRaw": "1554045694932061424979", + "balanceFormatted": "1554.045694932061424979", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9266f125fb2ecb730d9953b46de9c32e2fa83e4a", + "etherscanUrl": "https://etherscan.io/address/0x9266f125fb2ecb730d9953b46de9c32e2fa83e4a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0637dbecb11094e1ed251fc612512c6ce1391711", + "balanceRaw": "1547025959792423248575", + "balanceFormatted": "1547.025959792423248575", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0637dbecb11094e1ed251fc612512c6ce1391711", + "etherscanUrl": "https://etherscan.io/address/0x0637dbecb11094e1ed251fc612512c6ce1391711", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x526c9e89f01bd507b07ea0bbdddce2e1b9a0c687", + "balanceRaw": "1525709588676633666293", + "balanceFormatted": "1525.709588676633666293", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x526c9e89f01bd507b07ea0bbdddce2e1b9a0c687", + "etherscanUrl": "https://etherscan.io/address/0x526c9e89f01bd507b07ea0bbdddce2e1b9a0c687", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05427963cdfc15414adb87726f308dd84dc909d8", + "balanceRaw": "1522780570000000000000", + "balanceFormatted": "1522.78057", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05427963cdfc15414adb87726f308dd84dc909d8", + "etherscanUrl": "https://etherscan.io/address/0x05427963cdfc15414adb87726f308dd84dc909d8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe674c81bdf132cf6e46be106c82b3ab7a4afd483", + "balanceRaw": "1504338660741786683734", + "balanceFormatted": "1504.338660741786683734", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe674c81bdf132cf6e46be106c82b3ab7a4afd483", + "etherscanUrl": "https://etherscan.io/address/0xe674c81bdf132cf6e46be106c82b3ab7a4afd483", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x264765a02e7596a75eabf098e5183cc426559ce3", + "balanceRaw": "1500000000000000000000", + "balanceFormatted": "1500", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x264765a02e7596a75eabf098e5183cc426559ce3", + "etherscanUrl": "https://etherscan.io/address/0x264765a02e7596a75eabf098e5183cc426559ce3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5b9d1af871a3fe9037ee425771cbec466f9c5454", + "balanceRaw": "1465674834491140325702", + "balanceFormatted": "1465.674834491140325702", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b9d1af871a3fe9037ee425771cbec466f9c5454", + "etherscanUrl": "https://etherscan.io/address/0x5b9d1af871a3fe9037ee425771cbec466f9c5454", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdfd27839961f9787cef4bdc31e45fe7aba858d26", + "balanceRaw": "1458182662760459762313", + "balanceFormatted": "1458.182662760459762313", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdfd27839961f9787cef4bdc31e45fe7aba858d26", + "etherscanUrl": "https://etherscan.io/address/0xdfd27839961f9787cef4bdc31e45fe7aba858d26", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc06156b98f04727ed5137b51a728509128d3bc03", + "balanceRaw": "1444926308477241408731", + "balanceFormatted": "1444.926308477241408731", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc06156b98f04727ed5137b51a728509128d3bc03", + "etherscanUrl": "https://etherscan.io/address/0xc06156b98f04727ed5137b51a728509128d3bc03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1985ea6e9c68e1c272d8209f3b478ac2fdb25c87", + "balanceRaw": "1430416001169130374397", + "balanceFormatted": "1430.416001169130374397", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1985ea6e9c68e1c272d8209f3b478ac2fdb25c87", + "etherscanUrl": "https://etherscan.io/address/0x1985ea6e9c68e1c272d8209f3b478ac2fdb25c87", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x10f16811b18aac6a9a85476297226ad8aa079af1", + "balanceRaw": "1425526067769582803628", + "balanceFormatted": "1425.526067769582803628", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10f16811b18aac6a9a85476297226ad8aa079af1", + "etherscanUrl": "https://etherscan.io/address/0x10f16811b18aac6a9a85476297226ad8aa079af1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc7d308be9097033204009b72d4079bbde1b1a019", + "balanceRaw": "1391523744115611970090", + "balanceFormatted": "1391.52374411561197009", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7d308be9097033204009b72d4079bbde1b1a019", + "etherscanUrl": "https://etherscan.io/address/0xc7d308be9097033204009b72d4079bbde1b1a019", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_193909", + "balanceRaw": "1390245604853722514234", + "balanceFormatted": "1390.245604853722514234", + "lastTransferAt": null, + "username": "degen-agent", + "displayName": "degenGPT", + "fid": 193909, + "followers": 329, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5188fa0e-780e-440d-0d21-709a75f32200/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6d2525c3885eefc47308843dfa20de83650eb56", + "etherscanUrl": "https://etherscan.io/address/0xe6d2525c3885eefc47308843dfa20de83650eb56", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2904", + "balanceRaw": "1378066718852397693760", + "balanceFormatted": "1378.06671885239769376", + "lastTransferAt": null, + "username": "wake", + "displayName": "wake", + "fid": 2904, + "followers": 97989, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f4119a0-530c-404c-9203-5b0c5d15be00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26a8593ddfa481e8ed4121cde60248e411e18572", + "etherscanUrl": "https://etherscan.io/address/0x26a8593ddfa481e8ed4121cde60248e411e18572", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7ff4e7c1af2eeaeafa9d28baff92188554589c6", + "balanceRaw": "1375158524543949087434", + "balanceFormatted": "1375.158524543949087434", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7ff4e7c1af2eeaeafa9d28baff92188554589c6", + "etherscanUrl": "https://etherscan.io/address/0xb7ff4e7c1af2eeaeafa9d28baff92188554589c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9990eddf051ead0a90987b269f33540a2b58ddff", + "balanceRaw": "1349570828484599262015", + "balanceFormatted": "1349.570828484599262015", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9990eddf051ead0a90987b269f33540a2b58ddff", + "etherscanUrl": "https://etherscan.io/address/0x9990eddf051ead0a90987b269f33540a2b58ddff", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x40ebc1ac8d4fedd2e144b75fe9c0420be82750c6", + "balanceRaw": "1339507168186132528275", + "balanceFormatted": "1339.507168186132528275", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40ebc1ac8d4fedd2e144b75fe9c0420be82750c6", + "etherscanUrl": "https://etherscan.io/address/0x40ebc1ac8d4fedd2e144b75fe9c0420be82750c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x61afa5e5d7e1a70a537dc5b8252d64c8a1d92c6d", + "balanceRaw": "1327087386000354165772", + "balanceFormatted": "1327.087386000354165772", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61afa5e5d7e1a70a537dc5b8252d64c8a1d92c6d", + "etherscanUrl": "https://etherscan.io/address/0x61afa5e5d7e1a70a537dc5b8252d64c8a1d92c6d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18183", + "balanceRaw": "1306372192974170321988", + "balanceFormatted": "1306.372192974170321988", + "lastTransferAt": null, + "username": "windump", + "displayName": "Winder", + "fid": 18183, + "followers": 1364, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34f672e3-17c7-4093-537c-24a9f7405600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc89a0e99daefefb17a58231e2588c1118766e290", + "etherscanUrl": "https://etherscan.io/address/0xc89a0e99daefefb17a58231e2588c1118766e290", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64171c5ae2848cec2cd92dde571f12a363f0b916", + "balanceRaw": "1297734218473562042890", + "balanceFormatted": "1297.73421847356204289", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64171c5ae2848cec2cd92dde571f12a363f0b916", + "etherscanUrl": "https://etherscan.io/address/0x64171c5ae2848cec2cd92dde571f12a363f0b916", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x24e38acd773616cdf54a1c12ecadcd5d047ce600", + "balanceRaw": "1275241845887011885851", + "balanceFormatted": "1275.241845887011885851", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x24e38acd773616cdf54a1c12ecadcd5d047ce600", + "etherscanUrl": "https://etherscan.io/address/0x24e38acd773616cdf54a1c12ecadcd5d047ce600", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbcb9afcfedaf5d374fd81f2eb97fda84cf852ca6", + "balanceRaw": "1270727562126435398350", + "balanceFormatted": "1270.72756212643539835", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbcb9afcfedaf5d374fd81f2eb97fda84cf852ca6", + "etherscanUrl": "https://etherscan.io/address/0xbcb9afcfedaf5d374fd81f2eb97fda84cf852ca6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf0de651e39cd04c0b5eb4b3f8f721bb86b1a227c", + "balanceRaw": "1236721783936390963767", + "balanceFormatted": "1236.721783936390963767", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0de651e39cd04c0b5eb4b3f8f721bb86b1a227c", + "etherscanUrl": "https://etherscan.io/address/0xf0de651e39cd04c0b5eb4b3f8f721bb86b1a227c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a5c1a532a89b50c84f9ffd7f915093f5c637081", + "balanceRaw": "1233473635767542751066", + "balanceFormatted": "1233.473635767542751066", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a5c1a532a89b50c84f9ffd7f915093f5c637081", + "etherscanUrl": "https://etherscan.io/address/0x7a5c1a532a89b50c84f9ffd7f915093f5c637081", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6be61fd375e4ac4df6334413f4761caac46d1840", + "balanceRaw": "1232450411026081971888", + "balanceFormatted": "1232.450411026081971888", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6be61fd375e4ac4df6334413f4761caac46d1840", + "etherscanUrl": "https://etherscan.io/address/0x6be61fd375e4ac4df6334413f4761caac46d1840", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x420115a39de334dcb7c2cacf4d785c6cbc1ebaf8", + "balanceRaw": "1226985538959093415936", + "balanceFormatted": "1226.985538959093415936", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x420115a39de334dcb7c2cacf4d785c6cbc1ebaf8", + "etherscanUrl": "https://etherscan.io/address/0x420115a39de334dcb7c2cacf4d785c6cbc1ebaf8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbb1ee4b42518d75be69256af2ff1e9fcac55d417", + "balanceRaw": "1220273722368580610655", + "balanceFormatted": "1220.273722368580610655", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb1ee4b42518d75be69256af2ff1e9fcac55d417", + "etherscanUrl": "https://etherscan.io/address/0xbb1ee4b42518d75be69256af2ff1e9fcac55d417", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x80d576fe3f14715be00fd227f334584823058c40", + "balanceRaw": "1215664307450505106068", + "balanceFormatted": "1215.664307450505106068", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80d576fe3f14715be00fd227f334584823058c40", + "etherscanUrl": "https://etherscan.io/address/0x80d576fe3f14715be00fd227f334584823058c40", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x801ee733215e29b5870f2942810a907a5fe8ae84", + "balanceRaw": "1183166984371791283348", + "balanceFormatted": "1183.166984371791283348", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x801ee733215e29b5870f2942810a907a5fe8ae84", + "etherscanUrl": "https://etherscan.io/address/0x801ee733215e29b5870f2942810a907a5fe8ae84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3dba4145a6af95a4e6b2624ca9e97529f0cbafef", + "balanceRaw": "1157020680566170896730", + "balanceFormatted": "1157.02068056617089673", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dba4145a6af95a4e6b2624ca9e97529f0cbafef", + "etherscanUrl": "https://etherscan.io/address/0x3dba4145a6af95a4e6b2624ca9e97529f0cbafef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x774789cede651b264d26088dba3d5b2b6e8b0d7c", + "balanceRaw": "1156443438776889114637", + "balanceFormatted": "1156.443438776889114637", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x774789cede651b264d26088dba3d5b2b6e8b0d7c", + "etherscanUrl": "https://etherscan.io/address/0x774789cede651b264d26088dba3d5b2b6e8b0d7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xedfcd5ac886adf49f87e439aae51105c525cbb2b", + "balanceRaw": "1146605769914721455326", + "balanceFormatted": "1146.605769914721455326", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xedfcd5ac886adf49f87e439aae51105c525cbb2b", + "etherscanUrl": "https://etherscan.io/address/0xedfcd5ac886adf49f87e439aae51105c525cbb2b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x87013298d78729687dc686ae4fe712511c34dd8e", + "balanceRaw": "1142814694539418574702", + "balanceFormatted": "1142.814694539418574702", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87013298d78729687dc686ae4fe712511c34dd8e", + "etherscanUrl": "https://etherscan.io/address/0x87013298d78729687dc686ae4fe712511c34dd8e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x854c94adaea43e0e4a6f47185b14b84e59326d7f", + "balanceRaw": "1134758825000639699517", + "balanceFormatted": "1134.758825000639699517", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x854c94adaea43e0e4a6f47185b14b84e59326d7f", + "etherscanUrl": "https://etherscan.io/address/0x854c94adaea43e0e4a6f47185b14b84e59326d7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd411810f89390f6bd77766196681e6441abb4cbe", + "balanceRaw": "1118364407437996970186", + "balanceFormatted": "1118.364407437996970186", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd411810f89390f6bd77766196681e6441abb4cbe", + "etherscanUrl": "https://etherscan.io/address/0xd411810f89390f6bd77766196681e6441abb4cbe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe33ffabf893d7832bd186404408dcb9484e50bfe", + "balanceRaw": "1111890590999147004912", + "balanceFormatted": "1111.890590999147004912", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe33ffabf893d7832bd186404408dcb9484e50bfe", + "etherscanUrl": "https://etherscan.io/address/0xe33ffabf893d7832bd186404408dcb9484e50bfe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb3af88f40dcb2934a8ad026ee6084aea4628910a", + "balanceRaw": "1102628725669617481406", + "balanceFormatted": "1102.628725669617481406", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb3af88f40dcb2934a8ad026ee6084aea4628910a", + "etherscanUrl": "https://etherscan.io/address/0xb3af88f40dcb2934a8ad026ee6084aea4628910a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1cd902496d684b94990a7be7cb6827cbe6e3c6b9", + "balanceRaw": "1088073073196373212698", + "balanceFormatted": "1088.073073196373212698", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1cd902496d684b94990a7be7cb6827cbe6e3c6b9", + "etherscanUrl": "https://etherscan.io/address/0x1cd902496d684b94990a7be7cb6827cbe6e3c6b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x17a30350771d02409046a683b18fe1c13ccfc4a8", + "balanceRaw": "1081920000000000000000", + "balanceFormatted": "1081.92", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17a30350771d02409046a683b18fe1c13ccfc4a8", + "etherscanUrl": "https://etherscan.io/address/0x17a30350771d02409046a683b18fe1c13ccfc4a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9c7d6415547090f177c36f2b1af58a6b3152d344", + "balanceRaw": "1080064662863317342257", + "balanceFormatted": "1080.064662863317342257", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c7d6415547090f177c36f2b1af58a6b3152d344", + "etherscanUrl": "https://etherscan.io/address/0x9c7d6415547090f177c36f2b1af58a6b3152d344", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e04fb9a06ee4913f910f452be1e7e369d5ba2fb", + "balanceRaw": "1079864951843173643978", + "balanceFormatted": "1079.864951843173643978", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e04fb9a06ee4913f910f452be1e7e369d5ba2fb", + "etherscanUrl": "https://etherscan.io/address/0x5e04fb9a06ee4913f910f452be1e7e369d5ba2fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x50bf4102d424b1f59803cd442c77c17a539e607d", + "balanceRaw": "1079845108112862074025", + "balanceFormatted": "1079.845108112862074025", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50bf4102d424b1f59803cd442c77c17a539e607d", + "etherscanUrl": "https://etherscan.io/address/0x50bf4102d424b1f59803cd442c77c17a539e607d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbde5e699120504f1b0c326c8b43dc0fe68a4a259", + "balanceRaw": "1039220015864144000000", + "balanceFormatted": "1039.220015864144", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbde5e699120504f1b0c326c8b43dc0fe68a4a259", + "etherscanUrl": "https://etherscan.io/address/0xbde5e699120504f1b0c326c8b43dc0fe68a4a259", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x39a1b49bc0fb633ba5078af981b83f7f0b4940c1", + "balanceRaw": "1037939760820802965415", + "balanceFormatted": "1037.939760820802965415", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39a1b49bc0fb633ba5078af981b83f7f0b4940c1", + "etherscanUrl": "https://etherscan.io/address/0x39a1b49bc0fb633ba5078af981b83f7f0b4940c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1430", + "balanceRaw": "1037114178047261315673", + "balanceFormatted": "1037.114178047261315673", + "lastTransferAt": null, + "username": "wijuwiju.eth", + "displayName": "wijuwiju.eth", + "fid": 1430, + "followers": 56060, + "pfpUrl": "https://i.imgur.com/oeyZjsk.jpg", + "ensName": "wijuwiju.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf4844a06d4f995c4c03195afcb5aa59dcbb5b4fc", + "etherscanUrl": "https://etherscan.io/address/0xf4844a06d4f995c4c03195afcb5aa59dcbb5b4fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6cf5cd17ef9f1129da38d90c0517a2fc00b378e6", + "balanceRaw": "1015097147938038960343", + "balanceFormatted": "1015.097147938038960343", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6cf5cd17ef9f1129da38d90c0517a2fc00b378e6", + "etherscanUrl": "https://etherscan.io/address/0x6cf5cd17ef9f1129da38d90c0517a2fc00b378e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0e6ac57fa9352f0ebfe697cd6eb4b41612050317", + "balanceRaw": "1009582042623131939158", + "balanceFormatted": "1009.582042623131939158", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e6ac57fa9352f0ebfe697cd6eb4b41612050317", + "etherscanUrl": "https://etherscan.io/address/0x0e6ac57fa9352f0ebfe697cd6eb4b41612050317", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3980171a52ffc5d625a6ce75f82fd37e6a6e393", + "balanceRaw": "1007147259161384985074", + "balanceFormatted": "1007.147259161384985074", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3980171a52ffc5d625a6ce75f82fd37e6a6e393", + "etherscanUrl": "https://etherscan.io/address/0xc3980171a52ffc5d625a6ce75f82fd37e6a6e393", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99c3281562bdcdc8987d07dabdddb2e964015b53", + "balanceRaw": "1000905208635101634152", + "balanceFormatted": "1000.905208635101634152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99c3281562bdcdc8987d07dabdddb2e964015b53", + "etherscanUrl": "https://etherscan.io/address/0x99c3281562bdcdc8987d07dabdddb2e964015b53", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x327220c33dad6f5a201c179bc398b3f0a24a05a7", + "balanceRaw": "1000705729776160331718", + "balanceFormatted": "1000.705729776160331718", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x327220c33dad6f5a201c179bc398b3f0a24a05a7", + "etherscanUrl": "https://etherscan.io/address/0x327220c33dad6f5a201c179bc398b3f0a24a05a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd8ba783baad43169f307f560b5274f473d5171fd", + "balanceRaw": "1000267252344556855217", + "balanceFormatted": "1000.267252344556855217", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8ba783baad43169f307f560b5274f473d5171fd", + "etherscanUrl": "https://etherscan.io/address/0xd8ba783baad43169f307f560b5274f473d5171fd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x37ce10b37a199fc7a771765ba378b4a26bb2432f", + "balanceRaw": "1000000001683318355539", + "balanceFormatted": "1000.000001683318355539", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x37ce10b37a199fc7a771765ba378b4a26bb2432f", + "etherscanUrl": "https://etherscan.io/address/0x37ce10b37a199fc7a771765ba378b4a26bb2432f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfe7928154946637d9904b2e2ca942246a488faa5", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe7928154946637d9904b2e2ca942246a488faa5", + "etherscanUrl": "https://etherscan.io/address/0xfe7928154946637d9904b2e2ca942246a488faa5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8037292105d46ae56d4fb06a2df6188930fa01de", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8037292105d46ae56d4fb06a2df6188930fa01de", + "etherscanUrl": "https://etherscan.io/address/0x8037292105d46ae56d4fb06a2df6188930fa01de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3bf02c2002331ff13e4cdeeba1227d84ce7251e4", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3bf02c2002331ff13e4cdeeba1227d84ce7251e4", + "etherscanUrl": "https://etherscan.io/address/0x3bf02c2002331ff13e4cdeeba1227d84ce7251e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd77ab9f802242073672fd704046beb8acebba6b6", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd77ab9f802242073672fd704046beb8acebba6b6", + "etherscanUrl": "https://etherscan.io/address/0xd77ab9f802242073672fd704046beb8acebba6b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff02b67f7258de66400205a8c80c0c00d86d771f", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff02b67f7258de66400205a8c80c0c00d86d771f", + "etherscanUrl": "https://etherscan.io/address/0xff02b67f7258de66400205a8c80c0c00d86d771f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1157a2076b9bb22a85cc2c162f20fab3898f4101", + "balanceRaw": "999954000000000000000", + "balanceFormatted": "999.954", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1157a2076b9bb22a85cc2c162f20fab3898f4101", + "etherscanUrl": "https://etherscan.io/address/0x1157a2076b9bb22a85cc2c162f20fab3898f4101", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x947ba15d0c9ec51057b1061297da112ecfd6af25", + "balanceRaw": "988513571955452475490", + "balanceFormatted": "988.51357195545247549", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x947ba15d0c9ec51057b1061297da112ecfd6af25", + "etherscanUrl": "https://etherscan.io/address/0x947ba15d0c9ec51057b1061297da112ecfd6af25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe2174b0dcbb74ab8e0648a784839efc64c99af53", + "balanceRaw": "979118228549969487559", + "balanceFormatted": "979.118228549969487559", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2174b0dcbb74ab8e0648a784839efc64c99af53", + "etherscanUrl": "https://etherscan.io/address/0xe2174b0dcbb74ab8e0648a784839efc64c99af53", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29806ed7bc5904e81e7d6255f8718991c7db07de", + "balanceRaw": "978126141036094740695", + "balanceFormatted": "978.126141036094740695", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29806ed7bc5904e81e7d6255f8718991c7db07de", + "etherscanUrl": "https://etherscan.io/address/0x29806ed7bc5904e81e7d6255f8718991c7db07de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa584464d42c805e6d08cb3b688e5b4a8fad92309", + "balanceRaw": "975954481034675657245", + "balanceFormatted": "975.954481034675657245", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa584464d42c805e6d08cb3b688e5b4a8fad92309", + "etherscanUrl": "https://etherscan.io/address/0xa584464d42c805e6d08cb3b688e5b4a8fad92309", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x98a3da6293e56674d250fa9ada4c684dc34e4e0b", + "balanceRaw": "971477079692848427168", + "balanceFormatted": "971.477079692848427168", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x98a3da6293e56674d250fa9ada4c684dc34e4e0b", + "etherscanUrl": "https://etherscan.io/address/0x98a3da6293e56674d250fa9ada4c684dc34e4e0b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c323730b96732d9e2a354863af9bbfce539b10d", + "balanceRaw": "959713709008444708737", + "balanceFormatted": "959.713709008444708737", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c323730b96732d9e2a354863af9bbfce539b10d", + "etherscanUrl": "https://etherscan.io/address/0x0c323730b96732d9e2a354863af9bbfce539b10d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe87b933e326195d399725a8d4f7abde743bcfb1a", + "balanceRaw": "952948670627422306652", + "balanceFormatted": "952.948670627422306652", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe87b933e326195d399725a8d4f7abde743bcfb1a", + "etherscanUrl": "https://etherscan.io/address/0xe87b933e326195d399725a8d4f7abde743bcfb1a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_393392", + "balanceRaw": "949115498797784110287", + "balanceFormatted": "949.115498797784110287", + "lastTransferAt": null, + "username": "kien", + "displayName": "Kien Nguyen", + "fid": 393392, + "followers": 1242, + "pfpUrl": "https://i.imgur.com/fuTuQOW.jpg", + "ensName": "kennik28.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x900d69d45a6bbd7562e2b4e175a36d395f681c06", + "etherscanUrl": "https://etherscan.io/address/0x900d69d45a6bbd7562e2b4e175a36d395f681c06", + "xHandle": "kiennguyen_nft", + "xUrl": "https://twitter.com/kiennguyen_nft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbada235e37f8ceba768cb167518c869a3765992c", + "balanceRaw": "947444533152411635070", + "balanceFormatted": "947.44453315241163507", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbada235e37f8ceba768cb167518c869a3765992c", + "etherscanUrl": "https://etherscan.io/address/0xbada235e37f8ceba768cb167518c869a3765992c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x17497b8c50a7c641fa265fb3a784fbd1c14264c2", + "balanceRaw": "934961394658532844832", + "balanceFormatted": "934.961394658532844832", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17497b8c50a7c641fa265fb3a784fbd1c14264c2", + "etherscanUrl": "https://etherscan.io/address/0x17497b8c50a7c641fa265fb3a784fbd1c14264c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x96245e3bca44106e4b005dba0470e7a89315dc8f", + "balanceRaw": "933020293449363493551", + "balanceFormatted": "933.020293449363493551", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96245e3bca44106e4b005dba0470e7a89315dc8f", + "etherscanUrl": "https://etherscan.io/address/0x96245e3bca44106e4b005dba0470e7a89315dc8f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "balanceRaw": "929098293107022418163", + "balanceFormatted": "929.098293107022418163", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "etherscanUrl": "https://etherscan.io/address/0x51c72848c68a965f66fa7a88855f9f7784502a7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa25628822ede2195d88b153bfe88a2375176d498", + "balanceRaw": "926900871780725725084", + "balanceFormatted": "926.900871780725725084", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa25628822ede2195d88b153bfe88a2375176d498", + "etherscanUrl": "https://etherscan.io/address/0xa25628822ede2195d88b153bfe88a2375176d498", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba2f57bb46e8c9eaa0a584ee077bcf10bc4a272e", + "balanceRaw": "925000000000000000000", + "balanceFormatted": "925", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba2f57bb46e8c9eaa0a584ee077bcf10bc4a272e", + "etherscanUrl": "https://etherscan.io/address/0xba2f57bb46e8c9eaa0a584ee077bcf10bc4a272e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4baec390073e768f2334b2d7e3c0c3c6e19f03df", + "balanceRaw": "900244430393518351854", + "balanceFormatted": "900.244430393518351854", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4baec390073e768f2334b2d7e3c0c3c6e19f03df", + "etherscanUrl": "https://etherscan.io/address/0x4baec390073e768f2334b2d7e3c0c3c6e19f03df", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6105c1ad5fa00106e78d53e6d0b7f5f01379c33b", + "balanceRaw": "900056330557044381876", + "balanceFormatted": "900.056330557044381876", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6105c1ad5fa00106e78d53e6d0b7f5f01379c33b", + "etherscanUrl": "https://etherscan.io/address/0x6105c1ad5fa00106e78d53e6d0b7f5f01379c33b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3d9ca74d559709743c0d0611b958a7c98509bc1", + "balanceRaw": "893581717385517910785", + "balanceFormatted": "893.581717385517910785", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3d9ca74d559709743c0d0611b958a7c98509bc1", + "etherscanUrl": "https://etherscan.io/address/0xc3d9ca74d559709743c0d0611b958a7c98509bc1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb8e6d31e7b212b2b7250ee9c26c56cebbfbe6b23", + "balanceRaw": "889520000000000000000", + "balanceFormatted": "889.52", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb8e6d31e7b212b2b7250ee9c26c56cebbfbe6b23", + "etherscanUrl": "https://etherscan.io/address/0xb8e6d31e7b212b2b7250ee9c26c56cebbfbe6b23", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9a97080304b6ed457c9cf9697bfa851edd022674", + "balanceRaw": "884616979172091809152", + "balanceFormatted": "884.616979172091809152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a97080304b6ed457c9cf9697bfa851edd022674", + "etherscanUrl": "https://etherscan.io/address/0x9a97080304b6ed457c9cf9697bfa851edd022674", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc319d034dfda52c56cc4a13ccdc782c6627d52e3", + "balanceRaw": "882468637698523256800", + "balanceFormatted": "882.4686376985232568", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc319d034dfda52c56cc4a13ccdc782c6627d52e3", + "etherscanUrl": "https://etherscan.io/address/0xc319d034dfda52c56cc4a13ccdc782c6627d52e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x105d8f9b1935b52952ef3f25b70836cb985c20f4", + "balanceRaw": "876373200830000000000", + "balanceFormatted": "876.37320083", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x105d8f9b1935b52952ef3f25b70836cb985c20f4", + "etherscanUrl": "https://etherscan.io/address/0x105d8f9b1935b52952ef3f25b70836cb985c20f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7caf868835eac09f4fcb0ab85b942d8722c26de", + "balanceRaw": "876327941721784249876", + "balanceFormatted": "876.327941721784249876", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7caf868835eac09f4fcb0ab85b942d8722c26de", + "etherscanUrl": "https://etherscan.io/address/0xb7caf868835eac09f4fcb0ab85b942d8722c26de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x588808dbe54c20986e98e17f7b5b89dd2dee316d", + "balanceRaw": "873998488580842272594", + "balanceFormatted": "873.998488580842272594", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x588808dbe54c20986e98e17f7b5b89dd2dee316d", + "etherscanUrl": "https://etherscan.io/address/0x588808dbe54c20986e98e17f7b5b89dd2dee316d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xef49eb38d571c35196926e973df197733c892525", + "balanceRaw": "863336979370078577333", + "balanceFormatted": "863.336979370078577333", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef49eb38d571c35196926e973df197733c892525", + "etherscanUrl": "https://etherscan.io/address/0xef49eb38d571c35196926e973df197733c892525", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbbea53912ae66107c0c54ad3debc349986db69fa", + "balanceRaw": "858946900299941373754", + "balanceFormatted": "858.946900299941373754", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbea53912ae66107c0c54ad3debc349986db69fa", + "etherscanUrl": "https://etherscan.io/address/0xbbea53912ae66107c0c54ad3debc349986db69fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x32631223a3b8f7bb28dc3c067d5f880902730dfa", + "balanceRaw": "852000000000000000000", + "balanceFormatted": "852", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32631223a3b8f7bb28dc3c067d5f880902730dfa", + "etherscanUrl": "https://etherscan.io/address/0x32631223a3b8f7bb28dc3c067d5f880902730dfa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6a10910049c7c95e78251b0431986b0fb5be4af3", + "balanceRaw": "850192657734960549476", + "balanceFormatted": "850.192657734960549476", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a10910049c7c95e78251b0431986b0fb5be4af3", + "etherscanUrl": "https://etherscan.io/address/0x6a10910049c7c95e78251b0431986b0fb5be4af3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a62d9c31626cd4e99870f7d6b63d5379afa1493", + "balanceRaw": "849007814057556095202", + "balanceFormatted": "849.007814057556095202", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a62d9c31626cd4e99870f7d6b63d5379afa1493", + "etherscanUrl": "https://etherscan.io/address/0x8a62d9c31626cd4e99870f7d6b63d5379afa1493", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_876109", + "balanceRaw": "821133914777359930893", + "balanceFormatted": "821.133914777359930893", + "lastTransferAt": null, + "username": "seeker-block", + "displayName": "seeker-block", + "fid": 876109, + "followers": 1344, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db081652-222a-45c2-3b2f-b5e9f3705400/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0cbb693e0199cb7ad4f3c846f43045cb95247fc5", + "etherscanUrl": "https://etherscan.io/address/0x0cbb693e0199cb7ad4f3c846f43045cb95247fc5", + "xHandle": "aliideez", + "xUrl": "https://twitter.com/aliideez", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd2dd7b597fd2435b6db61ddf48544fd931e6869f", + "balanceRaw": "818974291600000000000", + "balanceFormatted": "818.9742916", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2dd7b597fd2435b6db61ddf48544fd931e6869f", + "etherscanUrl": "https://etherscan.io/address/0xd2dd7b597fd2435b6db61ddf48544fd931e6869f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7013a0e54f74bd054d968ee0c6a8d24acc0476f", + "balanceRaw": "814348630478394464747", + "balanceFormatted": "814.348630478394464747", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7013a0e54f74bd054d968ee0c6a8d24acc0476f", + "etherscanUrl": "https://etherscan.io/address/0xb7013a0e54f74bd054d968ee0c6a8d24acc0476f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x01b27b60afe52330a2f464aa4625431365dc3e07", + "balanceRaw": "806353079720749712213", + "balanceFormatted": "806.353079720749712213", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01b27b60afe52330a2f464aa4625431365dc3e07", + "etherscanUrl": "https://etherscan.io/address/0x01b27b60afe52330a2f464aa4625431365dc3e07", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x18a2c31f15e4492fe6098efd32704f83a988512d", + "balanceRaw": "805236455691929094808", + "balanceFormatted": "805.236455691929094808", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18a2c31f15e4492fe6098efd32704f83a988512d", + "etherscanUrl": "https://etherscan.io/address/0x18a2c31f15e4492fe6098efd32704f83a988512d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdacadddf821ce45523d0ca0ef14623894044647f", + "balanceRaw": "802717452996612488204", + "balanceFormatted": "802.717452996612488204", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdacadddf821ce45523d0ca0ef14623894044647f", + "etherscanUrl": "https://etherscan.io/address/0xdacadddf821ce45523d0ca0ef14623894044647f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda933dd24632990b3293f1823d2d1734d3f94446", + "balanceRaw": "802575913104676315222", + "balanceFormatted": "802.575913104676315222", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda933dd24632990b3293f1823d2d1734d3f94446", + "etherscanUrl": "https://etherscan.io/address/0xda933dd24632990b3293f1823d2d1734d3f94446", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc45550188138e74daa2fe6fdd12070a2dc13fa5c", + "balanceRaw": "800026284253056988218", + "balanceFormatted": "800.026284253056988218", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc45550188138e74daa2fe6fdd12070a2dc13fa5c", + "etherscanUrl": "https://etherscan.io/address/0xc45550188138e74daa2fe6fdd12070a2dc13fa5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f4ba8a9d9daf9a9c82b003b641298469c5aad48", + "balanceRaw": "800000000000000000000", + "balanceFormatted": "800", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f4ba8a9d9daf9a9c82b003b641298469c5aad48", + "etherscanUrl": "https://etherscan.io/address/0x2f4ba8a9d9daf9a9c82b003b641298469c5aad48", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x85e2acd5826a07740b3f36785a439b414385febe", + "balanceRaw": "799065407438522672585", + "balanceFormatted": "799.065407438522672585", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85e2acd5826a07740b3f36785a439b414385febe", + "etherscanUrl": "https://etherscan.io/address/0x85e2acd5826a07740b3f36785a439b414385febe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_886945", + "balanceRaw": "797637915010625647727", + "balanceFormatted": "797.637915010625647727", + "lastTransferAt": null, + "username": "zuoyouya", + "displayName": "我爱pe", + "fid": 886945, + "followers": 29, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5dc5968-3a75-468b-234a-8a481611ae00/original", + "ensName": "cwyxhqz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8e07ab8fc9e5f2613b17a5e5069673d522d0207a", + "etherscanUrl": "https://etherscan.io/address/0x8e07ab8fc9e5f2613b17a5e5069673d522d0207a", + "xHandle": "misk86429903", + "xUrl": "https://twitter.com/misk86429903", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa73072adc6c34859426fcc29bc6ca2cac07c93c3", + "balanceRaw": "774799999999999992320", + "balanceFormatted": "774.79999999999999232", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa73072adc6c34859426fcc29bc6ca2cac07c93c3", + "etherscanUrl": "https://etherscan.io/address/0xa73072adc6c34859426fcc29bc6ca2cac07c93c3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf89b8563420116ac20b68930e8da28cdc9024393", + "balanceRaw": "769508648462595937240", + "balanceFormatted": "769.50864846259593724", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf89b8563420116ac20b68930e8da28cdc9024393", + "etherscanUrl": "https://etherscan.io/address/0xf89b8563420116ac20b68930e8da28cdc9024393", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9063d9ca9c606bc72a7a76021a8417397230a6c3", + "balanceRaw": "761646963372824341567", + "balanceFormatted": "761.646963372824341567", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9063d9ca9c606bc72a7a76021a8417397230a6c3", + "etherscanUrl": "https://etherscan.io/address/0x9063d9ca9c606bc72a7a76021a8417397230a6c3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x66d47066ed2db09e06a21f1e4e03c8384c5af245", + "balanceRaw": "758692336464924883996", + "balanceFormatted": "758.692336464924883996", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66d47066ed2db09e06a21f1e4e03c8384c5af245", + "etherscanUrl": "https://etherscan.io/address/0x66d47066ed2db09e06a21f1e4e03c8384c5af245", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x997bfc3f4d58c8bedf6ed743978ce5a6749da2d0", + "balanceRaw": "758616600000000000000", + "balanceFormatted": "758.6166", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x997bfc3f4d58c8bedf6ed743978ce5a6749da2d0", + "etherscanUrl": "https://etherscan.io/address/0x997bfc3f4d58c8bedf6ed743978ce5a6749da2d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9aa9da33965cf28a1c895850cc30e2515a53e4b8", + "balanceRaw": "750252339444097301129", + "balanceFormatted": "750.252339444097301129", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9aa9da33965cf28a1c895850cc30e2515a53e4b8", + "etherscanUrl": "https://etherscan.io/address/0x9aa9da33965cf28a1c895850cc30e2515a53e4b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_227522", + "balanceRaw": "740000000000000000000", + "balanceFormatted": "740", + "lastTransferAt": null, + "username": "mzemlu", + "displayName": "mzemlu 🎩 👒💙🦈", + "fid": 227522, + "followers": 2605, + "pfpUrl": "https://i.imgur.com/OzLHWuN.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x180d4a7c54badb851aac45cdd612a13e666a9ff6", + "etherscanUrl": "https://etherscan.io/address/0x180d4a7c54badb851aac45cdd612a13e666a9ff6", + "xHandle": "mzemlu777", + "xUrl": "https://twitter.com/mzemlu777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x87422d6a1b319cfe044a61e6ca90f9f043674eba", + "balanceRaw": "733552897532638482646", + "balanceFormatted": "733.552897532638482646", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87422d6a1b319cfe044a61e6ca90f9f043674eba", + "etherscanUrl": "https://etherscan.io/address/0x87422d6a1b319cfe044a61e6ca90f9f043674eba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8046", + "balanceRaw": "733120376155950917407", + "balanceFormatted": "733.120376155950917407", + "lastTransferAt": null, + "username": "rsa.eth", + "displayName": "Ryan Sean Adams (rsa.eth)", + "fid": 8046, + "followers": 98825, + "pfpUrl": "https://i.imgur.com/Z66YsVZ.jpg", + "ensName": "rsa.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x779083edc9fa2b11e4f813c22dc2e6400292dc8b", + "etherscanUrl": "https://etherscan.io/address/0x779083edc9fa2b11e4f813c22dc2e6400292dc8b", + "xHandle": "ryansadams", + "xUrl": "https://twitter.com/ryansadams", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa6e2dc44418f5ad213c86db4dbb203a59d13c49f", + "balanceRaw": "722782064289764916987", + "balanceFormatted": "722.782064289764916987", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6e2dc44418f5ad213c86db4dbb203a59d13c49f", + "etherscanUrl": "https://etherscan.io/address/0xa6e2dc44418f5ad213c86db4dbb203a59d13c49f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb5523e3a226de6ef310b90050ee41683e41d4252", + "balanceRaw": "714134778542084375288", + "balanceFormatted": "714.134778542084375288", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb5523e3a226de6ef310b90050ee41683e41d4252", + "etherscanUrl": "https://etherscan.io/address/0xb5523e3a226de6ef310b90050ee41683e41d4252", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15732", + "balanceRaw": "705007848349542444768", + "balanceFormatted": "705.007848349542444768", + "lastTransferAt": null, + "username": "kompreni", + "displayName": "kompreni 🚂", + "fid": 15732, + "followers": 10887, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b7cdbbc-92fe-4d37-450a-fdbb88e7e100/original", + "ensName": "chejazi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0aadd2e08f1bf4be8b82ca6e402b7b76b3db76e9", + "etherscanUrl": "https://etherscan.io/address/0x0aadd2e08f1bf4be8b82ca6e402b7b76b3db76e9", + "xHandle": "kompreni", + "xUrl": "https://twitter.com/kompreni", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_272109", + "balanceRaw": "700000000000000000000", + "balanceFormatted": "700", + "lastTransferAt": null, + "username": "heesh", + "displayName": "Heeshillio", + "fid": 272109, + "followers": 414, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e66ec60-269c-486c-7707-d42a916ca400/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49db5a1c9fef0e2f995b46b0b71bebbd912bf0e3", + "etherscanUrl": "https://etherscan.io/address/0x49db5a1c9fef0e2f995b46b0b71bebbd912bf0e3", + "xHandle": "heeshillio", + "xUrl": "https://twitter.com/heeshillio", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x242e2d70d3adc00a9ef23ced6e88811fcefca788", + "balanceRaw": "693491727305128612178", + "balanceFormatted": "693.491727305128612178", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x242e2d70d3adc00a9ef23ced6e88811fcefca788", + "etherscanUrl": "https://etherscan.io/address/0x242e2d70d3adc00a9ef23ced6e88811fcefca788", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x77bac8a59ac25911710f829cdfbb11b4d319b398", + "balanceRaw": "693046283754962050852", + "balanceFormatted": "693.046283754962050852", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77bac8a59ac25911710f829cdfbb11b4d319b398", + "etherscanUrl": "https://etherscan.io/address/0x77bac8a59ac25911710f829cdfbb11b4d319b398", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfbef7475ba925a85cfcd32dc8650b8f9204fb493", + "balanceRaw": "692247883910000000000", + "balanceFormatted": "692.24788391", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbef7475ba925a85cfcd32dc8650b8f9204fb493", + "etherscanUrl": "https://etherscan.io/address/0xfbef7475ba925a85cfcd32dc8650b8f9204fb493", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_247143", + "balanceRaw": "683998970946426426318", + "balanceFormatted": "683.998970946426426318", + "lastTransferAt": null, + "username": "kylepatrick.eth", + "displayName": "Kyle Patrick", + "fid": 247143, + "followers": 48066, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15b35784-d490-4144-15c4-62edc2a58c00/rectcrop3", + "ensName": "kylepatrick.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x33be45c761b50f44e966d901fa6d0528a74865e5", + "etherscanUrl": "https://etherscan.io/address/0x33be45c761b50f44e966d901fa6d0528a74865e5", + "xHandle": "kylepatrick_eth", + "xUrl": "https://twitter.com/kylepatrick_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3734", + "balanceRaw": "677883456965832652239", + "balanceFormatted": "677.883456965832652239", + "lastTransferAt": null, + "username": "sasquatch", + "displayName": "Sasquatch テ", + "fid": 3734, + "followers": 5761, + "pfpUrl": "https://i.imgur.com/ZfjkWSo.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76607b6f78191eef8934eb45ecb030def67d8b33", + "etherscanUrl": "https://etherscan.io/address/0x76607b6f78191eef8934eb45ecb030def67d8b33", + "xHandle": "partsasquatch", + "xUrl": "https://twitter.com/partsasquatch", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x07427c476501e03b1802541625cefd1df24484d2", + "balanceRaw": "673891746544337633886", + "balanceFormatted": "673.891746544337633886", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07427c476501e03b1802541625cefd1df24484d2", + "etherscanUrl": "https://etherscan.io/address/0x07427c476501e03b1802541625cefd1df24484d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb187803a4ac9c5a498e470aab82de203f5870ab8", + "balanceRaw": "667149157624692200869", + "balanceFormatted": "667.149157624692200869", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb187803a4ac9c5a498e470aab82de203f5870ab8", + "etherscanUrl": "https://etherscan.io/address/0xb187803a4ac9c5a498e470aab82de203f5870ab8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x114d90ce0891727113eea7ba9307add0d015ba4b", + "balanceRaw": "659668907534714988269", + "balanceFormatted": "659.668907534714988269", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x114d90ce0891727113eea7ba9307add0d015ba4b", + "etherscanUrl": "https://etherscan.io/address/0x114d90ce0891727113eea7ba9307add0d015ba4b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4be82a293c31c853ed806284f132bc8ceb314d5e", + "balanceRaw": "649342038263738638095", + "balanceFormatted": "649.342038263738638095", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4be82a293c31c853ed806284f132bc8ceb314d5e", + "etherscanUrl": "https://etherscan.io/address/0x4be82a293c31c853ed806284f132bc8ceb314d5e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x921c973c4992d1c0011a8154b6862726759688bc", + "balanceRaw": "639992093636779401050", + "balanceFormatted": "639.99209363677940105", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x921c973c4992d1c0011a8154b6862726759688bc", + "etherscanUrl": "https://etherscan.io/address/0x921c973c4992d1c0011a8154b6862726759688bc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6c7d98079023f05c2b57dfc933fa0903a2c95411", + "balanceRaw": "638555348244022466048", + "balanceFormatted": "638.555348244022466048", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c7d98079023f05c2b57dfc933fa0903a2c95411", + "etherscanUrl": "https://etherscan.io/address/0x6c7d98079023f05c2b57dfc933fa0903a2c95411", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8dd66d34a93bb2e49c52ca6fdc0ac0c05c9e2172", + "balanceRaw": "634991019447417902469", + "balanceFormatted": "634.991019447417902469", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8dd66d34a93bb2e49c52ca6fdc0ac0c05c9e2172", + "etherscanUrl": "https://etherscan.io/address/0x8dd66d34a93bb2e49c52ca6fdc0ac0c05c9e2172", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9105b76e8560c7c23f8435e3f180a0600f9b0ad5", + "balanceRaw": "634414581474141065849", + "balanceFormatted": "634.414581474141065849", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9105b76e8560c7c23f8435e3f180a0600f9b0ad5", + "etherscanUrl": "https://etherscan.io/address/0x9105b76e8560c7c23f8435e3f180a0600f9b0ad5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x302d86e24d7474f0408a53e26a1111c041a94093", + "balanceRaw": "624870032663091333069", + "balanceFormatted": "624.870032663091333069", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x302d86e24d7474f0408a53e26a1111c041a94093", + "etherscanUrl": "https://etherscan.io/address/0x302d86e24d7474f0408a53e26a1111c041a94093", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd01fe03aba9eb73ff92e2b64e22daf99458e4f54", + "balanceRaw": "624688206136715372625", + "balanceFormatted": "624.688206136715372625", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd01fe03aba9eb73ff92e2b64e22daf99458e4f54", + "etherscanUrl": "https://etherscan.io/address/0xd01fe03aba9eb73ff92e2b64e22daf99458e4f54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x66f93a7d92231ce9b296ffb5d4045a01950b476d", + "balanceRaw": "624559887828300404265", + "balanceFormatted": "624.559887828300404265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66f93a7d92231ce9b296ffb5d4045a01950b476d", + "etherscanUrl": "https://etherscan.io/address/0x66f93a7d92231ce9b296ffb5d4045a01950b476d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf64f47f6b27c8d69ae2950c71bb4899387e0139", + "balanceRaw": "623608281280000000000", + "balanceFormatted": "623.60828128", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf64f47f6b27c8d69ae2950c71bb4899387e0139", + "etherscanUrl": "https://etherscan.io/address/0xaf64f47f6b27c8d69ae2950c71bb4899387e0139", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_485497", + "balanceRaw": "620000000000000000000", + "balanceFormatted": "620", + "lastTransferAt": null, + "username": "ficsik", + "displayName": "Vorobey 🎩", + "fid": 485497, + "followers": 475, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aedc735e-09e4-4599-afb5-96c0b8fca100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2d2078ee867e40c9f76e2eb8abbf47634341686", + "etherscanUrl": "https://etherscan.io/address/0xc2d2078ee867e40c9f76e2eb8abbf47634341686", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x58d7849378e2f7b082e204a22a7a082e4db85f18", + "balanceRaw": "617280611000000000000", + "balanceFormatted": "617.280611", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58d7849378e2f7b082e204a22a7a082e4db85f18", + "etherscanUrl": "https://etherscan.io/address/0x58d7849378e2f7b082e204a22a7a082e4db85f18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2dc37949d73cc648ca45c6e22253654a1f1865d8", + "balanceRaw": "602050810619682558256", + "balanceFormatted": "602.050810619682558256", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2dc37949d73cc648ca45c6e22253654a1f1865d8", + "etherscanUrl": "https://etherscan.io/address/0x2dc37949d73cc648ca45c6e22253654a1f1865d8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6b65eff428a3c224e7cacc547795d3c1f15fce79", + "balanceRaw": "598543117567732183378", + "balanceFormatted": "598.543117567732183378", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b65eff428a3c224e7cacc547795d3c1f15fce79", + "etherscanUrl": "https://etherscan.io/address/0x6b65eff428a3c224e7cacc547795d3c1f15fce79", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa890edc0aef41f163577a5c11ca703077ecdbe13", + "balanceRaw": "597577126346134566079", + "balanceFormatted": "597.577126346134566079", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa890edc0aef41f163577a5c11ca703077ecdbe13", + "etherscanUrl": "https://etherscan.io/address/0xa890edc0aef41f163577a5c11ca703077ecdbe13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2dcce04416ec8fad376b733fac16cfb03cfb189e", + "balanceRaw": "591173782242933296261", + "balanceFormatted": "591.173782242933296261", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2dcce04416ec8fad376b733fac16cfb03cfb189e", + "etherscanUrl": "https://etherscan.io/address/0x2dcce04416ec8fad376b733fac16cfb03cfb189e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7bacf95e95b9032c1a37830d48efaf66a9bd2c30", + "balanceRaw": "589291029917563166848", + "balanceFormatted": "589.291029917563166848", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7bacf95e95b9032c1a37830d48efaf66a9bd2c30", + "etherscanUrl": "https://etherscan.io/address/0x7bacf95e95b9032c1a37830d48efaf66a9bd2c30", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8c1a2ca1496f318067594a76c0276b29deca6fb", + "balanceRaw": "577100835208824753280", + "balanceFormatted": "577.10083520882475328", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8c1a2ca1496f318067594a76c0276b29deca6fb", + "etherscanUrl": "https://etherscan.io/address/0xf8c1a2ca1496f318067594a76c0276b29deca6fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x024045e87ebdc93ee190a2e60c7dc6c501a5893c", + "balanceRaw": "573161000000000000000", + "balanceFormatted": "573.161", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x024045e87ebdc93ee190a2e60c7dc6c501a5893c", + "etherscanUrl": "https://etherscan.io/address/0x024045e87ebdc93ee190a2e60c7dc6c501a5893c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xacdb45dcf58a8da1706468b5828dec484f37c5e3", + "balanceRaw": "560256896297505749083", + "balanceFormatted": "560.256896297505749083", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacdb45dcf58a8da1706468b5828dec484f37c5e3", + "etherscanUrl": "https://etherscan.io/address/0xacdb45dcf58a8da1706468b5828dec484f37c5e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x15deaacce662bcbc9fa55ab76feb9710b16be260", + "balanceRaw": "556113756235936502690", + "balanceFormatted": "556.11375623593650269", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15deaacce662bcbc9fa55ab76feb9710b16be260", + "etherscanUrl": "https://etherscan.io/address/0x15deaacce662bcbc9fa55ab76feb9710b16be260", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_268977", + "balanceRaw": "554437661727836809292", + "balanceFormatted": "554.437661727836809292", + "lastTransferAt": null, + "username": "einik", + "displayName": "einik", + "fid": 268977, + "followers": 2102, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/837d8dfd-39e1-4c72-5e82-bcdce4f3c700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfdc041664250f4137f3f0ce8167646f45e2ee753", + "etherscanUrl": "https://etherscan.io/address/0xfdc041664250f4137f3f0ce8167646f45e2ee753", + "xHandle": "feliperatfi", + "xUrl": "https://twitter.com/feliperatfi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x56aea0e4510e6f79b3e13581a5863a15a9f40d75", + "balanceRaw": "551383434380000000000", + "balanceFormatted": "551.38343438", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56aea0e4510e6f79b3e13581a5863a15a9f40d75", + "etherscanUrl": "https://etherscan.io/address/0x56aea0e4510e6f79b3e13581a5863a15a9f40d75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071", + "balanceRaw": "549999968901538014356", + "balanceFormatted": "549.999968901538014356", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071", + "etherscanUrl": "https://etherscan.io/address/0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x65961a1b0744662b695346b77de3c31fae9ca0fe", + "balanceRaw": "548037568048671617474", + "balanceFormatted": "548.037568048671617474", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65961a1b0744662b695346b77de3c31fae9ca0fe", + "etherscanUrl": "https://etherscan.io/address/0x65961a1b0744662b695346b77de3c31fae9ca0fe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5f569f81a0696bfccdc8b3809366d3c67b352ee3", + "balanceRaw": "544247943031028583676", + "balanceFormatted": "544.247943031028583676", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f569f81a0696bfccdc8b3809366d3c67b352ee3", + "etherscanUrl": "https://etherscan.io/address/0x5f569f81a0696bfccdc8b3809366d3c67b352ee3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1668", + "balanceRaw": "542203719396852243857", + "balanceFormatted": "542.203719396852243857", + "lastTransferAt": null, + "username": "tomu", + "displayName": "tomu", + "fid": 1668, + "followers": 21678, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b470eabb-b1a5-42c4-58ad-04a3c9be2e00/original", + "ensName": "tomu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x71738f8ba6853cf8c3ec2b98ef42d2306480c6ff", + "etherscanUrl": "https://etherscan.io/address/0x71738f8ba6853cf8c3ec2b98ef42d2306480c6ff", + "xHandle": "david_tomu", + "xUrl": "https://twitter.com/david_tomu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x48641f49e33da2d73a9b6d986d1545c35a57b2c7", + "balanceRaw": "541380720000000000000", + "balanceFormatted": "541.38072", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48641f49e33da2d73a9b6d986d1545c35a57b2c7", + "etherscanUrl": "https://etherscan.io/address/0x48641f49e33da2d73a9b6d986d1545c35a57b2c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73c4af31d6df48a730fdb82015e232205d6cf041", + "balanceRaw": "540330807656341582345", + "balanceFormatted": "540.330807656341582345", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73c4af31d6df48a730fdb82015e232205d6cf041", + "etherscanUrl": "https://etherscan.io/address/0x73c4af31d6df48a730fdb82015e232205d6cf041", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0589a28de396df27cd710d81103d8541e6371fa5", + "balanceRaw": "537893460638198671095", + "balanceFormatted": "537.893460638198671095", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0589a28de396df27cd710d81103d8541e6371fa5", + "etherscanUrl": "https://etherscan.io/address/0x0589a28de396df27cd710d81103d8541e6371fa5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed841526a8c7c90e30369afb363c3b6153311004", + "balanceRaw": "536338655199278471300", + "balanceFormatted": "536.3386551992784713", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed841526a8c7c90e30369afb363c3b6153311004", + "etherscanUrl": "https://etherscan.io/address/0xed841526a8c7c90e30369afb363c3b6153311004", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b7825c1f25cba1b5dbb119c54f39475e175a969", + "balanceRaw": "533726006625692969023", + "balanceFormatted": "533.726006625692969023", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b7825c1f25cba1b5dbb119c54f39475e175a969", + "etherscanUrl": "https://etherscan.io/address/0x7b7825c1f25cba1b5dbb119c54f39475e175a969", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x705f95654ab855abebb5aca678887c3333fb99c4", + "balanceRaw": "531220506920399590664", + "balanceFormatted": "531.220506920399590664", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x705f95654ab855abebb5aca678887c3333fb99c4", + "etherscanUrl": "https://etherscan.io/address/0x705f95654ab855abebb5aca678887c3333fb99c4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8308d51ab1beb4cdfb48ca5d1b15d8c0e96badd8", + "balanceRaw": "527102899190478296156", + "balanceFormatted": "527.102899190478296156", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8308d51ab1beb4cdfb48ca5d1b15d8c0e96badd8", + "etherscanUrl": "https://etherscan.io/address/0x8308d51ab1beb4cdfb48ca5d1b15d8c0e96badd8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05d314204172fcc504522288a9e57449f16486f9", + "balanceRaw": "520895294578143218618", + "balanceFormatted": "520.895294578143218618", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05d314204172fcc504522288a9e57449f16486f9", + "etherscanUrl": "https://etherscan.io/address/0x05d314204172fcc504522288a9e57449f16486f9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x349f7c57f5e6f0549a6f3d98c9d3d0f41de72c58", + "balanceRaw": "518374770510764294018", + "balanceFormatted": "518.374770510764294018", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x349f7c57f5e6f0549a6f3d98c9d3d0f41de72c58", + "etherscanUrl": "https://etherscan.io/address/0x349f7c57f5e6f0549a6f3d98c9d3d0f41de72c58", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xafecbbcca163d63f8c4b3b170adb12892a772f33", + "balanceRaw": "516981032664207317147", + "balanceFormatted": "516.981032664207317147", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafecbbcca163d63f8c4b3b170adb12892a772f33", + "etherscanUrl": "https://etherscan.io/address/0xafecbbcca163d63f8c4b3b170adb12892a772f33", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6a3e98f964e93f183a9e5bb607dd9df75110d2ac", + "balanceRaw": "513334236991072114266", + "balanceFormatted": "513.334236991072114266", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a3e98f964e93f183a9e5bb607dd9df75110d2ac", + "etherscanUrl": "https://etherscan.io/address/0x6a3e98f964e93f183a9e5bb607dd9df75110d2ac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21829", + "balanceRaw": "510066468165369729079", + "balanceFormatted": "510.066468165369729079", + "lastTransferAt": null, + "username": "way", + "displayName": "guozu🎩⛓️🔵 ⚪️🐹", + "fid": 21829, + "followers": 942, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/534442f2-5356-4a22-8dff-a2bf9e620f00/original", + "ensName": "guozu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7a566e3cb6060e596961fde5fe36c764a0b7813b", + "etherscanUrl": "https://etherscan.io/address/0x7a566e3cb6060e596961fde5fe36c764a0b7813b", + "xHandle": "lost12306", + "xUrl": "https://twitter.com/lost12306", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8d4328de104bf34b03a070e5da9e2def9784b8f3", + "balanceRaw": "500485528439158934524", + "balanceFormatted": "500.485528439158934524", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d4328de104bf34b03a070e5da9e2def9784b8f3", + "etherscanUrl": "https://etherscan.io/address/0x8d4328de104bf34b03a070e5da9e2def9784b8f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_226372", + "balanceRaw": "500046208077319120698", + "balanceFormatted": "500.046208077319120698", + "lastTransferAt": null, + "username": "billbandito", + "displayName": "billbandito 🎩", + "fid": 226372, + "followers": 1310, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee08238e-8853-4681-bc71-30e3fe211500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19c605e89a64b231f1551f72de310e38e9bba5c4", + "etherscanUrl": "https://etherscan.io/address/0x19c605e89a64b231f1551f72de310e38e9bba5c4", + "xHandle": "billbandito", + "xUrl": "https://twitter.com/billbandito", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x82420279fcd0ad0be74096b28b92cc459581d9c2", + "balanceRaw": "500000000000000000000", + "balanceFormatted": "500", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x82420279fcd0ad0be74096b28b92cc459581d9c2", + "etherscanUrl": "https://etherscan.io/address/0x82420279fcd0ad0be74096b28b92cc459581d9c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3cfac80fa7402b7a200ac514ef27b8c4b608cddc", + "balanceRaw": "500000000000000000000", + "balanceFormatted": "500", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3cfac80fa7402b7a200ac514ef27b8c4b608cddc", + "etherscanUrl": "https://etherscan.io/address/0x3cfac80fa7402b7a200ac514ef27b8c4b608cddc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x494dbe5a26948fc9c67a1b22447812d7ac9e9393", + "balanceRaw": "493306343047987957860", + "balanceFormatted": "493.30634304798795786", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x494dbe5a26948fc9c67a1b22447812d7ac9e9393", + "etherscanUrl": "https://etherscan.io/address/0x494dbe5a26948fc9c67a1b22447812d7ac9e9393", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb77d1c34c99a3db22314f512acc3058e550b9bb9", + "balanceRaw": "489612157183034537976", + "balanceFormatted": "489.612157183034537976", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb77d1c34c99a3db22314f512acc3058e550b9bb9", + "etherscanUrl": "https://etherscan.io/address/0xb77d1c34c99a3db22314f512acc3058e550b9bb9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8437abb337b0675c76cefeaef33e10ce2792865b", + "balanceRaw": "488565511948275615402", + "balanceFormatted": "488.565511948275615402", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8437abb337b0675c76cefeaef33e10ce2792865b", + "etherscanUrl": "https://etherscan.io/address/0x8437abb337b0675c76cefeaef33e10ce2792865b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x504ce9e51e508c85a161058c12e970a903d482fc", + "balanceRaw": "479491566800000000000", + "balanceFormatted": "479.4915668", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x504ce9e51e508c85a161058c12e970a903d482fc", + "etherscanUrl": "https://etherscan.io/address/0x504ce9e51e508c85a161058c12e970a903d482fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xef6de17ec1a07eb4531b595cf0d8608177b94f9c", + "balanceRaw": "478607790240923064853", + "balanceFormatted": "478.607790240923064853", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef6de17ec1a07eb4531b595cf0d8608177b94f9c", + "etherscanUrl": "https://etherscan.io/address/0xef6de17ec1a07eb4531b595cf0d8608177b94f9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5a68a6ea21d542a1182bb1e380978c903e120751", + "balanceRaw": "477104448342325128024", + "balanceFormatted": "477.104448342325128024", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a68a6ea21d542a1182bb1e380978c903e120751", + "etherscanUrl": "https://etherscan.io/address/0x5a68a6ea21d542a1182bb1e380978c903e120751", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad69b56ccf3ba166ce81d13c49cfa72ea27339db", + "balanceRaw": "476245935542070300850", + "balanceFormatted": "476.24593554207030085", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad69b56ccf3ba166ce81d13c49cfa72ea27339db", + "etherscanUrl": "https://etherscan.io/address/0xad69b56ccf3ba166ce81d13c49cfa72ea27339db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x10638c0da58ad38b0d8cef534bd6ded271700843", + "balanceRaw": "475976858474569905616", + "balanceFormatted": "475.976858474569905616", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10638c0da58ad38b0d8cef534bd6ded271700843", + "etherscanUrl": "https://etherscan.io/address/0x10638c0da58ad38b0d8cef534bd6ded271700843", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x90632858ac76ac03713e74d1c56d67437d647cee", + "balanceRaw": "473646066711055587983", + "balanceFormatted": "473.646066711055587983", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90632858ac76ac03713e74d1c56d67437d647cee", + "etherscanUrl": "https://etherscan.io/address/0x90632858ac76ac03713e74d1c56d67437d647cee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9224cf7956b8787f1e015349ba2937cef29215d8", + "balanceRaw": "460950266046138695105", + "balanceFormatted": "460.950266046138695105", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9224cf7956b8787f1e015349ba2937cef29215d8", + "etherscanUrl": "https://etherscan.io/address/0x9224cf7956b8787f1e015349ba2937cef29215d8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde7ed18083adeeec6c6c1650d2e9c183d8a33274", + "balanceRaw": "460070036107967565021", + "balanceFormatted": "460.070036107967565021", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde7ed18083adeeec6c6c1650d2e9c183d8a33274", + "etherscanUrl": "https://etherscan.io/address/0xde7ed18083adeeec6c6c1650d2e9c183d8a33274", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe8d661f2b87f75dddbeca33548d0397270551049", + "balanceRaw": "459457532792815444436", + "balanceFormatted": "459.457532792815444436", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8d661f2b87f75dddbeca33548d0397270551049", + "etherscanUrl": "https://etherscan.io/address/0xe8d661f2b87f75dddbeca33548d0397270551049", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6652587803f3b8ff1ba810b05effd872390fc217", + "balanceRaw": "459452296085755933601", + "balanceFormatted": "459.452296085755933601", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6652587803f3b8ff1ba810b05effd872390fc217", + "etherscanUrl": "https://etherscan.io/address/0x6652587803f3b8ff1ba810b05effd872390fc217", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd7fcef68dd72b3c205e4e410023dceab1db9b281", + "balanceRaw": "459095684867705394971", + "balanceFormatted": "459.095684867705394971", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7fcef68dd72b3c205e4e410023dceab1db9b281", + "etherscanUrl": "https://etherscan.io/address/0xd7fcef68dd72b3c205e4e410023dceab1db9b281", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3ad8842eeded3a063d621eeae09216ef5e4f3e95", + "balanceRaw": "458677518061940196982", + "balanceFormatted": "458.677518061940196982", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ad8842eeded3a063d621eeae09216ef5e4f3e95", + "etherscanUrl": "https://etherscan.io/address/0x3ad8842eeded3a063d621eeae09216ef5e4f3e95", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c9b201ce29a7bc3f0a37bb1f17899bf5ec83b29", + "balanceRaw": "448486770788543973519", + "balanceFormatted": "448.486770788543973519", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c9b201ce29a7bc3f0a37bb1f17899bf5ec83b29", + "etherscanUrl": "https://etherscan.io/address/0x0c9b201ce29a7bc3f0a37bb1f17899bf5ec83b29", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x50e6d538dd6bc2d8db28c4840ecdc7bad69c541e", + "balanceRaw": "447979583675361164109", + "balanceFormatted": "447.979583675361164109", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50e6d538dd6bc2d8db28c4840ecdc7bad69c541e", + "etherscanUrl": "https://etherscan.io/address/0x50e6d538dd6bc2d8db28c4840ecdc7bad69c541e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99d3c8a836bd24dbbf12e5fe6dfc0519278ed07c", + "balanceRaw": "438674615501312040291", + "balanceFormatted": "438.674615501312040291", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99d3c8a836bd24dbbf12e5fe6dfc0519278ed07c", + "etherscanUrl": "https://etherscan.io/address/0x99d3c8a836bd24dbbf12e5fe6dfc0519278ed07c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x23029bd661dd7fac3ed8c325ccb73919ab35ed84", + "balanceRaw": "435324101930421872412", + "balanceFormatted": "435.324101930421872412", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23029bd661dd7fac3ed8c325ccb73919ab35ed84", + "etherscanUrl": "https://etherscan.io/address/0x23029bd661dd7fac3ed8c325ccb73919ab35ed84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_301292", + "balanceRaw": "431344473808898903542", + "balanceFormatted": "431.344473808898903542", + "lastTransferAt": null, + "username": "multichainmaxi", + "displayName": "Multi Chain Maxi", + "fid": 301292, + "followers": 8, + "pfpUrl": "https://i.imgur.com/fO0bdej.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06197e5302f24f02117af37aa07fc1b6449b7f94", + "etherscanUrl": "https://etherscan.io/address/0x06197e5302f24f02117af37aa07fc1b6449b7f94", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9cbaa68affcbadd644a5bef878ba3a28258f401c", + "balanceRaw": "430275363432126185323", + "balanceFormatted": "430.275363432126185323", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9cbaa68affcbadd644a5bef878ba3a28258f401c", + "etherscanUrl": "https://etherscan.io/address/0x9cbaa68affcbadd644a5bef878ba3a28258f401c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0cf1611ec22f0e78c31eb1f08fc04b2d619a2326", + "balanceRaw": "424950379625138489938", + "balanceFormatted": "424.950379625138489938", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0cf1611ec22f0e78c31eb1f08fc04b2d619a2326", + "etherscanUrl": "https://etherscan.io/address/0x0cf1611ec22f0e78c31eb1f08fc04b2d619a2326", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5fd0ff1925fd29c13fb4fa45869ace06e56a602a", + "balanceRaw": "421563384775098642066", + "balanceFormatted": "421.563384775098642066", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fd0ff1925fd29c13fb4fa45869ace06e56a602a", + "etherscanUrl": "https://etherscan.io/address/0x5fd0ff1925fd29c13fb4fa45869ace06e56a602a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_429", + "balanceRaw": "420000000000000000000", + "balanceFormatted": "420", + "lastTransferAt": null, + "username": "czar", + "displayName": "czar ", + "fid": 429, + "followers": 8780, + "pfpUrl": "https://lh3.googleusercontent.com/X0af6snDGRShmvCYTza1s0WXDssHuvXV5lsQOv-8E_dWTlo89CbZ1gd-Ty5yaLNEZ6klrswNjHU_lPybSAep336eDxY9Ik7L0uC8aw", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec5fe052c043b497dafed0519ce61139996d7d69", + "etherscanUrl": "https://etherscan.io/address/0xec5fe052c043b497dafed0519ce61139996d7d69", + "xHandle": "_bloodbones", + "xUrl": "https://twitter.com/_bloodbones", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5c559f4183b70792ea255f68add1a1c95e98713d", + "balanceRaw": "419747472834937116099", + "balanceFormatted": "419.747472834937116099", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c559f4183b70792ea255f68add1a1c95e98713d", + "etherscanUrl": "https://etherscan.io/address/0x5c559f4183b70792ea255f68add1a1c95e98713d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb46acf18bbb4e6f745a672ec361c98d6881b6a5b", + "balanceRaw": "419250802749063964612", + "balanceFormatted": "419.250802749063964612", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb46acf18bbb4e6f745a672ec361c98d6881b6a5b", + "etherscanUrl": "https://etherscan.io/address/0xb46acf18bbb4e6f745a672ec361c98d6881b6a5b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x58214b8d884159ecb44bcb2935f0db69b6364bbe", + "balanceRaw": "419240522845936919359", + "balanceFormatted": "419.240522845936919359", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58214b8d884159ecb44bcb2935f0db69b6364bbe", + "etherscanUrl": "https://etherscan.io/address/0x58214b8d884159ecb44bcb2935f0db69b6364bbe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3fe643095a759ebfa6186617e341b698c40c5233", + "balanceRaw": "416855702742182796601", + "balanceFormatted": "416.855702742182796601", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fe643095a759ebfa6186617e341b698c40c5233", + "etherscanUrl": "https://etherscan.io/address/0x3fe643095a759ebfa6186617e341b698c40c5233", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c9cad8a30e208331b8dcb29641a054b42528524", + "balanceRaw": "416616217497547498606", + "balanceFormatted": "416.616217497547498606", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c9cad8a30e208331b8dcb29641a054b42528524", + "etherscanUrl": "https://etherscan.io/address/0x8c9cad8a30e208331b8dcb29641a054b42528524", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_347930", + "balanceRaw": "412999263548042992406", + "balanceFormatted": "412.999263548042992406", + "lastTransferAt": null, + "username": "taylorwebb.eth", + "displayName": "TaylorWebb.eth", + "fid": 347930, + "followers": 2619, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8e3f259c-8536-425d-feee-b84e1f126300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6dc8f1d4841ebe9b85da130db9918f3cf07c1a9a", + "etherscanUrl": "https://etherscan.io/address/0x6dc8f1d4841ebe9b85da130db9918f3cf07c1a9a", + "xHandle": "taylorwebb_eth", + "xUrl": "https://twitter.com/taylorwebb_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x97076d58dcd034c8a53b7d98baa36e1ab5abcdb8", + "balanceRaw": "410834064620244831893", + "balanceFormatted": "410.834064620244831893", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x97076d58dcd034c8a53b7d98baa36e1ab5abcdb8", + "etherscanUrl": "https://etherscan.io/address/0x97076d58dcd034c8a53b7d98baa36e1ab5abcdb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf7c6104a11429803fd643f9e86c111c11a557926", + "balanceRaw": "410508953071003008398", + "balanceFormatted": "410.508953071003008398", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7c6104a11429803fd643f9e86c111c11a557926", + "etherscanUrl": "https://etherscan.io/address/0xf7c6104a11429803fd643f9e86c111c11a557926", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9e62f38f948b0ab5d277faa6c379307d98953ada", + "balanceRaw": "409423517790003313910", + "balanceFormatted": "409.42351779000331391", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e62f38f948b0ab5d277faa6c379307d98953ada", + "etherscanUrl": "https://etherscan.io/address/0x9e62f38f948b0ab5d277faa6c379307d98953ada", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf027f3918887f364a01ef6288780475146cbaec3", + "balanceRaw": "405206149475507714553", + "balanceFormatted": "405.206149475507714553", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf027f3918887f364a01ef6288780475146cbaec3", + "etherscanUrl": "https://etherscan.io/address/0xf027f3918887f364a01ef6288780475146cbaec3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x95dec0ba8ed45d3e91b5e57a7e7d480eb8fb77ef", + "balanceRaw": "403362676113425875045", + "balanceFormatted": "403.362676113425875045", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95dec0ba8ed45d3e91b5e57a7e7d480eb8fb77ef", + "etherscanUrl": "https://etherscan.io/address/0x95dec0ba8ed45d3e91b5e57a7e7d480eb8fb77ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60f5e75938419667305da249ff9b2ea2985eb082", + "balanceRaw": "401057433532689178119", + "balanceFormatted": "401.057433532689178119", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60f5e75938419667305da249ff9b2ea2985eb082", + "etherscanUrl": "https://etherscan.io/address/0x60f5e75938419667305da249ff9b2ea2985eb082", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x445f71d5c7b67e24bd54c6b21b5ce66292effbb8", + "balanceRaw": "400850354668297778574", + "balanceFormatted": "400.850354668297778574", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x445f71d5c7b67e24bd54c6b21b5ce66292effbb8", + "etherscanUrl": "https://etherscan.io/address/0x445f71d5c7b67e24bd54c6b21b5ce66292effbb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60c84a74b4d44f600e2667d567080c431c60018d", + "balanceRaw": "400000000000000000000", + "balanceFormatted": "400", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60c84a74b4d44f600e2667d567080c431c60018d", + "etherscanUrl": "https://etherscan.io/address/0x60c84a74b4d44f600e2667d567080c431c60018d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4123ffc81579e38dfff74b75d8bdf21c41e62237", + "balanceRaw": "400000000000000000000", + "balanceFormatted": "400", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4123ffc81579e38dfff74b75d8bdf21c41e62237", + "etherscanUrl": "https://etherscan.io/address/0x4123ffc81579e38dfff74b75d8bdf21c41e62237", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x891653c071a19d89b737fb440ca7c6d00e55a942", + "balanceRaw": "397422311409048754762", + "balanceFormatted": "397.422311409048754762", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x891653c071a19d89b737fb440ca7c6d00e55a942", + "etherscanUrl": "https://etherscan.io/address/0x891653c071a19d89b737fb440ca7c6d00e55a942", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x43a64c64d773b20b7f817cdd984f71be4da5dc1e", + "balanceRaw": "397091205480959489631", + "balanceFormatted": "397.091205480959489631", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43a64c64d773b20b7f817cdd984f71be4da5dc1e", + "etherscanUrl": "https://etherscan.io/address/0x43a64c64d773b20b7f817cdd984f71be4da5dc1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x85b5902236d4b22af643319dca41d6ed7343bb32", + "balanceRaw": "394759102657244267666", + "balanceFormatted": "394.759102657244267666", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85b5902236d4b22af643319dca41d6ed7343bb32", + "etherscanUrl": "https://etherscan.io/address/0x85b5902236d4b22af643319dca41d6ed7343bb32", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7d839c938b3a16821e01b8e20d3d0d92a6f49f89", + "balanceRaw": "392565424225677947773", + "balanceFormatted": "392.565424225677947773", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d839c938b3a16821e01b8e20d3d0d92a6f49f89", + "etherscanUrl": "https://etherscan.io/address/0x7d839c938b3a16821e01b8e20d3d0d92a6f49f89", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x325e4c05bc02320636c307c862a96393dd53f34f", + "balanceRaw": "391100000012000000000", + "balanceFormatted": "391.100000012", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x325e4c05bc02320636c307c862a96393dd53f34f", + "etherscanUrl": "https://etherscan.io/address/0x325e4c05bc02320636c307c862a96393dd53f34f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe5379d2df1a854019482b33c77e5c4e4c5d406f8", + "balanceRaw": "390074548518650899201", + "balanceFormatted": "390.074548518650899201", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe5379d2df1a854019482b33c77e5c4e4c5d406f8", + "etherscanUrl": "https://etherscan.io/address/0xe5379d2df1a854019482b33c77e5c4e4c5d406f8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xabe8fe965caafa63a4537b30eaebe4b97af52e43", + "balanceRaw": "388337500000000000000", + "balanceFormatted": "388.3375", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabe8fe965caafa63a4537b30eaebe4b97af52e43", + "etherscanUrl": "https://etherscan.io/address/0xabe8fe965caafa63a4537b30eaebe4b97af52e43", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x00000b7a7a859f1b7ab55579fd4e7b0b22064f3d", + "balanceRaw": "383768641746989299149", + "balanceFormatted": "383.768641746989299149", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00000b7a7a859f1b7ab55579fd4e7b0b22064f3d", + "etherscanUrl": "https://etherscan.io/address/0x00000b7a7a859f1b7ab55579fd4e7b0b22064f3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9ebc7bae8f55d09e28a907c27babdc1451e6f60f", + "balanceRaw": "382952946420123874722", + "balanceFormatted": "382.952946420123874722", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ebc7bae8f55d09e28a907c27babdc1451e6f60f", + "etherscanUrl": "https://etherscan.io/address/0x9ebc7bae8f55d09e28a907c27babdc1451e6f60f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4be879f966b863144f1ea478a8cfa3ee58add381", + "balanceRaw": "381049493353829005735", + "balanceFormatted": "381.049493353829005735", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4be879f966b863144f1ea478a8cfa3ee58add381", + "etherscanUrl": "https://etherscan.io/address/0x4be879f966b863144f1ea478a8cfa3ee58add381", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9fe37742b5a4dd3e0d777f9a22acca9d16a2c098", + "balanceRaw": "376136354715678801763", + "balanceFormatted": "376.136354715678801763", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fe37742b5a4dd3e0d777f9a22acca9d16a2c098", + "etherscanUrl": "https://etherscan.io/address/0x9fe37742b5a4dd3e0d777f9a22acca9d16a2c098", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6834338666bb5dbe61a4f1f64d1fc3241654eace", + "balanceRaw": "375432652572346741039", + "balanceFormatted": "375.432652572346741039", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6834338666bb5dbe61a4f1f64d1fc3241654eace", + "etherscanUrl": "https://etherscan.io/address/0x6834338666bb5dbe61a4f1f64d1fc3241654eace", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe97392dfa4c71c9b0dceb19c6a476835fda56397", + "balanceRaw": "373191986093927214990", + "balanceFormatted": "373.19198609392721499", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe97392dfa4c71c9b0dceb19c6a476835fda56397", + "etherscanUrl": "https://etherscan.io/address/0xe97392dfa4c71c9b0dceb19c6a476835fda56397", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa1d5e7408b6744fa45a488a3c2a179c2e2688685", + "balanceRaw": "366888100441506328398", + "balanceFormatted": "366.888100441506328398", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1d5e7408b6744fa45a488a3c2a179c2e2688685", + "etherscanUrl": "https://etherscan.io/address/0xa1d5e7408b6744fa45a488a3c2a179c2e2688685", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_274042", + "balanceRaw": "366815729889544047207", + "balanceFormatted": "366.815729889544047207", + "lastTransferAt": null, + "username": "leftyyyy", + "displayName": "leftyyyy", + "fid": 274042, + "followers": 186, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c512c409-a99d-4242-2d70-e5a0d6962700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c0b446e33355f5b0325d2aa38e35b760ff6f78c", + "etherscanUrl": "https://etherscan.io/address/0x8c0b446e33355f5b0325d2aa38e35b760ff6f78c", + "xHandle": "leftyyyy_eth", + "xUrl": "https://twitter.com/leftyyyy_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_742756", + "balanceRaw": "365000064758755758765", + "balanceFormatted": "365.000064758755758765", + "lastTransferAt": null, + "username": "metamediadao.eth", + "displayName": "MetaMedia", + "fid": 742756, + "followers": 29, + "pfpUrl": "https://supercast.mypinata.cloud/ipfs/QmXigm81EeuV7YRMY3WKYW77DE79jWks28ZknSAsVHdQkU?filename=2025-01-28-18.56.46.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0078ae1617b89bbf219ebee143cad69461805026", + "etherscanUrl": "https://etherscan.io/address/0x0078ae1617b89bbf219ebee143cad69461805026", + "xHandle": "metamediadao", + "xUrl": "https://twitter.com/metamediadao", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x80ed220084d5fc6776afe2ed1e4d46fc85a3a034", + "balanceRaw": "364600000000000119378", + "balanceFormatted": "364.600000000000119378", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80ed220084d5fc6776afe2ed1e4d46fc85a3a034", + "etherscanUrl": "https://etherscan.io/address/0x80ed220084d5fc6776afe2ed1e4d46fc85a3a034", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeb7cd9b035f6ef4f05a3b0c818fa1f40eca4518d", + "balanceRaw": "364460854499563013170", + "balanceFormatted": "364.46085449956301317", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb7cd9b035f6ef4f05a3b0c818fa1f40eca4518d", + "etherscanUrl": "https://etherscan.io/address/0xeb7cd9b035f6ef4f05a3b0c818fa1f40eca4518d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc964a73bde38e2758fa9638bbf9a54431f31339d", + "balanceRaw": "363561300000000000000", + "balanceFormatted": "363.5613", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc964a73bde38e2758fa9638bbf9a54431f31339d", + "etherscanUrl": "https://etherscan.io/address/0xc964a73bde38e2758fa9638bbf9a54431f31339d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba404463f73518fea84a3d61ee4c0c6ed897e6ba", + "balanceRaw": "360088847774127307471", + "balanceFormatted": "360.088847774127307471", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba404463f73518fea84a3d61ee4c0c6ed897e6ba", + "etherscanUrl": "https://etherscan.io/address/0xba404463f73518fea84a3d61ee4c0c6ed897e6ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x30db01087febd7b67dc486812b322b4867cb8ca7", + "balanceRaw": "354773877600450615256", + "balanceFormatted": "354.773877600450615256", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30db01087febd7b67dc486812b322b4867cb8ca7", + "etherscanUrl": "https://etherscan.io/address/0x30db01087febd7b67dc486812b322b4867cb8ca7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_498910", + "balanceRaw": "354742419363510491776", + "balanceFormatted": "354.742419363510491776", + "lastTransferAt": null, + "username": "yobo", + "displayName": "yobo", + "fid": 498910, + "followers": 170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/edcef297-dcbd-442d-4607-e257ad606200/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d17aa6d59ed660b52e459b137ac9834fd18fb58", + "etherscanUrl": "https://etherscan.io/address/0x5d17aa6d59ed660b52e459b137ac9834fd18fb58", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c84b3b05307d21c4579c13b134efdd4755d2e01", + "balanceRaw": "353225184562365993877", + "balanceFormatted": "353.225184562365993877", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c84b3b05307d21c4579c13b134efdd4755d2e01", + "etherscanUrl": "https://etherscan.io/address/0x3c84b3b05307d21c4579c13b134efdd4755d2e01", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe1121ccfaa8d454cb77beb38001451b4ebe52445", + "balanceRaw": "351518898752550496966", + "balanceFormatted": "351.518898752550496966", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1121ccfaa8d454cb77beb38001451b4ebe52445", + "etherscanUrl": "https://etherscan.io/address/0xe1121ccfaa8d454cb77beb38001451b4ebe52445", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff510f0198686fa4140535ffedd10fa4e7996ac0", + "balanceRaw": "351096156863143361522", + "balanceFormatted": "351.096156863143361522", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff510f0198686fa4140535ffedd10fa4e7996ac0", + "etherscanUrl": "https://etherscan.io/address/0xff510f0198686fa4140535ffedd10fa4e7996ac0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x519ebc5eaa5b6e9c05cb238bd81b40d2534b13ab", + "balanceRaw": "350639139053339139219", + "balanceFormatted": "350.639139053339139219", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x519ebc5eaa5b6e9c05cb238bd81b40d2534b13ab", + "etherscanUrl": "https://etherscan.io/address/0x519ebc5eaa5b6e9c05cb238bd81b40d2534b13ab", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x85adc60471886ba677ee561136b9e2c6e577992d", + "balanceRaw": "350507052713221461111", + "balanceFormatted": "350.507052713221461111", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85adc60471886ba677ee561136b9e2c6e577992d", + "etherscanUrl": "https://etherscan.io/address/0x85adc60471886ba677ee561136b9e2c6e577992d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xadafeae7b38d54b60bb0d4caa6351a128d9a1f0c", + "balanceRaw": "350040507650454149421", + "balanceFormatted": "350.040507650454149421", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xadafeae7b38d54b60bb0d4caa6351a128d9a1f0c", + "etherscanUrl": "https://etherscan.io/address/0xadafeae7b38d54b60bb0d4caa6351a128d9a1f0c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe8f1410bcf8b809c6b26a3fe8330977b0ad7f7ed", + "balanceRaw": "347669143080278718419", + "balanceFormatted": "347.669143080278718419", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8f1410bcf8b809c6b26a3fe8330977b0ad7f7ed", + "etherscanUrl": "https://etherscan.io/address/0xe8f1410bcf8b809c6b26a3fe8330977b0ad7f7ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1cd308b46ba09f25eb29ad92ad68587b29843db4", + "balanceRaw": "347558801789370153045", + "balanceFormatted": "347.558801789370153045", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1cd308b46ba09f25eb29ad92ad68587b29843db4", + "etherscanUrl": "https://etherscan.io/address/0x1cd308b46ba09f25eb29ad92ad68587b29843db4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x20755f335ed6547dec97fd9193699e771abe9222", + "balanceRaw": "345211873261140244867", + "balanceFormatted": "345.211873261140244867", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20755f335ed6547dec97fd9193699e771abe9222", + "etherscanUrl": "https://etherscan.io/address/0x20755f335ed6547dec97fd9193699e771abe9222", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x017509667887ae02b114b46dbf81a025e37d1a75", + "balanceRaw": "342443114381422217764", + "balanceFormatted": "342.443114381422217764", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x017509667887ae02b114b46dbf81a025e37d1a75", + "etherscanUrl": "https://etherscan.io/address/0x017509667887ae02b114b46dbf81a025e37d1a75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3b7eade8739ea9bb9bc3298ba9fb4e7db25adf2a", + "balanceRaw": "333470000000000000000", + "balanceFormatted": "333.47", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b7eade8739ea9bb9bc3298ba9fb4e7db25adf2a", + "etherscanUrl": "https://etherscan.io/address/0x3b7eade8739ea9bb9bc3298ba9fb4e7db25adf2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_552113", + "balanceRaw": "332968181099413705597", + "balanceFormatted": "332.968181099413705597", + "lastTransferAt": null, + "username": "everglow", + "displayName": "4u", + "fid": 552113, + "followers": 16, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46cb9cd3-6935-434b-36d0-1afec2d0ca00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x319b587b43f4b28d7bfd526c23b970657b5948c1", + "etherscanUrl": "https://etherscan.io/address/0x319b587b43f4b28d7bfd526c23b970657b5948c1", + "xHandle": "4u4everglow", + "xUrl": "https://twitter.com/4u4everglow", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeb730c8b66d5136b48c0242f6c2c0f359c752bb2", + "balanceRaw": "330344945728006672636", + "balanceFormatted": "330.344945728006672636", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb730c8b66d5136b48c0242f6c2c0f359c752bb2", + "etherscanUrl": "https://etherscan.io/address/0xeb730c8b66d5136b48c0242f6c2c0f359c752bb2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x411118324f766b4bda7f3b0c03e8c0e37b70feaa", + "balanceRaw": "328916089487422312908", + "balanceFormatted": "328.916089487422312908", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x411118324f766b4bda7f3b0c03e8c0e37b70feaa", + "etherscanUrl": "https://etherscan.io/address/0x411118324f766b4bda7f3b0c03e8c0e37b70feaa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbf31cafcc018f4bc994b43bcc011f3876d5c862a", + "balanceRaw": "326208625254155353625", + "balanceFormatted": "326.208625254155353625", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf31cafcc018f4bc994b43bcc011f3876d5c862a", + "etherscanUrl": "https://etherscan.io/address/0xbf31cafcc018f4bc994b43bcc011f3876d5c862a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_415872", + "balanceRaw": "324822883602656179980", + "balanceFormatted": "324.82288360265617998", + "lastTransferAt": null, + "username": "boothtempleton.eth", + "displayName": "Booth Templeton", + "fid": 415872, + "followers": 6802, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/394dba3e-7cbf-4f25-0bfd-bd2d0cf88000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x460f26b3f84d04521aa8125aeada55046953644d", + "etherscanUrl": "https://etherscan.io/address/0x460f26b3f84d04521aa8125aeada55046953644d", + "xHandle": "boothtempleton", + "xUrl": "https://twitter.com/boothtempleton", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf5c804effad38b4e327fe3f4758668a793828372", + "balanceRaw": "323103356221402678961", + "balanceFormatted": "323.103356221402678961", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf5c804effad38b4e327fe3f4758668a793828372", + "etherscanUrl": "https://etherscan.io/address/0xf5c804effad38b4e327fe3f4758668a793828372", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x186185b4c7290d3e2a58578d497791b2dc7f9563", + "balanceRaw": "321540842081504924748", + "balanceFormatted": "321.540842081504924748", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x186185b4c7290d3e2a58578d497791b2dc7f9563", + "etherscanUrl": "https://etherscan.io/address/0x186185b4c7290d3e2a58578d497791b2dc7f9563", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf8ba42f9b239f43c70c7832a72653f853999f73", + "balanceRaw": "314556341728845906855", + "balanceFormatted": "314.556341728845906855", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf8ba42f9b239f43c70c7832a72653f853999f73", + "etherscanUrl": "https://etherscan.io/address/0xaf8ba42f9b239f43c70c7832a72653f853999f73", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x78f617fb4636ed0f8139280e0cf02fb7a4e5eb05", + "balanceRaw": "313931448042982315639", + "balanceFormatted": "313.931448042982315639", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78f617fb4636ed0f8139280e0cf02fb7a4e5eb05", + "etherscanUrl": "https://etherscan.io/address/0x78f617fb4636ed0f8139280e0cf02fb7a4e5eb05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5546d4f3830836fd0ff1640d789e103284fe680b", + "balanceRaw": "310925369471631888579", + "balanceFormatted": "310.925369471631888579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5546d4f3830836fd0ff1640d789e103284fe680b", + "etherscanUrl": "https://etherscan.io/address/0x5546d4f3830836fd0ff1640d789e103284fe680b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x544c4ba3cf1620cd56693d6bb4d2c234aea4fda7", + "balanceRaw": "309024012164654768434", + "balanceFormatted": "309.024012164654768434", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x544c4ba3cf1620cd56693d6bb4d2c234aea4fda7", + "etherscanUrl": "https://etherscan.io/address/0x544c4ba3cf1620cd56693d6bb4d2c234aea4fda7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2c3a895cf6bbfbe88b4a35494d2ff3392971d688", + "balanceRaw": "307284285224241451273", + "balanceFormatted": "307.284285224241451273", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c3a895cf6bbfbe88b4a35494d2ff3392971d688", + "etherscanUrl": "https://etherscan.io/address/0x2c3a895cf6bbfbe88b4a35494d2ff3392971d688", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8447", + "balanceRaw": "306160963243797828156", + "balanceFormatted": "306.160963243797828156", + "lastTransferAt": null, + "username": "eriks", + "displayName": "Erik", + "fid": 8447, + "followers": 82073, + "pfpUrl": "https://i.seadn.io/s/raw/files/ad549379a71c7948b405e10d84e5e7b7.png?w=500&auto=format", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x140022b7554d5e5ad88c3148a48a65409c4bcf44", + "etherscanUrl": "https://etherscan.io/address/0x140022b7554d5e5ad88c3148a48a65409c4bcf44", + "xHandle": "erikpsmit", + "xUrl": "https://twitter.com/erikpsmit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6fe8552fe5f30569f853b3510add745111245529", + "balanceRaw": "304602984240000000000", + "balanceFormatted": "304.60298424", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6fe8552fe5f30569f853b3510add745111245529", + "etherscanUrl": "https://etherscan.io/address/0x6fe8552fe5f30569f853b3510add745111245529", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13267", + "balanceRaw": "304031285093529440389", + "balanceFormatted": "304.031285093529440389", + "lastTransferAt": null, + "username": "daddysgotit.eth", + "displayName": "cosmic-thinker.eth 🎩", + "fid": 13267, + "followers": 4332, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f024a9a-4563-4779-afc4-45ac4835bb00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd1ec7cce2932f5a3d7cf0df558058d343d36e46", + "etherscanUrl": "https://etherscan.io/address/0xcd1ec7cce2932f5a3d7cf0df558058d343d36e46", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8afaae1f3556ae853512b48b53e8d253dd060a20", + "balanceRaw": "303161370563704913845", + "balanceFormatted": "303.161370563704913845", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8afaae1f3556ae853512b48b53e8d253dd060a20", + "etherscanUrl": "https://etherscan.io/address/0x8afaae1f3556ae853512b48b53e8d253dd060a20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x486e39f9406adb55cff8323626787565cdf4174e", + "balanceRaw": "303052294217971035649", + "balanceFormatted": "303.052294217971035649", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x486e39f9406adb55cff8323626787565cdf4174e", + "etherscanUrl": "https://etherscan.io/address/0x486e39f9406adb55cff8323626787565cdf4174e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11548", + "balanceRaw": "302357262871500884457", + "balanceFormatted": "302.357262871500884457", + "lastTransferAt": null, + "username": "mcoso.eth", + "displayName": "McOso 🎩🐊", + "fid": 11548, + "followers": 1082, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/642a78f6-8e11-43e2-3bd8-3d14ce87be00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0aa9d7cdabe4e035587885338d5aa3615394d22b", + "etherscanUrl": "https://etherscan.io/address/0x0aa9d7cdabe4e035587885338d5aa3615394d22b", + "xHandle": "mcoso_", + "xUrl": "https://twitter.com/mcoso_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99fc4ab2de4f857cdfc3b9d6f8b7d3cf42c14791", + "balanceRaw": "301450485143980540152", + "balanceFormatted": "301.450485143980540152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99fc4ab2de4f857cdfc3b9d6f8b7d3cf42c14791", + "etherscanUrl": "https://etherscan.io/address/0x99fc4ab2de4f857cdfc3b9d6f8b7d3cf42c14791", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf85b95dec02cef1d7a7cb36680bab392e455bddd", + "balanceRaw": "301216441719255784675", + "balanceFormatted": "301.216441719255784675", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf85b95dec02cef1d7a7cb36680bab392e455bddd", + "etherscanUrl": "https://etherscan.io/address/0xf85b95dec02cef1d7a7cb36680bab392e455bddd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ebe7a5895f654bcb811db49913a2589d388a104", + "balanceRaw": "301000000000000000000", + "balanceFormatted": "301", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ebe7a5895f654bcb811db49913a2589d388a104", + "etherscanUrl": "https://etherscan.io/address/0x5ebe7a5895f654bcb811db49913a2589d388a104", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8431702b08b8dced40e137f73c0bfcce4cb96d1f", + "balanceRaw": "300829774799740556968", + "balanceFormatted": "300.829774799740556968", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8431702b08b8dced40e137f73c0bfcce4cb96d1f", + "etherscanUrl": "https://etherscan.io/address/0x8431702b08b8dced40e137f73c0bfcce4cb96d1f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde0240d607258f07b1d9347996d6fcf03db58643", + "balanceRaw": "300563130000000000000", + "balanceFormatted": "300.56313", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde0240d607258f07b1d9347996d6fcf03db58643", + "etherscanUrl": "https://etherscan.io/address/0xde0240d607258f07b1d9347996d6fcf03db58643", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x528def993fe84daa25f5f71d0bc1ec07c6bee785", + "balanceRaw": "298688653515760810669", + "balanceFormatted": "298.688653515760810669", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x528def993fe84daa25f5f71d0bc1ec07c6bee785", + "etherscanUrl": "https://etherscan.io/address/0x528def993fe84daa25f5f71d0bc1ec07c6bee785", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18975", + "balanceRaw": "297572284849799777456", + "balanceFormatted": "297.572284849799777456", + "lastTransferAt": null, + "username": "taliskye", + "displayName": "Drake 🫘", + "fid": 18975, + "followers": 3319, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0def01a-2297-4a61-f81d-8379a0d54e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabdc34f1def5ed2e60f72f34d67567b6d954e7e8", + "etherscanUrl": "https://etherscan.io/address/0xabdc34f1def5ed2e60f72f34d67567b6d954e7e8", + "xHandle": "taliskye_", + "xUrl": "https://twitter.com/taliskye_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1379770", + "balanceRaw": "297432387125312820984", + "balanceFormatted": "297.432387125312820984", + "lastTransferAt": null, + "username": "baseddoctor", + "displayName": "BasedDoctor", + "fid": 1379770, + "followers": 167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52fdaf01-0ae0-4185-7d26-8d355c5e9300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21234e9620e31cc8e00756012283a708e3e25a75", + "etherscanUrl": "https://etherscan.io/address/0x21234e9620e31cc8e00756012283a708e3e25a75", + "xHandle": "rickgrimesmd", + "xUrl": "https://twitter.com/rickgrimesmd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9172e60f04381bc62bcce231fa4890c66ac4c792", + "balanceRaw": "295725553140809802704", + "balanceFormatted": "295.725553140809802704", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9172e60f04381bc62bcce231fa4890c66ac4c792", + "etherscanUrl": "https://etherscan.io/address/0x9172e60f04381bc62bcce231fa4890c66ac4c792", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa0efafce355b0d6d1741a9d753d2b49ea1bc73a6", + "balanceRaw": "293756507207948449426", + "balanceFormatted": "293.756507207948449426", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0efafce355b0d6d1741a9d753d2b49ea1bc73a6", + "etherscanUrl": "https://etherscan.io/address/0xa0efafce355b0d6d1741a9d753d2b49ea1bc73a6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x71f395d2ebd284238d4cfe9a500d9d2f5e67dbeb", + "balanceRaw": "292958622983866662708", + "balanceFormatted": "292.958622983866662708", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71f395d2ebd284238d4cfe9a500d9d2f5e67dbeb", + "etherscanUrl": "https://etherscan.io/address/0x71f395d2ebd284238d4cfe9a500d9d2f5e67dbeb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1add7d6202989ef4f1e57fedf4090938184a1846", + "balanceRaw": "291212000000000000000", + "balanceFormatted": "291.212", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1add7d6202989ef4f1e57fedf4090938184a1846", + "etherscanUrl": "https://etherscan.io/address/0x1add7d6202989ef4f1e57fedf4090938184a1846", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f463642fa60cb1f1fd1c57af25b34b7a9a99586", + "balanceRaw": "290340517584224589167", + "balanceFormatted": "290.340517584224589167", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f463642fa60cb1f1fd1c57af25b34b7a9a99586", + "etherscanUrl": "https://etherscan.io/address/0x2f463642fa60cb1f1fd1c57af25b34b7a9a99586", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x54a1c84a0d7a07060fd76bb6dd75e73c21e1b616", + "balanceRaw": "289343487751300625732", + "balanceFormatted": "289.343487751300625732", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54a1c84a0d7a07060fd76bb6dd75e73c21e1b616", + "etherscanUrl": "https://etherscan.io/address/0x54a1c84a0d7a07060fd76bb6dd75e73c21e1b616", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3353b59ce199c667f18fb8c13c640b2ae98273d2", + "balanceRaw": "288813856997943407213", + "balanceFormatted": "288.813856997943407213", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3353b59ce199c667f18fb8c13c640b2ae98273d2", + "etherscanUrl": "https://etherscan.io/address/0x3353b59ce199c667f18fb8c13c640b2ae98273d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xabb56620ae17b1a06a11a790d34dc56fc8c3a9d8", + "balanceRaw": "285287366398383649399", + "balanceFormatted": "285.287366398383649399", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabb56620ae17b1a06a11a790d34dc56fc8c3a9d8", + "etherscanUrl": "https://etherscan.io/address/0xabb56620ae17b1a06a11a790d34dc56fc8c3a9d8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1020", + "balanceRaw": "284701315937205503282", + "balanceFormatted": "284.701315937205503282", + "lastTransferAt": null, + "username": "jake", + "displayName": "JAKE", + "fid": 1020, + "followers": 53043, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60673c14-95bf-423e-37c4-2a221de62700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5baa44bb6b7bd79c89628696f1186bcaeb3453aa", + "etherscanUrl": "https://etherscan.io/address/0x5baa44bb6b7bd79c89628696f1186bcaeb3453aa", + "xHandle": "0fjake", + "xUrl": "https://twitter.com/0fjake", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdd3b529d78492cd6f208e971d55a0ff3d4fd8ee7", + "balanceRaw": "284255411375224459941", + "balanceFormatted": "284.255411375224459941", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd3b529d78492cd6f208e971d55a0ff3d4fd8ee7", + "etherscanUrl": "https://etherscan.io/address/0xdd3b529d78492cd6f208e971d55a0ff3d4fd8ee7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbe86073a0b68f0d830dbfeded556638b3d6b6bc9", + "balanceRaw": "282000000000000000000", + "balanceFormatted": "282", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe86073a0b68f0d830dbfeded556638b3d6b6bc9", + "etherscanUrl": "https://etherscan.io/address/0xbe86073a0b68f0d830dbfeded556638b3d6b6bc9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x085d279039128f6dc81857a9eca712799168e361", + "balanceRaw": "277929729751276627432", + "balanceFormatted": "277.929729751276627432", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x085d279039128f6dc81857a9eca712799168e361", + "etherscanUrl": "https://etherscan.io/address/0x085d279039128f6dc81857a9eca712799168e361", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x16882352c7939865a89986e62edb16e7a4455a54", + "balanceRaw": "275907189452043724435", + "balanceFormatted": "275.907189452043724435", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16882352c7939865a89986e62edb16e7a4455a54", + "etherscanUrl": "https://etherscan.io/address/0x16882352c7939865a89986e62edb16e7a4455a54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x199b8f1f8e4a71a8b1595aa50daba17970407497", + "balanceRaw": "274336023623895219175", + "balanceFormatted": "274.336023623895219175", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x199b8f1f8e4a71a8b1595aa50daba17970407497", + "etherscanUrl": "https://etherscan.io/address/0x199b8f1f8e4a71a8b1595aa50daba17970407497", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x014973672d3e446e8b4ef14f8ded17dd8d8e4666", + "balanceRaw": "273573953529779462641", + "balanceFormatted": "273.573953529779462641", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x014973672d3e446e8b4ef14f8ded17dd8d8e4666", + "etherscanUrl": "https://etherscan.io/address/0x014973672d3e446e8b4ef14f8ded17dd8d8e4666", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0162b70d56e45a60d8d53257f115481717ea0145", + "balanceRaw": "272790160761608346210", + "balanceFormatted": "272.79016076160834621", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0162b70d56e45a60d8d53257f115481717ea0145", + "etherscanUrl": "https://etherscan.io/address/0x0162b70d56e45a60d8d53257f115481717ea0145", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc5ae2abb47517b65213d4aa9f5f204b758850bbd", + "balanceRaw": "272560230331467542554", + "balanceFormatted": "272.560230331467542554", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5ae2abb47517b65213d4aa9f5f204b758850bbd", + "etherscanUrl": "https://etherscan.io/address/0xc5ae2abb47517b65213d4aa9f5f204b758850bbd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38a27a4dfe08879dee38d1e81a79156653ced953", + "balanceRaw": "272437378379645388856", + "balanceFormatted": "272.437378379645388856", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38a27a4dfe08879dee38d1e81a79156653ced953", + "etherscanUrl": "https://etherscan.io/address/0x38a27a4dfe08879dee38d1e81a79156653ced953", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5f8db22d78e0217a748d9c4ab7c1f26319e15f86", + "balanceRaw": "271650739252667833204", + "balanceFormatted": "271.650739252667833204", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f8db22d78e0217a748d9c4ab7c1f26319e15f86", + "etherscanUrl": "https://etherscan.io/address/0x5f8db22d78e0217a748d9c4ab7c1f26319e15f86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7f2d25332451bae891250e9e9cce434f9331f32", + "balanceRaw": "271572831048038708496", + "balanceFormatted": "271.572831048038708496", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7f2d25332451bae891250e9e9cce434f9331f32", + "etherscanUrl": "https://etherscan.io/address/0xb7f2d25332451bae891250e9e9cce434f9331f32", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x27d51aa306e4626ae79b6deb814fc3d0a51eba6b", + "balanceRaw": "271243331086671830952", + "balanceFormatted": "271.243331086671830952", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27d51aa306e4626ae79b6deb814fc3d0a51eba6b", + "etherscanUrl": "https://etherscan.io/address/0x27d51aa306e4626ae79b6deb814fc3d0a51eba6b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0396b61ea276315c9c3ef23a8a8797e249237168", + "balanceRaw": "270900541742063559143", + "balanceFormatted": "270.900541742063559143", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0396b61ea276315c9c3ef23a8a8797e249237168", + "etherscanUrl": "https://etherscan.io/address/0x0396b61ea276315c9c3ef23a8a8797e249237168", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b6b670b3a1fc5128ba291f30375f53ce2cdaebb", + "balanceRaw": "269666405130059309362", + "balanceFormatted": "269.666405130059309362", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b6b670b3a1fc5128ba291f30375f53ce2cdaebb", + "etherscanUrl": "https://etherscan.io/address/0x7b6b670b3a1fc5128ba291f30375f53ce2cdaebb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_264222", + "balanceRaw": "269530888295152308348", + "balanceFormatted": "269.530888295152308348", + "lastTransferAt": null, + "username": "dialethia.eth", + "displayName": "dialethia", + "fid": 264222, + "followers": 5648, + "pfpUrl": "https://i.imgur.com/2zdKSRq.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5955029a2ca306ee068e229622366c44afe54bae", + "etherscanUrl": "https://etherscan.io/address/0x5955029a2ca306ee068e229622366c44afe54bae", + "xHandle": "0xdialethia", + "xUrl": "https://twitter.com/0xdialethia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0054d246176eddc8df6d439e78507137d7b130ec", + "balanceRaw": "268483821213371990261", + "balanceFormatted": "268.483821213371990261", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0054d246176eddc8df6d439e78507137d7b130ec", + "etherscanUrl": "https://etherscan.io/address/0x0054d246176eddc8df6d439e78507137d7b130ec", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x79bf8fe8f0c6986b447a9394852072542972ce9c", + "balanceRaw": "268292412289764705836", + "balanceFormatted": "268.292412289764705836", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x79bf8fe8f0c6986b447a9394852072542972ce9c", + "etherscanUrl": "https://etherscan.io/address/0x79bf8fe8f0c6986b447a9394852072542972ce9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x94df44b70179cccbaa182311bbaba63c19d51e16", + "balanceRaw": "266068860230067203057", + "balanceFormatted": "266.068860230067203057", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94df44b70179cccbaa182311bbaba63c19d51e16", + "etherscanUrl": "https://etherscan.io/address/0x94df44b70179cccbaa182311bbaba63c19d51e16", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0759957bea437af13d81415a1aa471326d0a4d26", + "balanceRaw": "265549935684457582871", + "balanceFormatted": "265.549935684457582871", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0759957bea437af13d81415a1aa471326d0a4d26", + "etherscanUrl": "https://etherscan.io/address/0x0759957bea437af13d81415a1aa471326d0a4d26", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xedd88ca63d7c0b9cf182afdee3852258f31961f9", + "balanceRaw": "264920890595486960362", + "balanceFormatted": "264.920890595486960362", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xedd88ca63d7c0b9cf182afdee3852258f31961f9", + "etherscanUrl": "https://etherscan.io/address/0xedd88ca63d7c0b9cf182afdee3852258f31961f9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe913be52a90a2d5e758aeea9372dce76f41babe9", + "balanceRaw": "264267000000000000000", + "balanceFormatted": "264.267", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe913be52a90a2d5e758aeea9372dce76f41babe9", + "etherscanUrl": "https://etherscan.io/address/0xe913be52a90a2d5e758aeea9372dce76f41babe9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc316d5d47159e2e03f9a53bf0a396341439a6a83", + "balanceRaw": "262386249790439152578", + "balanceFormatted": "262.386249790439152578", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc316d5d47159e2e03f9a53bf0a396341439a6a83", + "etherscanUrl": "https://etherscan.io/address/0xc316d5d47159e2e03f9a53bf0a396341439a6a83", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x760319b01094708792a5125b7526508de11baf86", + "balanceRaw": "258866909618915070712", + "balanceFormatted": "258.866909618915070712", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x760319b01094708792a5125b7526508de11baf86", + "etherscanUrl": "https://etherscan.io/address/0x760319b01094708792a5125b7526508de11baf86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18723", + "balanceRaw": "257444963978107264208", + "balanceFormatted": "257.444963978107264208", + "lastTransferAt": null, + "username": "brixbounty", + "displayName": "BrixBountyFarm 🎩", + "fid": 18723, + "followers": 16936, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f56c07a-c0fd-46aa-f99f-958ab78fee00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2fef20f7e8d2dd0d27f56389c731bd2943aa43d", + "etherscanUrl": "https://etherscan.io/address/0xc2fef20f7e8d2dd0d27f56389c731bd2943aa43d", + "xHandle": "brix_farm", + "xUrl": "https://twitter.com/brix_farm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe7f89f11471a735fec2b8a72df3bed4fc82959ec", + "balanceRaw": "257169851934188467482", + "balanceFormatted": "257.169851934188467482", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7f89f11471a735fec2b8a72df3bed4fc82959ec", + "etherscanUrl": "https://etherscan.io/address/0xe7f89f11471a735fec2b8a72df3bed4fc82959ec", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b059dbeceb224952dd559738bcea88a4a299d85", + "balanceRaw": "254064035051835468726", + "balanceFormatted": "254.064035051835468726", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b059dbeceb224952dd559738bcea88a4a299d85", + "etherscanUrl": "https://etherscan.io/address/0x0b059dbeceb224952dd559738bcea88a4a299d85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53acecb0a49706ebe52f6c64f0e7ce32a155019a", + "balanceRaw": "252303241645138553598", + "balanceFormatted": "252.303241645138553598", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53acecb0a49706ebe52f6c64f0e7ce32a155019a", + "etherscanUrl": "https://etherscan.io/address/0x53acecb0a49706ebe52f6c64f0e7ce32a155019a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x700c102d584d6e4d61eaa2282680211e91fb4c6a", + "balanceRaw": "251525801020429344091", + "balanceFormatted": "251.525801020429344091", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x700c102d584d6e4d61eaa2282680211e91fb4c6a", + "etherscanUrl": "https://etherscan.io/address/0x700c102d584d6e4d61eaa2282680211e91fb4c6a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd7e5cf676a0baa36a4ae9fb921deb8c8efc1d873", + "balanceRaw": "250712748020261092118", + "balanceFormatted": "250.712748020261092118", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7e5cf676a0baa36a4ae9fb921deb8c8efc1d873", + "etherscanUrl": "https://etherscan.io/address/0xd7e5cf676a0baa36a4ae9fb921deb8c8efc1d873", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x040bab597c4eb1d1ba12a3ec0826985879e7a94d", + "balanceRaw": "250674243660744220628", + "balanceFormatted": "250.674243660744220628", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x040bab597c4eb1d1ba12a3ec0826985879e7a94d", + "etherscanUrl": "https://etherscan.io/address/0x040bab597c4eb1d1ba12a3ec0826985879e7a94d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x69371a036f5bf1eb55845351aca64e6d58795978", + "balanceRaw": "250000003887017191170", + "balanceFormatted": "250.00000388701719117", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x69371a036f5bf1eb55845351aca64e6d58795978", + "etherscanUrl": "https://etherscan.io/address/0x69371a036f5bf1eb55845351aca64e6d58795978", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd9c3415bf8600f007a1b4199df967c25a3e00eea", + "balanceRaw": "250000000000000000000", + "balanceFormatted": "250", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd9c3415bf8600f007a1b4199df967c25a3e00eea", + "etherscanUrl": "https://etherscan.io/address/0xd9c3415bf8600f007a1b4199df967c25a3e00eea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e6ae23643749280abde5aa6a60ef2e6ddfa7667", + "balanceRaw": "249187116772029829911", + "balanceFormatted": "249.187116772029829911", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e6ae23643749280abde5aa6a60ef2e6ddfa7667", + "etherscanUrl": "https://etherscan.io/address/0x5e6ae23643749280abde5aa6a60ef2e6ddfa7667", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd24c77a76a3f7240bdd075dd622f104d72491c94", + "balanceRaw": "248272236673200272195", + "balanceFormatted": "248.272236673200272195", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd24c77a76a3f7240bdd075dd622f104d72491c94", + "etherscanUrl": "https://etherscan.io/address/0xd24c77a76a3f7240bdd075dd622f104d72491c94", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1051a51c5c2016d15228f4fba52935ab44f8a1ee", + "balanceRaw": "248259431666692248465", + "balanceFormatted": "248.259431666692248465", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1051a51c5c2016d15228f4fba52935ab44f8a1ee", + "etherscanUrl": "https://etherscan.io/address/0x1051a51c5c2016d15228f4fba52935ab44f8a1ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x24f1d2b31d30b9dc64ca6383dcbf364a917d716b", + "balanceRaw": "247984994351263926843", + "balanceFormatted": "247.984994351263926843", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x24f1d2b31d30b9dc64ca6383dcbf364a917d716b", + "etherscanUrl": "https://etherscan.io/address/0x24f1d2b31d30b9dc64ca6383dcbf364a917d716b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_254680", + "balanceRaw": "246619884747896118729", + "balanceFormatted": "246.619884747896118729", + "lastTransferAt": null, + "username": "blueflame", + "displayName": "BlueFlame", + "fid": 254680, + "followers": 896, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cff366fe-308e-4a55-89bb-76975c05bc00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68f84795ca2686abef84197ba9a4f1d5b0c33f9c", + "etherscanUrl": "https://etherscan.io/address/0x68f84795ca2686abef84197ba9a4f1d5b0c33f9c", + "xHandle": "blueflame2021", + "xUrl": "https://twitter.com/blueflame2021", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa0817e753a4dc9431c5ef720212d9ecca3dcc3fb", + "balanceRaw": "246296678493853557881", + "balanceFormatted": "246.296678493853557881", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0817e753a4dc9431c5ef720212d9ecca3dcc3fb", + "etherscanUrl": "https://etherscan.io/address/0xa0817e753a4dc9431c5ef720212d9ecca3dcc3fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b901516de433f19b7a56e6ac2071460104e7fca", + "balanceRaw": "245905789282567742821", + "balanceFormatted": "245.905789282567742821", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b901516de433f19b7a56e6ac2071460104e7fca", + "etherscanUrl": "https://etherscan.io/address/0x8b901516de433f19b7a56e6ac2071460104e7fca", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64f667d79c9a106f26ecfab49e64dd78e7446e6a", + "balanceRaw": "245591000000000000000", + "balanceFormatted": "245.591", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64f667d79c9a106f26ecfab49e64dd78e7446e6a", + "etherscanUrl": "https://etherscan.io/address/0x64f667d79c9a106f26ecfab49e64dd78e7446e6a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38770b4df927eb753474790bc10e3e4bbb11b6bf", + "balanceRaw": "245356410817843976122", + "balanceFormatted": "245.356410817843976122", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38770b4df927eb753474790bc10e3e4bbb11b6bf", + "etherscanUrl": "https://etherscan.io/address/0x38770b4df927eb753474790bc10e3e4bbb11b6bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4920c8652041380075f30fd9e52aac58a3fd61cd", + "balanceRaw": "244156060591898310857", + "balanceFormatted": "244.156060591898310857", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4920c8652041380075f30fd9e52aac58a3fd61cd", + "etherscanUrl": "https://etherscan.io/address/0x4920c8652041380075f30fd9e52aac58a3fd61cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x265b3e14ecc4045159d1f360a02b9c860c361631", + "balanceRaw": "243219196789838305019", + "balanceFormatted": "243.219196789838305019", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x265b3e14ecc4045159d1f360a02b9c860c361631", + "etherscanUrl": "https://etherscan.io/address/0x265b3e14ecc4045159d1f360a02b9c860c361631", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4ff8da11372b0de4427cefdd131009e64878e035", + "balanceRaw": "243196625024879454478", + "balanceFormatted": "243.196625024879454478", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ff8da11372b0de4427cefdd131009e64878e035", + "etherscanUrl": "https://etherscan.io/address/0x4ff8da11372b0de4427cefdd131009e64878e035", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73d0ad010cbc5e15bdbc0dbf6b7ca856f93f78a9", + "balanceRaw": "242851246811295596383", + "balanceFormatted": "242.851246811295596383", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73d0ad010cbc5e15bdbc0dbf6b7ca856f93f78a9", + "etherscanUrl": "https://etherscan.io/address/0x73d0ad010cbc5e15bdbc0dbf6b7ca856f93f78a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6af6660ed5ecbfa39db3d6bf23e17bd426a183ce", + "balanceRaw": "241722985653162518048", + "balanceFormatted": "241.722985653162518048", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6af6660ed5ecbfa39db3d6bf23e17bd426a183ce", + "etherscanUrl": "https://etherscan.io/address/0x6af6660ed5ecbfa39db3d6bf23e17bd426a183ce", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbee831412ebf5098c20ad64553f4fc7a94daf7fb", + "balanceRaw": "239221262722497618018", + "balanceFormatted": "239.221262722497618018", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbee831412ebf5098c20ad64553f4fc7a94daf7fb", + "etherscanUrl": "https://etherscan.io/address/0xbee831412ebf5098c20ad64553f4fc7a94daf7fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa468737f8b5bd46f4a33386d364eabf7e6868689", + "balanceRaw": "238630709707444995444", + "balanceFormatted": "238.630709707444995444", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa468737f8b5bd46f4a33386d364eabf7e6868689", + "etherscanUrl": "https://etherscan.io/address/0xa468737f8b5bd46f4a33386d364eabf7e6868689", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc9050ceade10d17343dd26d2122fbd6b05ff492e", + "balanceRaw": "237500000000000000000", + "balanceFormatted": "237.5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9050ceade10d17343dd26d2122fbd6b05ff492e", + "etherscanUrl": "https://etherscan.io/address/0xc9050ceade10d17343dd26d2122fbd6b05ff492e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4715", + "balanceRaw": "236710200856613595826", + "balanceFormatted": "236.710200856613595826", + "lastTransferAt": null, + "username": "logonaut.eth", + "displayName": "logonaut.eth 🎩🍖↑", + "fid": 4715, + "followers": 7365, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f0be6da-0fe9-4b50-0207-e0b6d1ce3600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70faa7333f352f74452afc24156f171100a0a8ab", + "etherscanUrl": "https://etherscan.io/address/0x70faa7333f352f74452afc24156f171100a0a8ab", + "xHandle": "logonaut", + "xUrl": "https://twitter.com/logonaut", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe22ea5b777f20ffb64e1516661ace5c4e9a1f23d", + "balanceRaw": "236609410504051943994", + "balanceFormatted": "236.609410504051943994", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe22ea5b777f20ffb64e1516661ace5c4e9a1f23d", + "etherscanUrl": "https://etherscan.io/address/0xe22ea5b777f20ffb64e1516661ace5c4e9a1f23d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe73c2cdd538a0e2b709c68c7f99e66d0e30b6e50", + "balanceRaw": "236148720468870921463", + "balanceFormatted": "236.148720468870921463", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe73c2cdd538a0e2b709c68c7f99e66d0e30b6e50", + "etherscanUrl": "https://etherscan.io/address/0xe73c2cdd538a0e2b709c68c7f99e66d0e30b6e50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2097121c7d9383d7a3cb71bfee1b7d0dc30b2603", + "balanceRaw": "235736318540366892298", + "balanceFormatted": "235.736318540366892298", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2097121c7d9383d7a3cb71bfee1b7d0dc30b2603", + "etherscanUrl": "https://etherscan.io/address/0x2097121c7d9383d7a3cb71bfee1b7d0dc30b2603", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfeb9253145cfc1e4266cbbde349adfd3252e4822", + "balanceRaw": "234517675811989955624", + "balanceFormatted": "234.517675811989955624", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfeb9253145cfc1e4266cbbde349adfd3252e4822", + "etherscanUrl": "https://etherscan.io/address/0xfeb9253145cfc1e4266cbbde349adfd3252e4822", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe37fa838dabe3ee31394b620e9ebbc04c7d3494f", + "balanceRaw": "233896641360287618356", + "balanceFormatted": "233.896641360287618356", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe37fa838dabe3ee31394b620e9ebbc04c7d3494f", + "etherscanUrl": "https://etherscan.io/address/0xe37fa838dabe3ee31394b620e9ebbc04c7d3494f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc077b0af5257b1f5bfdf3d33f79a6ada68d01128", + "balanceRaw": "233125238358626785628", + "balanceFormatted": "233.125238358626785628", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc077b0af5257b1f5bfdf3d33f79a6ada68d01128", + "etherscanUrl": "https://etherscan.io/address/0xc077b0af5257b1f5bfdf3d33f79a6ada68d01128", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2e5a9aaf0eb86bb41cbd0f41fd7020fd4ff663d5", + "balanceRaw": "230731392995052127513", + "balanceFormatted": "230.731392995052127513", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e5a9aaf0eb86bb41cbd0f41fd7020fd4ff663d5", + "etherscanUrl": "https://etherscan.io/address/0x2e5a9aaf0eb86bb41cbd0f41fd7020fd4ff663d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_473136", + "balanceRaw": "229516473511931882271", + "balanceFormatted": "229.516473511931882271", + "lastTransferAt": null, + "username": "thebestpizza.eth", + "displayName": "pizza.base.eth", + "fid": 473136, + "followers": 2747, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3106f15-94e4-440e-a4d1-83d07a3aaa00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae9ab8062a3557b88cdd82ef826c448e08adc6cd", + "etherscanUrl": "https://etherscan.io/address/0xae9ab8062a3557b88cdd82ef826c448e08adc6cd", + "xHandle": "defidough", + "xUrl": "https://twitter.com/defidough", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb68646232b416d5a67002c42a30595abbe8667f9", + "balanceRaw": "229369371952589027602", + "balanceFormatted": "229.369371952589027602", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb68646232b416d5a67002c42a30595abbe8667f9", + "etherscanUrl": "https://etherscan.io/address/0xb68646232b416d5a67002c42a30595abbe8667f9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa20d701210f8b883932fb1fa329c5140f1750bc5", + "balanceRaw": "227366622887963130299", + "balanceFormatted": "227.366622887963130299", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa20d701210f8b883932fb1fa329c5140f1750bc5", + "etherscanUrl": "https://etherscan.io/address/0xa20d701210f8b883932fb1fa329c5140f1750bc5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x398d189847215aad57083c488b867929ab4225cb", + "balanceRaw": "225435278324003469941", + "balanceFormatted": "225.435278324003469941", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x398d189847215aad57083c488b867929ab4225cb", + "etherscanUrl": "https://etherscan.io/address/0x398d189847215aad57083c488b867929ab4225cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "balanceRaw": "225000000000000000000", + "balanceFormatted": "225", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "etherscanUrl": "https://etherscan.io/address/0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9ee7a2ee3a182f9a2fe1632f49fd9d3029faa41c", + "balanceRaw": "224665588586883910281", + "balanceFormatted": "224.665588586883910281", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ee7a2ee3a182f9a2fe1632f49fd9d3029faa41c", + "etherscanUrl": "https://etherscan.io/address/0x9ee7a2ee3a182f9a2fe1632f49fd9d3029faa41c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6ff21069dce762a9f12b6622c4321731ba19be7b", + "balanceRaw": "223264658376726187835", + "balanceFormatted": "223.264658376726187835", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ff21069dce762a9f12b6622c4321731ba19be7b", + "etherscanUrl": "https://etherscan.io/address/0x6ff21069dce762a9f12b6622c4321731ba19be7b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5b7a15f1b70f7bacb63779c4cfd543a9e2ba0b0c", + "balanceRaw": "223026255217839868192", + "balanceFormatted": "223.026255217839868192", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b7a15f1b70f7bacb63779c4cfd543a9e2ba0b0c", + "etherscanUrl": "https://etherscan.io/address/0x5b7a15f1b70f7bacb63779c4cfd543a9e2ba0b0c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf6fb2a7f3f85aaf1bff9205465a051b537a7fd7c", + "balanceRaw": "222126403930674141159", + "balanceFormatted": "222.126403930674141159", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6fb2a7f3f85aaf1bff9205465a051b537a7fd7c", + "etherscanUrl": "https://etherscan.io/address/0xf6fb2a7f3f85aaf1bff9205465a051b537a7fd7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_22469", + "balanceRaw": "222043016780913034984", + "balanceFormatted": "222.043016780913034984", + "lastTransferAt": null, + "username": "openai", + "displayName": "closedai", + "fid": 22469, + "followers": 550, + "pfpUrl": "https://i.imgur.com/NgPMSfU.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x931ade3eef687cc2dc7a9705766d1e045c799b69", + "etherscanUrl": "https://etherscan.io/address/0x931ade3eef687cc2dc7a9705766d1e045c799b69", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c2ba8a4bba6c019a1771c73e304d383da4773ff", + "balanceRaw": "221813966312419892929", + "balanceFormatted": "221.813966312419892929", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c2ba8a4bba6c019a1771c73e304d383da4773ff", + "etherscanUrl": "https://etherscan.io/address/0x0c2ba8a4bba6c019a1771c73e304d383da4773ff", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1f238b47ab9fd915e5852601e83c6c1358297870", + "balanceRaw": "221703732270162246524", + "balanceFormatted": "221.703732270162246524", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f238b47ab9fd915e5852601e83c6c1358297870", + "etherscanUrl": "https://etherscan.io/address/0x1f238b47ab9fd915e5852601e83c6c1358297870", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14513", + "balanceRaw": "220761725294067369429", + "balanceFormatted": "220.761725294067369429", + "lastTransferAt": null, + "username": "oxdriezhen", + "displayName": "Oxdriezhen", + "fid": 14513, + "followers": 2700, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa340ef1-1b62-41d0-32f2-d2e16aac1e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae1b8f620f794804f59c09a263ece5d165acdb19", + "etherscanUrl": "https://etherscan.io/address/0xae1b8f620f794804f59c09a263ece5d165acdb19", + "xHandle": "oxdriezhen", + "xUrl": "https://twitter.com/oxdriezhen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6b6ca48da27304eeeb1d15d355d948f68b852733", + "balanceRaw": "220350205729362352002", + "balanceFormatted": "220.350205729362352002", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b6ca48da27304eeeb1d15d355d948f68b852733", + "etherscanUrl": "https://etherscan.io/address/0x6b6ca48da27304eeeb1d15d355d948f68b852733", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf6b9751e4a08cdcb893ab64f8ff577de7697a8ed", + "balanceRaw": "220000000000000000000", + "balanceFormatted": "220", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6b9751e4a08cdcb893ab64f8ff577de7697a8ed", + "etherscanUrl": "https://etherscan.io/address/0xf6b9751e4a08cdcb893ab64f8ff577de7697a8ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x427b2cd29f68cd073104552d2bd732d3a8138b0e", + "balanceRaw": "218917222277840158533", + "balanceFormatted": "218.917222277840158533", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x427b2cd29f68cd073104552d2bd732d3a8138b0e", + "etherscanUrl": "https://etherscan.io/address/0x427b2cd29f68cd073104552d2bd732d3a8138b0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5920482c8a5c532aae791663ac79d1e855ecb496", + "balanceRaw": "218269001522348101591", + "balanceFormatted": "218.269001522348101591", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5920482c8a5c532aae791663ac79d1e855ecb496", + "etherscanUrl": "https://etherscan.io/address/0x5920482c8a5c532aae791663ac79d1e855ecb496", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x47fbbd7af79f53430923bf05220ab3416277b862", + "balanceRaw": "217718616552181407448", + "balanceFormatted": "217.718616552181407448", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47fbbd7af79f53430923bf05220ab3416277b862", + "etherscanUrl": "https://etherscan.io/address/0x47fbbd7af79f53430923bf05220ab3416277b862", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3206", + "balanceRaw": "216327457181796910751", + "balanceFormatted": "216.327457181796910751", + "lastTransferAt": null, + "username": "yb", + "displayName": "YB", + "fid": 3206, + "followers": 90640, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7fa32f08-3b7a-41aa-367a-01ca18567e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaaac643f572e40e61185d41f67bf8a44cac70df5", + "etherscanUrl": "https://etherscan.io/address/0xaaac643f572e40e61185d41f67bf8a44cac70df5", + "xHandle": "yb_effect", + "xUrl": "https://twitter.com/yb_effect", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x09f60480242fef344e5d8850b372293d8a593c4b", + "balanceRaw": "215000000000000000000", + "balanceFormatted": "215", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09f60480242fef344e5d8850b372293d8a593c4b", + "etherscanUrl": "https://etherscan.io/address/0x09f60480242fef344e5d8850b372293d8a593c4b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x74cabcfc2f8727f7565e34d9b4199706ca676054", + "balanceRaw": "214938846411135016568", + "balanceFormatted": "214.938846411135016568", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74cabcfc2f8727f7565e34d9b4199706ca676054", + "etherscanUrl": "https://etherscan.io/address/0x74cabcfc2f8727f7565e34d9b4199706ca676054", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5869458f360d8c1ce49e35fccb3d0a1f25e8d533", + "balanceRaw": "214647527607883060925", + "balanceFormatted": "214.647527607883060925", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5869458f360d8c1ce49e35fccb3d0a1f25e8d533", + "etherscanUrl": "https://etherscan.io/address/0x5869458f360d8c1ce49e35fccb3d0a1f25e8d533", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_532180", + "balanceRaw": "214354178936030999791", + "balanceFormatted": "214.354178936030999791", + "lastTransferAt": null, + "username": "e9fht1p", + "displayName": "eightpap", + "fid": 532180, + "followers": 17, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f75706d-d9b8-4d4f-5576-aa7a4c53a600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8729380d933df3b3859d8e9200510554148bf91", + "etherscanUrl": "https://etherscan.io/address/0xe8729380d933df3b3859d8e9200510554148bf91", + "xHandle": "eightpal1881", + "xUrl": "https://twitter.com/eightpal1881", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0bc2ce997d4a1f35bfd7902f7bcce9c6ae5dc889", + "balanceRaw": "213709958012878874231", + "balanceFormatted": "213.709958012878874231", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0bc2ce997d4a1f35bfd7902f7bcce9c6ae5dc889", + "etherscanUrl": "https://etherscan.io/address/0x0bc2ce997d4a1f35bfd7902f7bcce9c6ae5dc889", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8e0ba5a1b678ecfa08999161d0e4a0383ef7808b", + "balanceRaw": "213370099865258628614", + "balanceFormatted": "213.370099865258628614", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e0ba5a1b678ecfa08999161d0e4a0383ef7808b", + "etherscanUrl": "https://etherscan.io/address/0x8e0ba5a1b678ecfa08999161d0e4a0383ef7808b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe56c99cb1c72f3605ea65ca3a1fbc093d6bd7f96", + "balanceRaw": "212646777963854742142", + "balanceFormatted": "212.646777963854742142", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe56c99cb1c72f3605ea65ca3a1fbc093d6bd7f96", + "etherscanUrl": "https://etherscan.io/address/0xe56c99cb1c72f3605ea65ca3a1fbc093d6bd7f96", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd38edd95502d866b063321ac0e65dcd692517663", + "balanceRaw": "212365491045807498607", + "balanceFormatted": "212.365491045807498607", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd38edd95502d866b063321ac0e65dcd692517663", + "etherscanUrl": "https://etherscan.io/address/0xd38edd95502d866b063321ac0e65dcd692517663", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa0a43bad9065dff177f9eb4bfb9095cd6e5b427f", + "balanceRaw": "210592062855230308418", + "balanceFormatted": "210.592062855230308418", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0a43bad9065dff177f9eb4bfb9095cd6e5b427f", + "etherscanUrl": "https://etherscan.io/address/0xa0a43bad9065dff177f9eb4bfb9095cd6e5b427f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x36c04d310e0d3519520d65c1d2b53c8267542b6e", + "balanceRaw": "210410050309575033324", + "balanceFormatted": "210.410050309575033324", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36c04d310e0d3519520d65c1d2b53c8267542b6e", + "etherscanUrl": "https://etherscan.io/address/0x36c04d310e0d3519520d65c1d2b53c8267542b6e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xae6b64d890a5c0f745c344ffb21f7939da753719", + "balanceRaw": "210400360481966297782", + "balanceFormatted": "210.400360481966297782", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae6b64d890a5c0f745c344ffb21f7939da753719", + "etherscanUrl": "https://etherscan.io/address/0xae6b64d890a5c0f745c344ffb21f7939da753719", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd97107064b8c7520aae6c6e6ca75bb2aa73b670d", + "balanceRaw": "210081598417061500000", + "balanceFormatted": "210.0815984170615", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd97107064b8c7520aae6c6e6ca75bb2aa73b670d", + "etherscanUrl": "https://etherscan.io/address/0xd97107064b8c7520aae6c6e6ca75bb2aa73b670d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b877a039aa4a4c039c376bb238a77e1bfeba048", + "balanceRaw": "210011198790000000000", + "balanceFormatted": "210.01119879", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b877a039aa4a4c039c376bb238a77e1bfeba048", + "etherscanUrl": "https://etherscan.io/address/0x8b877a039aa4a4c039c376bb238a77e1bfeba048", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9bed533bd73286bdedd95b188f878c7bf057c564", + "balanceRaw": "208789059644486346640", + "balanceFormatted": "208.78905964448634664", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bed533bd73286bdedd95b188f878c7bf057c564", + "etherscanUrl": "https://etherscan.io/address/0x9bed533bd73286bdedd95b188f878c7bf057c564", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed4c0b24323ebf79a9fa6e7b3bcc57f6c85948be", + "balanceRaw": "208172414282676950201", + "balanceFormatted": "208.172414282676950201", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed4c0b24323ebf79a9fa6e7b3bcc57f6c85948be", + "etherscanUrl": "https://etherscan.io/address/0xed4c0b24323ebf79a9fa6e7b3bcc57f6c85948be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7f04235686f24b9abbf968c2afd1c749924585d3", + "balanceRaw": "207481616008941246177", + "balanceFormatted": "207.481616008941246177", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f04235686f24b9abbf968c2afd1c749924585d3", + "etherscanUrl": "https://etherscan.io/address/0x7f04235686f24b9abbf968c2afd1c749924585d3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_187961", + "balanceRaw": "205489702817123738086", + "balanceFormatted": "205.489702817123738086", + "lastTransferAt": null, + "username": "kripcat.eth", + "displayName": "kripcat.eth", + "fid": 187961, + "followers": 2614, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76800669-2c78-44d1-c21f-29ef9e90cd00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ac878b9e400f72d16204a99a85aba05f435d83f", + "etherscanUrl": "https://etherscan.io/address/0x2ac878b9e400f72d16204a99a85aba05f435d83f", + "xHandle": "prehensilethumb", + "xUrl": "https://twitter.com/prehensilethumb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0a2d5d48569a89974022f434fff7b790bb94b6e5", + "balanceRaw": "205078775109861986304", + "balanceFormatted": "205.078775109861986304", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a2d5d48569a89974022f434fff7b790bb94b6e5", + "etherscanUrl": "https://etherscan.io/address/0x0a2d5d48569a89974022f434fff7b790bb94b6e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6856e36e1464af6b94f30bf4b64ccee17453ca94", + "balanceRaw": "204641925529289801728", + "balanceFormatted": "204.641925529289801728", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6856e36e1464af6b94f30bf4b64ccee17453ca94", + "etherscanUrl": "https://etherscan.io/address/0x6856e36e1464af6b94f30bf4b64ccee17453ca94", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_285", + "balanceRaw": "202714981725979739410", + "balanceFormatted": "202.71498172597973941", + "lastTransferAt": null, + "username": "uno", + "displayName": "uno", + "fid": 285, + "followers": 441, + "pfpUrl": "https://i.imgur.com/kEoTsHq.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9edb3c32fa6a1a206df009706cbc369a0835ddf1", + "etherscanUrl": "https://etherscan.io/address/0x9edb3c32fa6a1a206df009706cbc369a0835ddf1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_241858", + "balanceRaw": "202353811069756997705", + "balanceFormatted": "202.353811069756997705", + "lastTransferAt": null, + "username": "ozzee", + "displayName": "Ozzee", + "fid": 241858, + "followers": 185, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/Qmc3zYWXxeTSNwkcMPMVAu1WQemm3tu3fNkm7hfTKrLGh7/5885.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab6ff46c50cccf079bd6c519ccf34c188f80bd72", + "etherscanUrl": "https://etherscan.io/address/0xab6ff46c50cccf079bd6c519ccf34c188f80bd72", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed8984c3044d59158ce59e87a600b1f1763b469f", + "balanceRaw": "201277068681824231718", + "balanceFormatted": "201.277068681824231718", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed8984c3044d59158ce59e87a600b1f1763b469f", + "etherscanUrl": "https://etherscan.io/address/0xed8984c3044d59158ce59e87a600b1f1763b469f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6e326d2c636e8b659c864aebc9d46b1c985c9a5c", + "balanceRaw": "201253528040789001693", + "balanceFormatted": "201.253528040789001693", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e326d2c636e8b659c864aebc9d46b1c985c9a5c", + "etherscanUrl": "https://etherscan.io/address/0x6e326d2c636e8b659c864aebc9d46b1c985c9a5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd5a64cef6c1ed686f9b648ddb40576e52328f4f7", + "balanceRaw": "201149397668628226054", + "balanceFormatted": "201.149397668628226054", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd5a64cef6c1ed686f9b648ddb40576e52328f4f7", + "etherscanUrl": "https://etherscan.io/address/0xd5a64cef6c1ed686f9b648ddb40576e52328f4f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4003", + "balanceRaw": "200959704062570950641", + "balanceFormatted": "200.959704062570950641", + "lastTransferAt": null, + "username": "0xpuneet", + "displayName": "Puneet-Building Clankline", + "fid": 4003, + "followers": 295, + "pfpUrl": "https://i.imgur.com/GOWUa1q.jpg", + "ensName": "puneet.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe4365a836e842a0fa48d3f260ad3d100695afe32", + "etherscanUrl": "https://etherscan.io/address/0xe4365a836e842a0fa48d3f260ad3d100695afe32", + "xHandle": "pkaura", + "xUrl": "https://twitter.com/pkaura", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xadb060cd145ab4c71cbb317592aaf64df595cc86", + "balanceRaw": "200954366531611604054", + "balanceFormatted": "200.954366531611604054", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xadb060cd145ab4c71cbb317592aaf64df595cc86", + "etherscanUrl": "https://etherscan.io/address/0xadb060cd145ab4c71cbb317592aaf64df595cc86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x06a7f3c9f03312341c24cd65fe465e369383ed4e", + "balanceRaw": "200693262953900548157", + "balanceFormatted": "200.693262953900548157", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06a7f3c9f03312341c24cd65fe465e369383ed4e", + "etherscanUrl": "https://etherscan.io/address/0x06a7f3c9f03312341c24cd65fe465e369383ed4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9e5bc656db2cdef6fc10f9c4332148712613de75", + "balanceRaw": "200606578289334023842", + "balanceFormatted": "200.606578289334023842", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e5bc656db2cdef6fc10f9c4332148712613de75", + "etherscanUrl": "https://etherscan.io/address/0x9e5bc656db2cdef6fc10f9c4332148712613de75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1452256", + "balanceRaw": "200566737140364010628", + "balanceFormatted": "200.566737140364010628", + "lastTransferAt": null, + "username": "tommyjohn.base.eth", + "displayName": "Tommy_John", + "fid": 1452256, + "followers": 0, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762561796/5caf25de-604a-4112-82d5-998e771a340b.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x411a335c0761b4964bf2071f659cec77dd866264", + "etherscanUrl": "https://etherscan.io/address/0x411a335c0761b4964bf2071f659cec77dd866264", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2ef57bfc83abfb48ee82a323820a3853a0ef34b9", + "balanceRaw": "200180179588272595220", + "balanceFormatted": "200.18017958827259522", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ef57bfc83abfb48ee82a323820a3853a0ef34b9", + "etherscanUrl": "https://etherscan.io/address/0x2ef57bfc83abfb48ee82a323820a3853a0ef34b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2b2d2e259ab4bc7baa2078d597b33ab44d248b8", + "balanceRaw": "200000000739727989024", + "balanceFormatted": "200.000000739727989024", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2b2d2e259ab4bc7baa2078d597b33ab44d248b8", + "etherscanUrl": "https://etherscan.io/address/0xa2b2d2e259ab4bc7baa2078d597b33ab44d248b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9dbe078cb4c73069aa155fbbd28ca197755be734", + "balanceRaw": "200000000000000000000", + "balanceFormatted": "200", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9dbe078cb4c73069aa155fbbd28ca197755be734", + "etherscanUrl": "https://etherscan.io/address/0x9dbe078cb4c73069aa155fbbd28ca197755be734", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_400771", + "balanceRaw": "200000000000000000000", + "balanceFormatted": "200", + "lastTransferAt": null, + "username": "ryen", + "displayName": "ryen 🎩", + "fid": 400771, + "followers": 577, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb2fc335-a095-4a14-ab67-9c90bf868b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d733d31d4723a8357495b56fb5a3852952abf10", + "etherscanUrl": "https://etherscan.io/address/0x4d733d31d4723a8357495b56fb5a3852952abf10", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa3d332bc848afda0121132fb1ba65b25ab9831b5", + "balanceRaw": "199700000000000000000", + "balanceFormatted": "199.7", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa3d332bc848afda0121132fb1ba65b25ab9831b5", + "etherscanUrl": "https://etherscan.io/address/0xa3d332bc848afda0121132fb1ba65b25ab9831b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xce6117c74ac2059cf22f86f3559d895d80be2357", + "balanceRaw": "199683033489367030651", + "balanceFormatted": "199.683033489367030651", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce6117c74ac2059cf22f86f3559d895d80be2357", + "etherscanUrl": "https://etherscan.io/address/0xce6117c74ac2059cf22f86f3559d895d80be2357", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7d998c6abb2f9b80cfe29d2ac7eb2c75c3e1087f", + "balanceRaw": "199559634854937327388", + "balanceFormatted": "199.559634854937327388", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d998c6abb2f9b80cfe29d2ac7eb2c75c3e1087f", + "etherscanUrl": "https://etherscan.io/address/0x7d998c6abb2f9b80cfe29d2ac7eb2c75c3e1087f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3bcfabbc817962aecd6e86a6ead6726c099372ef", + "balanceRaw": "199397752962420320947", + "balanceFormatted": "199.397752962420320947", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3bcfabbc817962aecd6e86a6ead6726c099372ef", + "etherscanUrl": "https://etherscan.io/address/0x3bcfabbc817962aecd6e86a6ead6726c099372ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfc8e410501fa7213c1efec6fe497262355b1f063", + "balanceRaw": "199001372190080407542", + "balanceFormatted": "199.001372190080407542", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc8e410501fa7213c1efec6fe497262355b1f063", + "etherscanUrl": "https://etherscan.io/address/0xfc8e410501fa7213c1efec6fe497262355b1f063", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x06b6a61e22a263c61adf15a83b349ba05ff30e48", + "balanceRaw": "198725728346209245742", + "balanceFormatted": "198.725728346209245742", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06b6a61e22a263c61adf15a83b349ba05ff30e48", + "etherscanUrl": "https://etherscan.io/address/0x06b6a61e22a263c61adf15a83b349ba05ff30e48", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcdec866689af5eca60da47733c669fc44dc4500c", + "balanceRaw": "198689191049703624858", + "balanceFormatted": "198.689191049703624858", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcdec866689af5eca60da47733c669fc44dc4500c", + "etherscanUrl": "https://etherscan.io/address/0xcdec866689af5eca60da47733c669fc44dc4500c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10178", + "balanceRaw": "198386635077522450000", + "balanceFormatted": "198.38663507752245", + "lastTransferAt": null, + "username": "owl", + "displayName": "Hoot 🎩", + "fid": 10178, + "followers": 10149, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b534cba-af6a-425f-145a-54653d0ac500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe19261c53d9d6c6d63bc248de3c2e5d5938f24d6", + "etherscanUrl": "https://etherscan.io/address/0xe19261c53d9d6c6d63bc248de3c2e5d5938f24d6", + "xHandle": "mediaquery", + "xUrl": "https://twitter.com/mediaquery", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa4252055fd9df90925018c6f783a0c2b6bc04ac2", + "balanceRaw": "197693364543458153436", + "balanceFormatted": "197.693364543458153436", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa4252055fd9df90925018c6f783a0c2b6bc04ac2", + "etherscanUrl": "https://etherscan.io/address/0xa4252055fd9df90925018c6f783a0c2b6bc04ac2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfd3dd3b9fd276d4e1fbc0b6133481d0e953bd703", + "balanceRaw": "196591450854701927624", + "balanceFormatted": "196.591450854701927624", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd3dd3b9fd276d4e1fbc0b6133481d0e953bd703", + "etherscanUrl": "https://etherscan.io/address/0xfd3dd3b9fd276d4e1fbc0b6133481d0e953bd703", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x475db33497d71259813097efc470683865c37a19", + "balanceRaw": "196423858650454460308", + "balanceFormatted": "196.423858650454460308", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x475db33497d71259813097efc470683865c37a19", + "etherscanUrl": "https://etherscan.io/address/0x475db33497d71259813097efc470683865c37a19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_379794", + "balanceRaw": "195292613394875093009", + "balanceFormatted": "195.292613394875093009", + "lastTransferAt": null, + "username": "c8ake", + "displayName": "c8ake", + "fid": 379794, + "followers": 165, + "pfpUrl": "https://i.imgur.com/KDn1S2m.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29121a060e1c4720607c10ebba08af3d7485d452", + "etherscanUrl": "https://etherscan.io/address/0x29121a060e1c4720607c10ebba08af3d7485d452", + "xHandle": "c8ake", + "xUrl": "https://twitter.com/c8ake", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdca05f7ed88abc808941f68132a139d7c856591a", + "balanceRaw": "194875527054260852759", + "balanceFormatted": "194.875527054260852759", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdca05f7ed88abc808941f68132a139d7c856591a", + "etherscanUrl": "https://etherscan.io/address/0xdca05f7ed88abc808941f68132a139d7c856591a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5eacd1bf7a2d7c22160a05ece74a5ff1cf08f8ee", + "balanceRaw": "193000000000000000000", + "balanceFormatted": "193", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5eacd1bf7a2d7c22160a05ece74a5ff1cf08f8ee", + "etherscanUrl": "https://etherscan.io/address/0x5eacd1bf7a2d7c22160a05ece74a5ff1cf08f8ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1674613b9652fa24b236b45980871934d95bea20", + "balanceRaw": "190296455559285669482", + "balanceFormatted": "190.296455559285669482", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1674613b9652fa24b236b45980871934d95bea20", + "etherscanUrl": "https://etherscan.io/address/0x1674613b9652fa24b236b45980871934d95bea20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5df1454be7446c97e8b0cfcb00c6dc9aea8580d0", + "balanceRaw": "189722514456741809495", + "balanceFormatted": "189.722514456741809495", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5df1454be7446c97e8b0cfcb00c6dc9aea8580d0", + "etherscanUrl": "https://etherscan.io/address/0x5df1454be7446c97e8b0cfcb00c6dc9aea8580d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa35d130d23fb53630de490d921737a48d3631427", + "balanceRaw": "189424380327358670660", + "balanceFormatted": "189.42438032735867066", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa35d130d23fb53630de490d921737a48d3631427", + "etherscanUrl": "https://etherscan.io/address/0xa35d130d23fb53630de490d921737a48d3631427", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf04317585e439b93987c297178ca62a1e04f6d0", + "balanceRaw": "189369833145754927792", + "balanceFormatted": "189.369833145754927792", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf04317585e439b93987c297178ca62a1e04f6d0", + "etherscanUrl": "https://etherscan.io/address/0xaf04317585e439b93987c297178ca62a1e04f6d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3b57de1fa1f82da73c6f34bfdcb303881a099cb", + "balanceRaw": "188595946401948045645", + "balanceFormatted": "188.595946401948045645", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3b57de1fa1f82da73c6f34bfdcb303881a099cb", + "etherscanUrl": "https://etherscan.io/address/0xf3b57de1fa1f82da73c6f34bfdcb303881a099cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x22c64e05aabde039a7c9792d6886d8c2d714b2e9", + "balanceRaw": "188027628064986835162", + "balanceFormatted": "188.027628064986835162", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22c64e05aabde039a7c9792d6886d8c2d714b2e9", + "etherscanUrl": "https://etherscan.io/address/0x22c64e05aabde039a7c9792d6886d8c2d714b2e9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7098d5ee6c5f1d1641f3a872e9acf0b97cc8aa75", + "balanceRaw": "187765504109214880965", + "balanceFormatted": "187.765504109214880965", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7098d5ee6c5f1d1641f3a872e9acf0b97cc8aa75", + "etherscanUrl": "https://etherscan.io/address/0x7098d5ee6c5f1d1641f3a872e9acf0b97cc8aa75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb1e910c354ee07e7162e708eba7a89d9b01e19a1", + "balanceRaw": "187200939530803199627", + "balanceFormatted": "187.200939530803199627", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1e910c354ee07e7162e708eba7a89d9b01e19a1", + "etherscanUrl": "https://etherscan.io/address/0xb1e910c354ee07e7162e708eba7a89d9b01e19a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21941", + "balanceRaw": "185160743466760308282", + "balanceFormatted": "185.160743466760308282", + "lastTransferAt": null, + "username": "hipseynussle.eth", + "displayName": "HipseyNussle.eth ツ 🦉🎩", + "fid": 21941, + "followers": 1183, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62f284fc-5777-4d26-497f-2038455f2100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3864689ecf3dcc903c1514b9a48e4c68f6df74fd", + "etherscanUrl": "https://etherscan.io/address/0x3864689ecf3dcc903c1514b9a48e4c68f6df74fd", + "xHandle": "thehipseynussle", + "xUrl": "https://twitter.com/thehipseynussle", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbc98fba393c9a42c0cae2e32eccf5b2fb0a060d1", + "balanceRaw": "185115203074559575939", + "balanceFormatted": "185.115203074559575939", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc98fba393c9a42c0cae2e32eccf5b2fb0a060d1", + "etherscanUrl": "https://etherscan.io/address/0xbc98fba393c9a42c0cae2e32eccf5b2fb0a060d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad3586798ab36f0763e9ba5b601d8f0f485a47ef", + "balanceRaw": "184749120047453784152", + "balanceFormatted": "184.749120047453784152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad3586798ab36f0763e9ba5b601d8f0f485a47ef", + "etherscanUrl": "https://etherscan.io/address/0xad3586798ab36f0763e9ba5b601d8f0f485a47ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe798a9404143f1aba9d751e2454cb5c1a573363e", + "balanceRaw": "184361000000000000000", + "balanceFormatted": "184.361", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe798a9404143f1aba9d751e2454cb5c1a573363e", + "etherscanUrl": "https://etherscan.io/address/0xe798a9404143f1aba9d751e2454cb5c1a573363e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xebbdacfc5d313efad720a66d125df338d850dd60", + "balanceRaw": "183032386490564738491", + "balanceFormatted": "183.032386490564738491", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebbdacfc5d313efad720a66d125df338d850dd60", + "etherscanUrl": "https://etherscan.io/address/0xebbdacfc5d313efad720a66d125df338d850dd60", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xafdda377ba687e615ff9c709f40a4aa166f9fbca", + "balanceRaw": "182253778753693084249", + "balanceFormatted": "182.253778753693084249", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafdda377ba687e615ff9c709f40a4aa166f9fbca", + "etherscanUrl": "https://etherscan.io/address/0xafdda377ba687e615ff9c709f40a4aa166f9fbca", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe73aaf36edd9bde33dbf9eb42047d326333319e0", + "balanceRaw": "180530702743633378675", + "balanceFormatted": "180.530702743633378675", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe73aaf36edd9bde33dbf9eb42047d326333319e0", + "etherscanUrl": "https://etherscan.io/address/0xe73aaf36edd9bde33dbf9eb42047d326333319e0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe6c3c2f2027f6a49bae108a73053b313139dcb90", + "balanceRaw": "180438693875480017472", + "balanceFormatted": "180.438693875480017472", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6c3c2f2027f6a49bae108a73053b313139dcb90", + "etherscanUrl": "https://etherscan.io/address/0xe6c3c2f2027f6a49bae108a73053b313139dcb90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xab2dcf4a68fc91d099fee8818141fc748da5381d", + "balanceRaw": "179871669685476459050", + "balanceFormatted": "179.87166968547645905", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab2dcf4a68fc91d099fee8818141fc748da5381d", + "etherscanUrl": "https://etherscan.io/address/0xab2dcf4a68fc91d099fee8818141fc748da5381d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_534695", + "balanceRaw": "179800070351791489024", + "balanceFormatted": "179.800070351791489024", + "lastTransferAt": null, + "username": "dkqid", + "displayName": "djqid", + "fid": 534695, + "followers": 27, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b58e577e-3eaa-412a-9382-1904212df300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa20e776fcdaf6365045aec42d5bcc20cc350baf3", + "etherscanUrl": "https://etherscan.io/address/0xa20e776fcdaf6365045aec42d5bcc20cc350baf3", + "xHandle": "leejame385", + "xUrl": "https://twitter.com/leejame385", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x853d61d82842f93a15b185d211ce652a7a5203e9", + "balanceRaw": "179629155807567480484", + "balanceFormatted": "179.629155807567480484", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x853d61d82842f93a15b185d211ce652a7a5203e9", + "etherscanUrl": "https://etherscan.io/address/0x853d61d82842f93a15b185d211ce652a7a5203e9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3065", + "balanceRaw": "178260158382193505758", + "balanceFormatted": "178.260158382193505758", + "lastTransferAt": null, + "username": "roam0x", + "displayName": "roamonchain", + "fid": 3065, + "followers": 211, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f884d900-d963-462a-fd62-8fad6376f700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c7e79a9dba40ead9cc4a6bc5c22ecaca11b8364", + "etherscanUrl": "https://etherscan.io/address/0x9c7e79a9dba40ead9cc4a6bc5c22ecaca11b8364", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7ae686db9af3d6c0a288a13effc56a243bd63499", + "balanceRaw": "175546643047213624186", + "balanceFormatted": "175.546643047213624186", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ae686db9af3d6c0a288a13effc56a243bd63499", + "etherscanUrl": "https://etherscan.io/address/0x7ae686db9af3d6c0a288a13effc56a243bd63499", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05e8dd1f80323ce2dc72d59165633063e03fcf67", + "balanceRaw": "175429831961376094315", + "balanceFormatted": "175.429831961376094315", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05e8dd1f80323ce2dc72d59165633063e03fcf67", + "etherscanUrl": "https://etherscan.io/address/0x05e8dd1f80323ce2dc72d59165633063e03fcf67", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x90558ee553cfa1fa84460914c006f0faacd995af", + "balanceRaw": "175001613886137743158", + "balanceFormatted": "175.001613886137743158", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90558ee553cfa1fa84460914c006f0faacd995af", + "etherscanUrl": "https://etherscan.io/address/0x90558ee553cfa1fa84460914c006f0faacd995af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4b5ec54ee662190451a03bf304cf1bd7bb4c5323", + "balanceRaw": "174324000000000000000", + "balanceFormatted": "174.324", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b5ec54ee662190451a03bf304cf1bd7bb4c5323", + "etherscanUrl": "https://etherscan.io/address/0x4b5ec54ee662190451a03bf304cf1bd7bb4c5323", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c81d333a9a8bff97132e75f45ac34dde8bb0524", + "balanceRaw": "172482002767202971061", + "balanceFormatted": "172.482002767202971061", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c81d333a9a8bff97132e75f45ac34dde8bb0524", + "etherscanUrl": "https://etherscan.io/address/0x3c81d333a9a8bff97132e75f45ac34dde8bb0524", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xee2971eb3e15a3ca069cae540c3c6d8f4e5bb622", + "balanceRaw": "172000000000000000000", + "balanceFormatted": "172", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee2971eb3e15a3ca069cae540c3c6d8f4e5bb622", + "etherscanUrl": "https://etherscan.io/address/0xee2971eb3e15a3ca069cae540c3c6d8f4e5bb622", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6852d09c25af748b29b9ec3bb1fe24fbd36bfca4", + "balanceRaw": "171721555804416338884", + "balanceFormatted": "171.721555804416338884", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6852d09c25af748b29b9ec3bb1fe24fbd36bfca4", + "etherscanUrl": "https://etherscan.io/address/0x6852d09c25af748b29b9ec3bb1fe24fbd36bfca4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x48522240da553d522d7e7b3a5519fd902742e283", + "balanceRaw": "171589897596763467577", + "balanceFormatted": "171.589897596763467577", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48522240da553d522d7e7b3a5519fd902742e283", + "etherscanUrl": "https://etherscan.io/address/0x48522240da553d522d7e7b3a5519fd902742e283", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x321a0de4ade71c59ca759b90c14ad4e215c43ae6", + "balanceRaw": "171429097720641043776", + "balanceFormatted": "171.429097720641043776", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x321a0de4ade71c59ca759b90c14ad4e215c43ae6", + "etherscanUrl": "https://etherscan.io/address/0x321a0de4ade71c59ca759b90c14ad4e215c43ae6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8d073291358c5872497d0ecffacdd4ac3e1b48b0", + "balanceRaw": "170430917605030775907", + "balanceFormatted": "170.430917605030775907", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d073291358c5872497d0ecffacdd4ac3e1b48b0", + "etherscanUrl": "https://etherscan.io/address/0x8d073291358c5872497d0ecffacdd4ac3e1b48b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5fbeb5e603c80433339f699903372e45a525c756", + "balanceRaw": "169130625900000000000", + "balanceFormatted": "169.1306259", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fbeb5e603c80433339f699903372e45a525c756", + "etherscanUrl": "https://etherscan.io/address/0x5fbeb5e603c80433339f699903372e45a525c756", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9f534754f763eea62e9750641f8604ebe389b8a7", + "balanceRaw": "168789433912755629056", + "balanceFormatted": "168.789433912755629056", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f534754f763eea62e9750641f8604ebe389b8a7", + "etherscanUrl": "https://etherscan.io/address/0x9f534754f763eea62e9750641f8604ebe389b8a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa61d0dcc56e42ffab4f27140172067cf6dba7f6b", + "balanceRaw": "168667269366424024679", + "balanceFormatted": "168.667269366424024679", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa61d0dcc56e42ffab4f27140172067cf6dba7f6b", + "etherscanUrl": "https://etherscan.io/address/0xa61d0dcc56e42ffab4f27140172067cf6dba7f6b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc43ca08cefdb3aefb37e3516cb0ada4575b2f9b8", + "balanceRaw": "167678701614870816575", + "balanceFormatted": "167.678701614870816575", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc43ca08cefdb3aefb37e3516cb0ada4575b2f9b8", + "etherscanUrl": "https://etherscan.io/address/0xc43ca08cefdb3aefb37e3516cb0ada4575b2f9b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x105778eae2172309f5fbe99888a9ab4ed8ecbbaf", + "balanceRaw": "167525499337032654673", + "balanceFormatted": "167.525499337032654673", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x105778eae2172309f5fbe99888a9ab4ed8ecbbaf", + "etherscanUrl": "https://etherscan.io/address/0x105778eae2172309f5fbe99888a9ab4ed8ecbbaf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa1470f85c7ef3883694ccb8f26b16604216ba215", + "balanceRaw": "167422197913869731474", + "balanceFormatted": "167.422197913869731474", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1470f85c7ef3883694ccb8f26b16604216ba215", + "etherscanUrl": "https://etherscan.io/address/0xa1470f85c7ef3883694ccb8f26b16604216ba215", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x28eeaa69ee51b816733f360f86e2ab51bbc6b5e4", + "balanceRaw": "166907392147780460844", + "balanceFormatted": "166.907392147780460844", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x28eeaa69ee51b816733f360f86e2ab51bbc6b5e4", + "etherscanUrl": "https://etherscan.io/address/0x28eeaa69ee51b816733f360f86e2ab51bbc6b5e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99b98b80d17e07dfb03407ba60de4e9ea3a28b5b", + "balanceRaw": "165725918583334143321", + "balanceFormatted": "165.725918583334143321", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99b98b80d17e07dfb03407ba60de4e9ea3a28b5b", + "etherscanUrl": "https://etherscan.io/address/0x99b98b80d17e07dfb03407ba60de4e9ea3a28b5b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbed3a6d9276e00af377191e2a0eb6db7d16b2a3d", + "balanceRaw": "165646072239483040137", + "balanceFormatted": "165.646072239483040137", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbed3a6d9276e00af377191e2a0eb6db7d16b2a3d", + "etherscanUrl": "https://etherscan.io/address/0xbed3a6d9276e00af377191e2a0eb6db7d16b2a3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb9925bf1f0c6cdbbaf7da11ccf1a552efe1b049f", + "balanceRaw": "163635856163928155809", + "balanceFormatted": "163.635856163928155809", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9925bf1f0c6cdbbaf7da11ccf1a552efe1b049f", + "etherscanUrl": "https://etherscan.io/address/0xb9925bf1f0c6cdbbaf7da11ccf1a552efe1b049f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x058de7c6e46d8b7c505442455e7f089fbd1cbb1c", + "balanceRaw": "162964825236802817824", + "balanceFormatted": "162.964825236802817824", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x058de7c6e46d8b7c505442455e7f089fbd1cbb1c", + "etherscanUrl": "https://etherscan.io/address/0x058de7c6e46d8b7c505442455e7f089fbd1cbb1c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x831769afc80fff6fb4d3e25e7bff2f7d6fb45862", + "balanceRaw": "161358131384915323255", + "balanceFormatted": "161.358131384915323255", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x831769afc80fff6fb4d3e25e7bff2f7d6fb45862", + "etherscanUrl": "https://etherscan.io/address/0x831769afc80fff6fb4d3e25e7bff2f7d6fb45862", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6c008e6565bcbed9b697e751170b17fcbac790fb", + "balanceRaw": "161354868158109701577", + "balanceFormatted": "161.354868158109701577", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c008e6565bcbed9b697e751170b17fcbac790fb", + "etherscanUrl": "https://etherscan.io/address/0x6c008e6565bcbed9b697e751170b17fcbac790fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_366587", + "balanceRaw": "161178748941128780900", + "balanceFormatted": "161.1787489411287809", + "lastTransferAt": null, + "username": "jkm.eth", + "displayName": "James M 🌒🎩", + "fid": 366587, + "followers": 245, + "pfpUrl": "https://i.imgur.com/LcOdmx5.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdcf56f7856b1c40e933d5a93a20ad44c74d46f89", + "etherscanUrl": "https://etherscan.io/address/0xdcf56f7856b1c40e933d5a93a20ad44c74d46f89", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x038b30a95daaf3a4f5a938d268f50a1397e4f378", + "balanceRaw": "160960447371702304964", + "balanceFormatted": "160.960447371702304964", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x038b30a95daaf3a4f5a938d268f50a1397e4f378", + "etherscanUrl": "https://etherscan.io/address/0x038b30a95daaf3a4f5a938d268f50a1397e4f378", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9beae70b01d0aa17d106693e2cd3c6a19cd712b3", + "balanceRaw": "160613259074282511874", + "balanceFormatted": "160.613259074282511874", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9beae70b01d0aa17d106693e2cd3c6a19cd712b3", + "etherscanUrl": "https://etherscan.io/address/0x9beae70b01d0aa17d106693e2cd3c6a19cd712b3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1286ca25f8d2371059242b6eee2e6c8c0e7e47e5", + "balanceRaw": "160344000000000000000", + "balanceFormatted": "160.344", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1286ca25f8d2371059242b6eee2e6c8c0e7e47e5", + "etherscanUrl": "https://etherscan.io/address/0x1286ca25f8d2371059242b6eee2e6c8c0e7e47e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x02b0c14d2c03852ccebd1b2e66ab3c075a57711d", + "balanceRaw": "160031570292440228043", + "balanceFormatted": "160.031570292440228043", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02b0c14d2c03852ccebd1b2e66ab3c075a57711d", + "etherscanUrl": "https://etherscan.io/address/0x02b0c14d2c03852ccebd1b2e66ab3c075a57711d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_534662", + "balanceRaw": "159452253898590805082", + "balanceFormatted": "159.452253898590805082", + "lastTransferAt": null, + "username": "thr33hm", + "displayName": "hmson", + "fid": 534662, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce9f4d49-2656-444b-a844-85ebe28bae00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc356eeb26eb26103126ac319a2f09b20b5782929", + "etherscanUrl": "https://etherscan.io/address/0xc356eeb26eb26103126ac319a2f09b20b5782929", + "xHandle": "sonhm20", + "xUrl": "https://twitter.com/sonhm20", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb36b97ae57e6579c81703a481421f08536e32d61", + "balanceRaw": "158990086151316785925", + "balanceFormatted": "158.990086151316785925", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb36b97ae57e6579c81703a481421f08536e32d61", + "etherscanUrl": "https://etherscan.io/address/0xb36b97ae57e6579c81703a481421f08536e32d61", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe866d6c6b3bf8dcddb7d358525d00313bc13bf0f", + "balanceRaw": "158814999510641434089", + "balanceFormatted": "158.814999510641434089", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe866d6c6b3bf8dcddb7d358525d00313bc13bf0f", + "etherscanUrl": "https://etherscan.io/address/0xe866d6c6b3bf8dcddb7d358525d00313bc13bf0f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1442741", + "balanceRaw": "158630809676277272050", + "balanceFormatted": "158.63080967627727205", + "lastTransferAt": null, + "username": "!1442741", + "displayName": null, + "fid": 1442741, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe99f07e99e8a2b6572cd13c6c935ba15491f6ee9", + "etherscanUrl": "https://etherscan.io/address/0xe99f07e99e8a2b6572cd13c6c935ba15491f6ee9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf1bccae559b3e045546514634141f51dd88caede", + "balanceRaw": "158457574618833988498", + "balanceFormatted": "158.457574618833988498", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf1bccae559b3e045546514634141f51dd88caede", + "etherscanUrl": "https://etherscan.io/address/0xf1bccae559b3e045546514634141f51dd88caede", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac30bd0389b6c21cb1dd3aa7743654246c2b3f44", + "balanceRaw": "158274311909841407773", + "balanceFormatted": "158.274311909841407773", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac30bd0389b6c21cb1dd3aa7743654246c2b3f44", + "etherscanUrl": "https://etherscan.io/address/0xac30bd0389b6c21cb1dd3aa7743654246c2b3f44", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd06d3098cf06ae4cdabe03d12b6cf9878528c613", + "balanceRaw": "158266577273077956957", + "balanceFormatted": "158.266577273077956957", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd06d3098cf06ae4cdabe03d12b6cf9878528c613", + "etherscanUrl": "https://etherscan.io/address/0xd06d3098cf06ae4cdabe03d12b6cf9878528c613", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x82c0bd9c20379ae7d08bd74bd7afb2a18c6dbd43", + "balanceRaw": "157610433959471106745", + "balanceFormatted": "157.610433959471106745", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "biluk.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x82c0bd9c20379ae7d08bd74bd7afb2a18c6dbd43", + "etherscanUrl": "https://etherscan.io/address/0x82c0bd9c20379ae7d08bd74bd7afb2a18c6dbd43", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x96973f7b83a3c785d94e0a6d8712174abb81b748", + "balanceRaw": "157490000000000000000", + "balanceFormatted": "157.49", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96973f7b83a3c785d94e0a6d8712174abb81b748", + "etherscanUrl": "https://etherscan.io/address/0x96973f7b83a3c785d94e0a6d8712174abb81b748", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927545", + "balanceRaw": "157354905347500222802", + "balanceFormatted": "157.354905347500222802", + "lastTransferAt": null, + "username": "hanjiangxue", + "displayName": "Hanjiangxue", + "fid": 927545, + "followers": 8, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3803beed-79dc-4f6f-ee17-d178ce047800/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46847175e69ae63c97cb21217d385d9336548ee2", + "etherscanUrl": "https://etherscan.io/address/0x46847175e69ae63c97cb21217d385d9336548ee2", + "xHandle": "chiqianguai2024", + "xUrl": "https://twitter.com/chiqianguai2024", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x434d36f32abed3f7937fe0be88dc1b0eb9381244", + "balanceRaw": "157217353068712558592", + "balanceFormatted": "157.217353068712558592", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x434d36f32abed3f7937fe0be88dc1b0eb9381244", + "etherscanUrl": "https://etherscan.io/address/0x434d36f32abed3f7937fe0be88dc1b0eb9381244", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a6b54f6212673af30c2135838db29b5c79b86bb", + "balanceRaw": "157165036103289783575", + "balanceFormatted": "157.165036103289783575", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a6b54f6212673af30c2135838db29b5c79b86bb", + "etherscanUrl": "https://etherscan.io/address/0x8a6b54f6212673af30c2135838db29b5c79b86bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8dfe2ea92f5abd8c039bfca0c0744c0e2e87e1f2", + "balanceRaw": "156636909794641771531", + "balanceFormatted": "156.636909794641771531", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8dfe2ea92f5abd8c039bfca0c0744c0e2e87e1f2", + "etherscanUrl": "https://etherscan.io/address/0x8dfe2ea92f5abd8c039bfca0c0744c0e2e87e1f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x97d3ff5517f1bae16bc97d7d72b72fcab3c50e5c", + "balanceRaw": "156241804388873715580", + "balanceFormatted": "156.24180438887371558", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x97d3ff5517f1bae16bc97d7d72b72fcab3c50e5c", + "etherscanUrl": "https://etherscan.io/address/0x97d3ff5517f1bae16bc97d7d72b72fcab3c50e5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53a560dc781dd9cecdf14d60e8225a17ef4ac4e3", + "balanceRaw": "155463106604722386958", + "balanceFormatted": "155.463106604722386958", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53a560dc781dd9cecdf14d60e8225a17ef4ac4e3", + "etherscanUrl": "https://etherscan.io/address/0x53a560dc781dd9cecdf14d60e8225a17ef4ac4e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed702abc9fe8a256931b38a49804a538fdbc5472", + "balanceRaw": "154281333695001798327", + "balanceFormatted": "154.281333695001798327", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed702abc9fe8a256931b38a49804a538fdbc5472", + "etherscanUrl": "https://etherscan.io/address/0xed702abc9fe8a256931b38a49804a538fdbc5472", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeb5c0f3279a1316b3ffdaf0eadc5b1f97cda6e21", + "balanceRaw": "154060849498032574641", + "balanceFormatted": "154.060849498032574641", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb5c0f3279a1316b3ffdaf0eadc5b1f97cda6e21", + "etherscanUrl": "https://etherscan.io/address/0xeb5c0f3279a1316b3ffdaf0eadc5b1f97cda6e21", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_534655", + "balanceRaw": "153742251690630984302", + "balanceFormatted": "153.742251690630984302", + "lastTransferAt": null, + "username": "matizday", + "displayName": "dayma", + "fid": 534655, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f01e891-84a4-444d-131a-2e8af25e5700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x254a4c6bb86bb5c182c1ae8252340da789dc668c", + "etherscanUrl": "https://etherscan.io/address/0x254a4c6bb86bb5c182c1ae8252340da789dc668c", + "xHandle": "bjbjbjb87", + "xUrl": "https://twitter.com/bjbjbjb87", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbd95cb7e3574b5ce2ffff32fad346623bc626de0", + "balanceRaw": "153698334110442159352", + "balanceFormatted": "153.698334110442159352", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd95cb7e3574b5ce2ffff32fad346623bc626de0", + "etherscanUrl": "https://etherscan.io/address/0xbd95cb7e3574b5ce2ffff32fad346623bc626de0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc215d9d9dad342d662a4e34e06603f2dc0d4280b", + "balanceRaw": "153326952780000000000", + "balanceFormatted": "153.32695278", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc215d9d9dad342d662a4e34e06603f2dc0d4280b", + "etherscanUrl": "https://etherscan.io/address/0xc215d9d9dad342d662a4e34e06603f2dc0d4280b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9167902a148075f61fa03957e5f4196d18aee5a7", + "balanceRaw": "152854000000000000000", + "balanceFormatted": "152.854", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9167902a148075f61fa03957e5f4196d18aee5a7", + "etherscanUrl": "https://etherscan.io/address/0x9167902a148075f61fa03957e5f4196d18aee5a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb24371bc248a25ff788e21a6e90f6b81b9dca565", + "balanceRaw": "152398664490360180285", + "balanceFormatted": "152.398664490360180285", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb24371bc248a25ff788e21a6e90f6b81b9dca565", + "etherscanUrl": "https://etherscan.io/address/0xb24371bc248a25ff788e21a6e90f6b81b9dca565", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_493537", + "balanceRaw": "151800447658045482251", + "balanceFormatted": "151.800447658045482251", + "lastTransferAt": null, + "username": "grif", + "displayName": "Grif", + "fid": 493537, + "followers": 409, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_m3u8,f_png/v1757513217/video_uploads/1a2c0bcd-6efa-4420-ac52-8423d451b9e1.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x511227c444d741779414b6f35782da01cc88414c", + "etherscanUrl": "https://etherscan.io/address/0x511227c444d741779414b6f35782da01cc88414c", + "xHandle": "grif_gg", + "xUrl": "https://twitter.com/grif_gg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdcd8b900985e278399ba9d79b255b740ea53acb2", + "balanceRaw": "151489135906467918721", + "balanceFormatted": "151.489135906467918721", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdcd8b900985e278399ba9d79b255b740ea53acb2", + "etherscanUrl": "https://etherscan.io/address/0xdcd8b900985e278399ba9d79b255b740ea53acb2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdeeb527b2038f90cf5bb8b578fa2ae76df1f07db", + "balanceRaw": "151404123667667057181", + "balanceFormatted": "151.404123667667057181", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdeeb527b2038f90cf5bb8b578fa2ae76df1f07db", + "etherscanUrl": "https://etherscan.io/address/0xdeeb527b2038f90cf5bb8b578fa2ae76df1f07db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_528533", + "balanceRaw": "151386784244401558517", + "balanceFormatted": "151.386784244401558517", + "lastTransferAt": null, + "username": "whatliving", + "displayName": "whatliving", + "fid": 528533, + "followers": 13, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/696283c3-72b2-4660-5190-9b81bfe4da00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12c6729a923d1b11aa378f994f4257acaca26123", + "etherscanUrl": "https://etherscan.io/address/0x12c6729a923d1b11aa378f994f4257acaca26123", + "xHandle": "chochogadi", + "xUrl": "https://twitter.com/chochogadi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc7cbc179e141765dcd88c5e2dce173fe0b4a54a0", + "balanceRaw": "151230967534973017875", + "balanceFormatted": "151.230967534973017875", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7cbc179e141765dcd88c5e2dce173fe0b4a54a0", + "etherscanUrl": "https://etherscan.io/address/0xc7cbc179e141765dcd88c5e2dce173fe0b4a54a0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x20a49ad2f989971ea3c4e93a956784ee1960532a", + "balanceRaw": "150665170000000000000", + "balanceFormatted": "150.66517", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20a49ad2f989971ea3c4e93a956784ee1960532a", + "etherscanUrl": "https://etherscan.io/address/0x20a49ad2f989971ea3c4e93a956784ee1960532a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3ff2c0df347571b35376dca9897eb79b8947a572", + "balanceRaw": "150251000000000000000", + "balanceFormatted": "150.251", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ff2c0df347571b35376dca9897eb79b8947a572", + "etherscanUrl": "https://etherscan.io/address/0x3ff2c0df347571b35376dca9897eb79b8947a572", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_336022", + "balanceRaw": "150248491334823851352", + "balanceFormatted": "150.248491334823851352", + "lastTransferAt": null, + "username": "degen-chad", + "displayName": "degen chad", + "fid": 336022, + "followers": 8646, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f329718c-178d-4802-025c-5a9f7edff400/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c80786afdd12c81b6d6a876263a6159318aba09", + "etherscanUrl": "https://etherscan.io/address/0x3c80786afdd12c81b6d6a876263a6159318aba09", + "xHandle": "lococrypto420", + "xUrl": "https://twitter.com/lococrypto420", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7972793603343be73882c7891a84c5f3a85fde12", + "balanceRaw": "150000121000000000000", + "balanceFormatted": "150.000121", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7972793603343be73882c7891a84c5f3a85fde12", + "etherscanUrl": "https://etherscan.io/address/0x7972793603343be73882c7891a84c5f3a85fde12", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd18f58f4604bc2f50eea20f0b40b7fbc994c328c", + "balanceRaw": "150000000000000000000", + "balanceFormatted": "150", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd18f58f4604bc2f50eea20f0b40b7fbc994c328c", + "etherscanUrl": "https://etherscan.io/address/0xd18f58f4604bc2f50eea20f0b40b7fbc994c328c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x11f0758d1de21bbc69309221eec6be570c660322", + "balanceRaw": "150000000000000000000", + "balanceFormatted": "150", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11f0758d1de21bbc69309221eec6be570c660322", + "etherscanUrl": "https://etherscan.io/address/0x11f0758d1de21bbc69309221eec6be570c660322", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf74d811aa89555411e257d1d92c95360c8dffa7e", + "balanceRaw": "150000000000000000000", + "balanceFormatted": "150", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf74d811aa89555411e257d1d92c95360c8dffa7e", + "etherscanUrl": "https://etherscan.io/address/0xf74d811aa89555411e257d1d92c95360c8dffa7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbe612324ad54ed349545881e30ea438a5b93ae10", + "balanceRaw": "149483442284105263025", + "balanceFormatted": "149.483442284105263025", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe612324ad54ed349545881e30ea438a5b93ae10", + "etherscanUrl": "https://etherscan.io/address/0xbe612324ad54ed349545881e30ea438a5b93ae10", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x03c25c81e480bc73db92bd71b04c25167891d426", + "balanceRaw": "148855267426099827779", + "balanceFormatted": "148.855267426099827779", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03c25c81e480bc73db92bd71b04c25167891d426", + "etherscanUrl": "https://etherscan.io/address/0x03c25c81e480bc73db92bd71b04c25167891d426", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2982", + "balanceRaw": "148479727944144830667", + "balanceFormatted": "148.479727944144830667", + "lastTransferAt": null, + "username": "jacy", + "displayName": "sparkz", + "fid": 2982, + "followers": 10657, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63552b96-faf4-4480-7775-a93631aaa100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde6eff062895c1669c4920f96206e57c8c11a6e5", + "etherscanUrl": "https://etherscan.io/address/0xde6eff062895c1669c4920f96206e57c8c11a6e5", + "xHandle": "hawaiianft", + "xUrl": "https://twitter.com/hawaiianft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7fd91de6c9da239f27fcf690a420c495c2896a8", + "balanceRaw": "148314389624602335318", + "balanceFormatted": "148.314389624602335318", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7fd91de6c9da239f27fcf690a420c495c2896a8", + "etherscanUrl": "https://etherscan.io/address/0xb7fd91de6c9da239f27fcf690a420c495c2896a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9b43826a70578444bc82ffd2886f8a9a4615eeeb", + "balanceRaw": "148262960398305635556", + "balanceFormatted": "148.262960398305635556", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b43826a70578444bc82ffd2886f8a9a4615eeeb", + "etherscanUrl": "https://etherscan.io/address/0x9b43826a70578444bc82ffd2886f8a9a4615eeeb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf173f3395d08488f548b71bcf0d46884b3c40b78", + "balanceRaw": "147704519778409621369", + "balanceFormatted": "147.704519778409621369", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf173f3395d08488f548b71bcf0d46884b3c40b78", + "etherscanUrl": "https://etherscan.io/address/0xf173f3395d08488f548b71bcf0d46884b3c40b78", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc23406d8e43ee59b8b6411e067c9afab918930f2", + "balanceRaw": "147695114684773656944", + "balanceFormatted": "147.695114684773656944", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc23406d8e43ee59b8b6411e067c9afab918930f2", + "etherscanUrl": "https://etherscan.io/address/0xc23406d8e43ee59b8b6411e067c9afab918930f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfabe7703ed620b4c8c78085008cb7dd4d27fb83e", + "balanceRaw": "147512164905044548922", + "balanceFormatted": "147.512164905044548922", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfabe7703ed620b4c8c78085008cb7dd4d27fb83e", + "etherscanUrl": "https://etherscan.io/address/0xfabe7703ed620b4c8c78085008cb7dd4d27fb83e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5651e5445e13d742eb1a43d98c8cbbfa7a4a947a", + "balanceRaw": "146542856413215077430", + "balanceFormatted": "146.54285641321507743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5651e5445e13d742eb1a43d98c8cbbfa7a4a947a", + "etherscanUrl": "https://etherscan.io/address/0x5651e5445e13d742eb1a43d98c8cbbfa7a4a947a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd3048bdef8e2d82073c49f72411110b4867c5c85", + "balanceRaw": "145672823128481117517", + "balanceFormatted": "145.672823128481117517", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3048bdef8e2d82073c49f72411110b4867c5c85", + "etherscanUrl": "https://etherscan.io/address/0xd3048bdef8e2d82073c49f72411110b4867c5c85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd35d6ad3c584c0f56abff7e6b1572f162c24551a", + "balanceRaw": "145050042593499155525", + "balanceFormatted": "145.050042593499155525", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd35d6ad3c584c0f56abff7e6b1572f162c24551a", + "etherscanUrl": "https://etherscan.io/address/0xd35d6ad3c584c0f56abff7e6b1572f162c24551a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_344232", + "balanceRaw": "145000000000000000000", + "balanceFormatted": "145", + "lastTransferAt": null, + "username": "n-n", + "displayName": "Robert Hicken", + "fid": 344232, + "followers": 93, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f5707f9-6d79-41e6-19ce-dced244e8500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96fa16a17d4fd4683c159110e51826e13fc1a5b4", + "etherscanUrl": "https://etherscan.io/address/0x96fa16a17d4fd4683c159110e51826e13fc1a5b4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4447", + "balanceRaw": "144914797929308360041", + "balanceFormatted": "144.914797929308360041", + "lastTransferAt": null, + "username": "lost", + "displayName": "", + "fid": 4447, + "followers": 1234, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6136c918-13a9-41f1-68f2-3fa7f8952a00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ca28d283189e7b4ff57a8ea6ede2b7b5c604efe", + "etherscanUrl": "https://etherscan.io/address/0x7ca28d283189e7b4ff57a8ea6ede2b7b5c604efe", + "xHandle": "gabe_ragland", + "xUrl": "https://twitter.com/gabe_ragland", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9795d21237e0e7c5ea1b67daa6ddbfbcf18fa096", + "balanceRaw": "144573221936344011069", + "balanceFormatted": "144.573221936344011069", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9795d21237e0e7c5ea1b67daa6ddbfbcf18fa096", + "etherscanUrl": "https://etherscan.io/address/0x9795d21237e0e7c5ea1b67daa6ddbfbcf18fa096", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda8ac544d0f4bd677e15df539d87116f5bec7e18", + "balanceRaw": "143159717437980340250", + "balanceFormatted": "143.15971743798034025", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda8ac544d0f4bd677e15df539d87116f5bec7e18", + "etherscanUrl": "https://etherscan.io/address/0xda8ac544d0f4bd677e15df539d87116f5bec7e18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdcfb68df7f9538d6c9058bbb1a7b5147c6534fe2", + "balanceRaw": "142588159475887268413", + "balanceFormatted": "142.588159475887268413", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdcfb68df7f9538d6c9058bbb1a7b5147c6534fe2", + "etherscanUrl": "https://etherscan.io/address/0xdcfb68df7f9538d6c9058bbb1a7b5147c6534fe2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7d77fd5cd3d3332e13efa9b8d291cfd8748ed1dd", + "balanceRaw": "142527487152529431944", + "balanceFormatted": "142.527487152529431944", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d77fd5cd3d3332e13efa9b8d291cfd8748ed1dd", + "etherscanUrl": "https://etherscan.io/address/0x7d77fd5cd3d3332e13efa9b8d291cfd8748ed1dd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x445d60f90bd643d4490b32ebe507dce7c08f0097", + "balanceRaw": "142089682393926019569", + "balanceFormatted": "142.089682393926019569", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x445d60f90bd643d4490b32ebe507dce7c08f0097", + "etherscanUrl": "https://etherscan.io/address/0x445d60f90bd643d4490b32ebe507dce7c08f0097", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3642", + "balanceRaw": "141813300448949230469", + "balanceFormatted": "141.813300448949230469", + "lastTransferAt": null, + "username": "toadyhawk.eth", + "displayName": "Toady Hawk", + "fid": 3642, + "followers": 156716, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/961c607f-84d6-4973-4a2a-bcba6ed82c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49fcf7fd8bced178a3c65d3341f61821eef76423", + "etherscanUrl": "https://etherscan.io/address/0x49fcf7fd8bced178a3c65d3341f61821eef76423", + "xHandle": "toady_hawk", + "xUrl": "https://twitter.com/toady_hawk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x813b5475e8555f26ab7f10bade69694d18312a75", + "balanceRaw": "141798525019254406236", + "balanceFormatted": "141.798525019254406236", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x813b5475e8555f26ab7f10bade69694d18312a75", + "etherscanUrl": "https://etherscan.io/address/0x813b5475e8555f26ab7f10bade69694d18312a75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba80c7e11b8a6a3ac2a557192a5e3cb0ad05101a", + "balanceRaw": "141749527142533211581", + "balanceFormatted": "141.749527142533211581", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba80c7e11b8a6a3ac2a557192a5e3cb0ad05101a", + "etherscanUrl": "https://etherscan.io/address/0xba80c7e11b8a6a3ac2a557192a5e3cb0ad05101a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x98f607fdff4f21044456dfef4a7739a91619fd53", + "balanceRaw": "141640469102220226150", + "balanceFormatted": "141.64046910222022615", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x98f607fdff4f21044456dfef4a7739a91619fd53", + "etherscanUrl": "https://etherscan.io/address/0x98f607fdff4f21044456dfef4a7739a91619fd53", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x40da5fcd492c2e05eba34679ceaeabfb113a7470", + "balanceRaw": "141606439667585254397", + "balanceFormatted": "141.606439667585254397", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40da5fcd492c2e05eba34679ceaeabfb113a7470", + "etherscanUrl": "https://etherscan.io/address/0x40da5fcd492c2e05eba34679ceaeabfb113a7470", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_277725", + "balanceRaw": "140543956958303978723", + "balanceFormatted": "140.543956958303978723", + "lastTransferAt": null, + "username": "cruiser", + "displayName": "Cruiser 🔵🎩", + "fid": 277725, + "followers": 55, + "pfpUrl": "https://i.imgur.com/qHlW0QG.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4d7227660d233f61cb1c4f16e35998266e20aef", + "etherscanUrl": "https://etherscan.io/address/0xb4d7227660d233f61cb1c4f16e35998266e20aef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x71e32deb2f83ef8785468d77373a3c4d2dcfe098", + "balanceRaw": "140078086921983361024", + "balanceFormatted": "140.078086921983361024", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71e32deb2f83ef8785468d77373a3c4d2dcfe098", + "etherscanUrl": "https://etherscan.io/address/0x71e32deb2f83ef8785468d77373a3c4d2dcfe098", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x55caeb84763e26c564f853111456ea45943f70f4", + "balanceRaw": "139463428874940529403", + "balanceFormatted": "139.463428874940529403", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55caeb84763e26c564f853111456ea45943f70f4", + "etherscanUrl": "https://etherscan.io/address/0x55caeb84763e26c564f853111456ea45943f70f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac6c213cf5877cfb49b28f1c907cb889e77f8b99", + "balanceRaw": "139218388538452633907", + "balanceFormatted": "139.218388538452633907", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac6c213cf5877cfb49b28f1c907cb889e77f8b99", + "etherscanUrl": "https://etherscan.io/address/0xac6c213cf5877cfb49b28f1c907cb889e77f8b99", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac124b80a7e8af2f0aca5718ad9a1e5e58355339", + "balanceRaw": "138656550664145971989", + "balanceFormatted": "138.656550664145971989", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac124b80a7e8af2f0aca5718ad9a1e5e58355339", + "etherscanUrl": "https://etherscan.io/address/0xac124b80a7e8af2f0aca5718ad9a1e5e58355339", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x57060205e2b7d29a84970b0471aea03ab6b97c20", + "balanceRaw": "138268304275911167744", + "balanceFormatted": "138.268304275911167744", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57060205e2b7d29a84970b0471aea03ab6b97c20", + "etherscanUrl": "https://etherscan.io/address/0x57060205e2b7d29a84970b0471aea03ab6b97c20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5581a582b431250d206b113d38f4af67722a06b1", + "balanceRaw": "138115442859460310779", + "balanceFormatted": "138.115442859460310779", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5581a582b431250d206b113d38f4af67722a06b1", + "etherscanUrl": "https://etherscan.io/address/0x5581a582b431250d206b113d38f4af67722a06b1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdd73867db0b7cf9e5b075a6f98bd260e2389a538", + "balanceRaw": "137613417542483061135", + "balanceFormatted": "137.613417542483061135", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd73867db0b7cf9e5b075a6f98bd260e2389a538", + "etherscanUrl": "https://etherscan.io/address/0xdd73867db0b7cf9e5b075a6f98bd260e2389a538", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc3e0f31ada1e5fc816bc0e09b7c2ef0ea1ee13a", + "balanceRaw": "137306775583666648088", + "balanceFormatted": "137.306775583666648088", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc3e0f31ada1e5fc816bc0e09b7c2ef0ea1ee13a", + "etherscanUrl": "https://etherscan.io/address/0xdc3e0f31ada1e5fc816bc0e09b7c2ef0ea1ee13a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x174595f33cc26aab42b73af8d5077af5c0ad714c", + "balanceRaw": "137251674412474135796", + "balanceFormatted": "137.251674412474135796", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x174595f33cc26aab42b73af8d5077af5c0ad714c", + "etherscanUrl": "https://etherscan.io/address/0x174595f33cc26aab42b73af8d5077af5c0ad714c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x303909d1e0b22d61b2de4b2ecb2e62599945639a", + "balanceRaw": "136925996609642111613", + "balanceFormatted": "136.925996609642111613", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x303909d1e0b22d61b2de4b2ecb2e62599945639a", + "etherscanUrl": "https://etherscan.io/address/0x303909d1e0b22d61b2de4b2ecb2e62599945639a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe0ac7f572b922330915c220b103bf7eeca2fdfaa", + "balanceRaw": "136611834239001360754", + "balanceFormatted": "136.611834239001360754", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe0ac7f572b922330915c220b103bf7eeca2fdfaa", + "etherscanUrl": "https://etherscan.io/address/0xe0ac7f572b922330915c220b103bf7eeca2fdfaa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5f7399231a591370a28f9f263e55d29000654807", + "balanceRaw": "136589372254839792290", + "balanceFormatted": "136.58937225483979229", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f7399231a591370a28f9f263e55d29000654807", + "etherscanUrl": "https://etherscan.io/address/0x5f7399231a591370a28f9f263e55d29000654807", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc827d4d5e16dd54e32fbdbc0d82c5ae4870525ea", + "balanceRaw": "136369643110543542485", + "balanceFormatted": "136.369643110543542485", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc827d4d5e16dd54e32fbdbc0d82c5ae4870525ea", + "etherscanUrl": "https://etherscan.io/address/0xc827d4d5e16dd54e32fbdbc0d82c5ae4870525ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x570460f07684ff86fdccd9feda62e5a08ff190cf", + "balanceRaw": "136133300000000000000", + "balanceFormatted": "136.1333", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x570460f07684ff86fdccd9feda62e5a08ff190cf", + "etherscanUrl": "https://etherscan.io/address/0x570460f07684ff86fdccd9feda62e5a08ff190cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a7c6aab33e9c41428c82411ef8e8b22ebac8cac", + "balanceRaw": "136024574028471680727", + "balanceFormatted": "136.024574028471680727", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a7c6aab33e9c41428c82411ef8e8b22ebac8cac", + "etherscanUrl": "https://etherscan.io/address/0x7a7c6aab33e9c41428c82411ef8e8b22ebac8cac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x032929f94a343719cccde5be302b530f787b1370", + "balanceRaw": "135432353397823033528", + "balanceFormatted": "135.432353397823033528", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x032929f94a343719cccde5be302b530f787b1370", + "etherscanUrl": "https://etherscan.io/address/0x032929f94a343719cccde5be302b530f787b1370", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_420816", + "balanceRaw": "135431989216126417402", + "balanceFormatted": "135.431989216126417402", + "lastTransferAt": null, + "username": "yigitm", + "displayName": "0xyigit.base.eth", + "fid": 420816, + "followers": 607, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43c5b974-4342-410d-7147-48f98d94c100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa69a63496296e6b04777ad41f6d3605bbeb574d1", + "etherscanUrl": "https://etherscan.io/address/0xa69a63496296e6b04777ad41f6d3605bbeb574d1", + "xHandle": "yigitm44", + "xUrl": "https://twitter.com/yigitm44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc59da89633fbd3bd27bd22e5acede444c394beb", + "balanceRaw": "135000055139105779184", + "balanceFormatted": "135.000055139105779184", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc59da89633fbd3bd27bd22e5acede444c394beb", + "etherscanUrl": "https://etherscan.io/address/0xdc59da89633fbd3bd27bd22e5acede444c394beb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x25848b8e80e1537f377c1405227d1503ca141fde", + "balanceRaw": "134994826525481162586", + "balanceFormatted": "134.994826525481162586", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x25848b8e80e1537f377c1405227d1503ca141fde", + "etherscanUrl": "https://etherscan.io/address/0x25848b8e80e1537f377c1405227d1503ca141fde", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10174", + "balanceRaw": "134507769803971841751", + "balanceFormatted": "134.507769803971841751", + "lastTransferAt": null, + "username": "cryptowenmoon.eth", + "displayName": "Ray F. 🎩", + "fid": 10174, + "followers": 12587, + "pfpUrl": "https://i.imgur.com/tABKvo7.gif", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52bd76703e654b70fc5ee1fca02ea2725f60117b", + "etherscanUrl": "https://etherscan.io/address/0x52bd76703e654b70fc5ee1fca02ea2725f60117b", + "xHandle": "crypto_wenmoon", + "xUrl": "https://twitter.com/crypto_wenmoon", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb8605388826a3fc1adc94bad37772210c42b940b", + "balanceRaw": "132710420913335676938", + "balanceFormatted": "132.710420913335676938", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb8605388826a3fc1adc94bad37772210c42b940b", + "etherscanUrl": "https://etherscan.io/address/0xb8605388826a3fc1adc94bad37772210c42b940b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6d0b62171e5c8e3731005170139250091dbe9e85", + "balanceRaw": "132248556096292559872", + "balanceFormatted": "132.248556096292559872", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d0b62171e5c8e3731005170139250091dbe9e85", + "etherscanUrl": "https://etherscan.io/address/0x6d0b62171e5c8e3731005170139250091dbe9e85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc043eb6d5f2a6c571beb1178ea6f4c0e467f0cdc", + "balanceRaw": "131856439319250065779", + "balanceFormatted": "131.856439319250065779", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc043eb6d5f2a6c571beb1178ea6f4c0e467f0cdc", + "etherscanUrl": "https://etherscan.io/address/0xc043eb6d5f2a6c571beb1178ea6f4c0e467f0cdc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5cc18f9d8cd51dcb2a26c7c0baf273e5d3143be4", + "balanceRaw": "131750659629614033845", + "balanceFormatted": "131.750659629614033845", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5cc18f9d8cd51dcb2a26c7c0baf273e5d3143be4", + "etherscanUrl": "https://etherscan.io/address/0x5cc18f9d8cd51dcb2a26c7c0baf273e5d3143be4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff068c48ef0ea3b02cc8f0cda44d486c10c1f09e", + "balanceRaw": "131717982726768430954", + "balanceFormatted": "131.717982726768430954", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff068c48ef0ea3b02cc8f0cda44d486c10c1f09e", + "etherscanUrl": "https://etherscan.io/address/0xff068c48ef0ea3b02cc8f0cda44d486c10c1f09e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf0ac3d5d902108c8a94890619dfe068bda5c1aaa", + "balanceRaw": "131591187096621719909", + "balanceFormatted": "131.591187096621719909", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0ac3d5d902108c8a94890619dfe068bda5c1aaa", + "etherscanUrl": "https://etherscan.io/address/0xf0ac3d5d902108c8a94890619dfe068bda5c1aaa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb1fe8d7274efcad6571f11465709a7df0521b2a9", + "balanceRaw": "130095235673011789191", + "balanceFormatted": "130.095235673011789191", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1fe8d7274efcad6571f11465709a7df0521b2a9", + "etherscanUrl": "https://etherscan.io/address/0xb1fe8d7274efcad6571f11465709a7df0521b2a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8f2c60ba450c5acf58ea06feb38cfacfe0d9c78a", + "balanceRaw": "129609984757642569348", + "balanceFormatted": "129.609984757642569348", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f2c60ba450c5acf58ea06feb38cfacfe0d9c78a", + "etherscanUrl": "https://etherscan.io/address/0x8f2c60ba450c5acf58ea06feb38cfacfe0d9c78a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf829bdab49a80dbcefec333beff4d2aa5db1fcef", + "balanceRaw": "129461683318771372032", + "balanceFormatted": "129.461683318771372032", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf829bdab49a80dbcefec333beff4d2aa5db1fcef", + "etherscanUrl": "https://etherscan.io/address/0xf829bdab49a80dbcefec333beff4d2aa5db1fcef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x912dd653050cef3e2401f2f9f35487284cac676f", + "balanceRaw": "129340833279088478112", + "balanceFormatted": "129.340833279088478112", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x912dd653050cef3e2401f2f9f35487284cac676f", + "etherscanUrl": "https://etherscan.io/address/0x912dd653050cef3e2401f2f9f35487284cac676f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c5a5114d03de55a2c3e9c499906d838de17dd94", + "balanceRaw": "129305207372476264447", + "balanceFormatted": "129.305207372476264447", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c5a5114d03de55a2c3e9c499906d838de17dd94", + "etherscanUrl": "https://etherscan.io/address/0x8c5a5114d03de55a2c3e9c499906d838de17dd94", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb2bf9f21e1c6eb66af815a4bd9e8371ab0b57771", + "balanceRaw": "129294093822374117586", + "balanceFormatted": "129.294093822374117586", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2bf9f21e1c6eb66af815a4bd9e8371ab0b57771", + "etherscanUrl": "https://etherscan.io/address/0xb2bf9f21e1c6eb66af815a4bd9e8371ab0b57771", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8992a1f4e302460bd49a1646ee315d810235212", + "balanceRaw": "129161495728769042285", + "balanceFormatted": "129.161495728769042285", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8992a1f4e302460bd49a1646ee315d810235212", + "etherscanUrl": "https://etherscan.io/address/0xf8992a1f4e302460bd49a1646ee315d810235212", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbf7f315c20d087eda496aea4217b56ef02f0c8d1", + "balanceRaw": "128836016192791023396", + "balanceFormatted": "128.836016192791023396", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf7f315c20d087eda496aea4217b56ef02f0c8d1", + "etherscanUrl": "https://etherscan.io/address/0xbf7f315c20d087eda496aea4217b56ef02f0c8d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe7ce6e78938265dd4d238144998fbfd872b19da7", + "balanceRaw": "128806618722561729879", + "balanceFormatted": "128.806618722561729879", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7ce6e78938265dd4d238144998fbfd872b19da7", + "etherscanUrl": "https://etherscan.io/address/0xe7ce6e78938265dd4d238144998fbfd872b19da7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5151cf6e6e61597dad5f9cb524251677405e89ba", + "balanceRaw": "128287714687209632638", + "balanceFormatted": "128.287714687209632638", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5151cf6e6e61597dad5f9cb524251677405e89ba", + "etherscanUrl": "https://etherscan.io/address/0x5151cf6e6e61597dad5f9cb524251677405e89ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x498af4898ab23f9e1041c93da96e18d6e23c5129", + "balanceRaw": "127775856442879106736", + "balanceFormatted": "127.775856442879106736", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x498af4898ab23f9e1041c93da96e18d6e23c5129", + "etherscanUrl": "https://etherscan.io/address/0x498af4898ab23f9e1041c93da96e18d6e23c5129", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1f53c0bee870c2e8b28fefd1353edbe6b158a845", + "balanceRaw": "127728653512147121435", + "balanceFormatted": "127.728653512147121435", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f53c0bee870c2e8b28fefd1353edbe6b158a845", + "etherscanUrl": "https://etherscan.io/address/0x1f53c0bee870c2e8b28fefd1353edbe6b158a845", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_532277", + "balanceRaw": "127687065564541641522", + "balanceFormatted": "127.687065564541641522", + "lastTransferAt": null, + "username": "bestofmatiz", + "displayName": "bestofka", + "fid": 532277, + "followers": 22, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d45be7d-6d74-4637-798b-ef1248ab8000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36f10b6e4f81dbbc483d261a2fb291dedef95da2", + "etherscanUrl": "https://etherscan.io/address/0x36f10b6e4f81dbbc483d261a2fb291dedef95da2", + "xHandle": "matimzw", + "xUrl": "https://twitter.com/matimzw", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x90bfbf266bb1429c72cac64d9de3d420b8dd5b3e", + "balanceRaw": "127565400240324314336", + "balanceFormatted": "127.565400240324314336", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90bfbf266bb1429c72cac64d9de3d420b8dd5b3e", + "etherscanUrl": "https://etherscan.io/address/0x90bfbf266bb1429c72cac64d9de3d420b8dd5b3e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x33b467c8cff395e8da9e6b47ef52eb472ce61d09", + "balanceRaw": "126128576796704239546", + "balanceFormatted": "126.128576796704239546", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x33b467c8cff395e8da9e6b47ef52eb472ce61d09", + "etherscanUrl": "https://etherscan.io/address/0x33b467c8cff395e8da9e6b47ef52eb472ce61d09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4369c1744577a68c294c56a4d55178680706d955", + "balanceRaw": "126115017314630196057", + "balanceFormatted": "126.115017314630196057", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4369c1744577a68c294c56a4d55178680706d955", + "etherscanUrl": "https://etherscan.io/address/0x4369c1744577a68c294c56a4d55178680706d955", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3cfb36966765b3db57e5566cbbea1db189c04152", + "balanceRaw": "125863356669305370869", + "balanceFormatted": "125.863356669305370869", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3cfb36966765b3db57e5566cbbea1db189c04152", + "etherscanUrl": "https://etherscan.io/address/0x3cfb36966765b3db57e5566cbbea1db189c04152", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec3d72a4c0b6f819fb39c99b56c46d757bf9d59d", + "balanceRaw": "125662000000000000000", + "balanceFormatted": "125.662", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec3d72a4c0b6f819fb39c99b56c46d757bf9d59d", + "etherscanUrl": "https://etherscan.io/address/0xec3d72a4c0b6f819fb39c99b56c46d757bf9d59d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x36cd28fe44208c6bf8c09d97c8acd0ec996e4dc3", + "balanceRaw": "125502897357363836000", + "balanceFormatted": "125.502897357363836", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36cd28fe44208c6bf8c09d97c8acd0ec996e4dc3", + "etherscanUrl": "https://etherscan.io/address/0x36cd28fe44208c6bf8c09d97c8acd0ec996e4dc3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x81ead9025a005929658bd3ee5c0437c3849edf7d", + "balanceRaw": "125163646251911103488", + "balanceFormatted": "125.163646251911103488", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81ead9025a005929658bd3ee5c0437c3849edf7d", + "etherscanUrl": "https://etherscan.io/address/0x81ead9025a005929658bd3ee5c0437c3849edf7d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_323746", + "balanceRaw": "125000000026413932206", + "balanceFormatted": "125.000000026413932206", + "lastTransferAt": null, + "username": "jackwyldes.eth", + "displayName": "JackWyldes", + "fid": 323746, + "followers": 4289, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmZCPS637XHZDuzZTm29vsM8TQ6pcG6gbdRzoEnoxmw9sB?pinataGatewayToken=PMz6RFTDuk-300OttNnb_U0PSKbbXQdzLmUqdiEq7lesXcsVK8TK7S5GoOtxRGl2", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa06521e841707f81f4644fc6acc3ff75205461a0", + "etherscanUrl": "https://etherscan.io/address/0xa06521e841707f81f4644fc6acc3ff75205461a0", + "xHandle": "jackwyldes", + "xUrl": "https://twitter.com/jackwyldes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6ad1a91ca59cf12d58c5f81dd737e8081c7c6e64", + "balanceRaw": "124887876688499928175", + "balanceFormatted": "124.887876688499928175", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ad1a91ca59cf12d58c5f81dd737e8081c7c6e64", + "etherscanUrl": "https://etherscan.io/address/0x6ad1a91ca59cf12d58c5f81dd737e8081c7c6e64", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_129", + "balanceRaw": "124725788920657622188", + "balanceFormatted": "124.725788920657622188", + "lastTransferAt": null, + "username": "phil", + "displayName": "phil", + "fid": 129, + "followers": 466528, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa551416-4bdd-4e0f-63f3-08f2b82dc700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x83d6202e0bc39b516d4b8b1770fbe3e4d7561baf", + "etherscanUrl": "https://etherscan.io/address/0x83d6202e0bc39b516d4b8b1770fbe3e4d7561baf", + "xHandle": "philmohun", + "xUrl": "https://twitter.com/philmohun", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8175732f812af3aff7cf5f73dfcf947c9eef279c", + "balanceRaw": "124664159615057993048", + "balanceFormatted": "124.664159615057993048", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8175732f812af3aff7cf5f73dfcf947c9eef279c", + "etherscanUrl": "https://etherscan.io/address/0x8175732f812af3aff7cf5f73dfcf947c9eef279c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa7358e93b653ad1220f93931e360c3e086fdf5d0", + "balanceRaw": "124257076311737180352", + "balanceFormatted": "124.257076311737180352", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa7358e93b653ad1220f93931e360c3e086fdf5d0", + "etherscanUrl": "https://etherscan.io/address/0xa7358e93b653ad1220f93931e360c3e086fdf5d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_226545", + "balanceRaw": "124015694501789074515", + "balanceFormatted": "124.015694501789074515", + "lastTransferAt": null, + "username": "nullable.eth", + "displayName": " nullable.eth 🎩", + "fid": 226545, + "followers": 23, + "pfpUrl": "https://i.imgur.com/moq9klf.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdfa3078a54b9232b75b3baf88804b711b2463943", + "etherscanUrl": "https://etherscan.io/address/0xdfa3078a54b9232b75b3baf88804b711b2463943", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xacb38898840ad9e4b6058179329b610dda1d2861", + "balanceRaw": "122956335316716278071", + "balanceFormatted": "122.956335316716278071", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacb38898840ad9e4b6058179329b610dda1d2861", + "etherscanUrl": "https://etherscan.io/address/0xacb38898840ad9e4b6058179329b610dda1d2861", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcab72c950d3971baf129392edf644a6cb4a18be1", + "balanceRaw": "122813437167903729247", + "balanceFormatted": "122.813437167903729247", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcab72c950d3971baf129392edf644a6cb4a18be1", + "etherscanUrl": "https://etherscan.io/address/0xcab72c950d3971baf129392edf644a6cb4a18be1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa6094d47862fcd0cf36fff16b848a6a95785c587", + "balanceRaw": "122808865725869399187", + "balanceFormatted": "122.808865725869399187", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6094d47862fcd0cf36fff16b848a6a95785c587", + "etherscanUrl": "https://etherscan.io/address/0xa6094d47862fcd0cf36fff16b848a6a95785c587", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8952", + "balanceRaw": "122614010719967362593", + "balanceFormatted": "122.614010719967362593", + "lastTransferAt": null, + "username": "littlethings", + "displayName": "Lit", + "fid": 8952, + "followers": 2054, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafkreif7iwwghepeq3o337rh6llrpvbi6ege2pgxnnpqvfw4nwrok2xgd4", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3226ab225e471eebc833e44520945d0ce25f8bb5", + "etherscanUrl": "https://etherscan.io/address/0x3226ab225e471eebc833e44520945d0ce25f8bb5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xee367d7e1151fc6d22f505738954d426eea9136d", + "balanceRaw": "122436922597849118608", + "balanceFormatted": "122.436922597849118608", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee367d7e1151fc6d22f505738954d426eea9136d", + "etherscanUrl": "https://etherscan.io/address/0xee367d7e1151fc6d22f505738954d426eea9136d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf4c28fb811d760db6f522c3b2533024bad8ca285", + "balanceRaw": "122264467817504330267", + "balanceFormatted": "122.264467817504330267", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4c28fb811d760db6f522c3b2533024bad8ca285", + "etherscanUrl": "https://etherscan.io/address/0xf4c28fb811d760db6f522c3b2533024bad8ca285", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x066169e6ddf389de6fbcb7fc074ddb01a76e24c7", + "balanceRaw": "122212591807705382912", + "balanceFormatted": "122.212591807705382912", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x066169e6ddf389de6fbcb7fc074ddb01a76e24c7", + "etherscanUrl": "https://etherscan.io/address/0x066169e6ddf389de6fbcb7fc074ddb01a76e24c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd27f76c5a7367d12dd29af36479a75b12e1edd58", + "balanceRaw": "121509957319412400128", + "balanceFormatted": "121.509957319412400128", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd27f76c5a7367d12dd29af36479a75b12e1edd58", + "etherscanUrl": "https://etherscan.io/address/0xd27f76c5a7367d12dd29af36479a75b12e1edd58", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde260d46793c0dad685cf44eba58e4b5800592b5", + "balanceRaw": "121109663660011798689", + "balanceFormatted": "121.109663660011798689", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde260d46793c0dad685cf44eba58e4b5800592b5", + "etherscanUrl": "https://etherscan.io/address/0xde260d46793c0dad685cf44eba58e4b5800592b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd4bb1902240be8361c28fa35c406f56d22246e60", + "balanceRaw": "121033536144420000660", + "balanceFormatted": "121.03353614442000066", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4bb1902240be8361c28fa35c406f56d22246e60", + "etherscanUrl": "https://etherscan.io/address/0xd4bb1902240be8361c28fa35c406f56d22246e60", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a07405a35aae882a29eeef652f0cb0533dcd003", + "balanceRaw": "120248649124877806952", + "balanceFormatted": "120.248649124877806952", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a07405a35aae882a29eeef652f0cb0533dcd003", + "etherscanUrl": "https://etherscan.io/address/0x7a07405a35aae882a29eeef652f0cb0533dcd003", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf535738f24a8ed5f4432aac2863360f9256ae33c", + "balanceRaw": "120021382902707198720", + "balanceFormatted": "120.02138290270719872", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf535738f24a8ed5f4432aac2863360f9256ae33c", + "etherscanUrl": "https://etherscan.io/address/0xf535738f24a8ed5f4432aac2863360f9256ae33c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcfc6bf754f3557a36d826613c6cd11d7ea5a7b32", + "balanceRaw": "120006279364994440692", + "balanceFormatted": "120.006279364994440692", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcfc6bf754f3557a36d826613c6cd11d7ea5a7b32", + "etherscanUrl": "https://etherscan.io/address/0xcfc6bf754f3557a36d826613c6cd11d7ea5a7b32", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x909b8635dfa669230424dc3b71e7eb88a70b2859", + "balanceRaw": "119433025062791922481", + "balanceFormatted": "119.433025062791922481", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x909b8635dfa669230424dc3b71e7eb88a70b2859", + "etherscanUrl": "https://etherscan.io/address/0x909b8635dfa669230424dc3b71e7eb88a70b2859", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xccdc603a336270d63962dad04f3bd8b81143f81a", + "balanceRaw": "118948993837553047760", + "balanceFormatted": "118.94899383755304776", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xccdc603a336270d63962dad04f3bd8b81143f81a", + "etherscanUrl": "https://etherscan.io/address/0xccdc603a336270d63962dad04f3bd8b81143f81a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfb68b6509c263d7cced7f874ee022f91edb398bf", + "balanceRaw": "118290970177113203944", + "balanceFormatted": "118.290970177113203944", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb68b6509c263d7cced7f874ee022f91edb398bf", + "etherscanUrl": "https://etherscan.io/address/0xfb68b6509c263d7cced7f874ee022f91edb398bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5698af96beeb62e1fba97724090dde2983af0785", + "balanceRaw": "118178398496647572231", + "balanceFormatted": "118.178398496647572231", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5698af96beeb62e1fba97724090dde2983af0785", + "etherscanUrl": "https://etherscan.io/address/0x5698af96beeb62e1fba97724090dde2983af0785", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x12478d1a60a910c9cbffb90648766a2bdd5918f5", + "balanceRaw": "118113356767114416727", + "balanceFormatted": "118.113356767114416727", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12478d1a60a910c9cbffb90648766a2bdd5918f5", + "etherscanUrl": "https://etherscan.io/address/0x12478d1a60a910c9cbffb90648766a2bdd5918f5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263333", + "balanceRaw": "118112836438606120672", + "balanceFormatted": "118.112836438606120672", + "lastTransferAt": null, + "username": "clfx.eth", + "displayName": "colfax", + "fid": 263333, + "followers": 15434, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/712e3b0a-f619-4541-28d4-5d57f9f10e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x310f92fdb4e499cfa8146c86e0e1ad5ce9e36a4b", + "etherscanUrl": "https://etherscan.io/address/0x310f92fdb4e499cfa8146c86e0e1ad5ce9e36a4b", + "xHandle": "tbdzip", + "xUrl": "https://twitter.com/tbdzip", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xabb33725d50446f0b5e6e10196e309cc0e4ababe", + "balanceRaw": "117781059167161093185", + "balanceFormatted": "117.781059167161093185", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabb33725d50446f0b5e6e10196e309cc0e4ababe", + "etherscanUrl": "https://etherscan.io/address/0xabb33725d50446f0b5e6e10196e309cc0e4ababe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3f6b6c4309ba9a9887216dbebf39fac78406696", + "balanceRaw": "117776376990226863606", + "balanceFormatted": "117.776376990226863606", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3f6b6c4309ba9a9887216dbebf39fac78406696", + "etherscanUrl": "https://etherscan.io/address/0xc3f6b6c4309ba9a9887216dbebf39fac78406696", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_6643", + "balanceRaw": "117773860162866482762", + "balanceFormatted": "117.773860162866482762", + "lastTransferAt": null, + "username": "kredwyn", + "displayName": "kredwyn", + "fid": 6643, + "followers": 33, + "pfpUrl": "https://i.seadn.io/gcs/files/b66f6626cd3c243f09c333237c75fe41.jpg?w=500&auto=format", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0c336147c15eb2beb196416c4aac50bba8bf00d", + "etherscanUrl": "https://etherscan.io/address/0xc0c336147c15eb2beb196416c4aac50bba8bf00d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x982ff67bbb6bea229b0ffd3037f11ba8d7090b53", + "balanceRaw": "117514488325378377750", + "balanceFormatted": "117.51448832537837775", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x982ff67bbb6bea229b0ffd3037f11ba8d7090b53", + "etherscanUrl": "https://etherscan.io/address/0x982ff67bbb6bea229b0ffd3037f11ba8d7090b53", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x02a7a68de9f3977c860d4b4b25c5040497e87f50", + "balanceRaw": "117473368697642311689", + "balanceFormatted": "117.473368697642311689", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02a7a68de9f3977c860d4b4b25c5040497e87f50", + "etherscanUrl": "https://etherscan.io/address/0x02a7a68de9f3977c860d4b4b25c5040497e87f50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe6accd697958c089474a48fcf78eeff63a98b0a1", + "balanceRaw": "116721874414925119714", + "balanceFormatted": "116.721874414925119714", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6accd697958c089474a48fcf78eeff63a98b0a1", + "etherscanUrl": "https://etherscan.io/address/0xe6accd697958c089474a48fcf78eeff63a98b0a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4cfec81930d87c0ec2d38a4819d05a756756d85b", + "balanceRaw": "116082297903543271810", + "balanceFormatted": "116.08229790354327181", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4cfec81930d87c0ec2d38a4819d05a756756d85b", + "etherscanUrl": "https://etherscan.io/address/0x4cfec81930d87c0ec2d38a4819d05a756756d85b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2388a78bb6d3638ec2740bc0aed53489ffcd567f", + "balanceRaw": "115805537527426387082", + "balanceFormatted": "115.805537527426387082", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2388a78bb6d3638ec2740bc0aed53489ffcd567f", + "etherscanUrl": "https://etherscan.io/address/0x2388a78bb6d3638ec2740bc0aed53489ffcd567f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4415", + "balanceRaw": "115636788297124746725", + "balanceFormatted": "115.636788297124746725", + "lastTransferAt": null, + "username": "jakub", + "displayName": "Jakub", + "fid": 4415, + "followers": 4380, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ea8c2b7-62ff-4de7-e962-f538a53b4600/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7841bc36405092b7661f5c9b01864c622bc445e", + "etherscanUrl": "https://etherscan.io/address/0xf7841bc36405092b7661f5c9b01864c622bc445e", + "xHandle": "jakub_rusiecki", + "xUrl": "https://twitter.com/jakub_rusiecki", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe9a7b62ebf1779e09c3a193e2a77d4e7411a974b", + "balanceRaw": "115537019129308461869", + "balanceFormatted": "115.537019129308461869", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9a7b62ebf1779e09c3a193e2a77d4e7411a974b", + "etherscanUrl": "https://etherscan.io/address/0xe9a7b62ebf1779e09c3a193e2a77d4e7411a974b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1077510", + "balanceRaw": "115527719797952802137", + "balanceFormatted": "115.527719797952802137", + "lastTransferAt": null, + "username": "gon0x.eth", + "displayName": "Gon", + "fid": 1077510, + "followers": 385, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/379eb665-8c25-4c62-4d83-060429575200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc002ad4e9b1dab521216be7a8f5936f2f363cbcc", + "etherscanUrl": "https://etherscan.io/address/0xc002ad4e9b1dab521216be7a8f5936f2f363cbcc", + "xHandle": "gon0x_", + "xUrl": "https://twitter.com/gon0x_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x425240bba92d6d49012531b16e9cbc3266e011e1", + "balanceRaw": "115000000010000000000", + "balanceFormatted": "115.00000001", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x425240bba92d6d49012531b16e9cbc3266e011e1", + "etherscanUrl": "https://etherscan.io/address/0x425240bba92d6d49012531b16e9cbc3266e011e1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x279a75b40eda7acc5d38b80802b6a2f541fd142f", + "balanceRaw": "114921578376144432160", + "balanceFormatted": "114.92157837614443216", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x279a75b40eda7acc5d38b80802b6a2f541fd142f", + "etherscanUrl": "https://etherscan.io/address/0x279a75b40eda7acc5d38b80802b6a2f541fd142f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4d7295704db4ac8fe1bbe43c6ff2eeab665eaff6", + "balanceRaw": "114750492310661534266", + "balanceFormatted": "114.750492310661534266", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d7295704db4ac8fe1bbe43c6ff2eeab665eaff6", + "etherscanUrl": "https://etherscan.io/address/0x4d7295704db4ac8fe1bbe43c6ff2eeab665eaff6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8654e3e9dd4c136d31d022a79c8590a008a21ae8", + "balanceRaw": "114614552043819401216", + "balanceFormatted": "114.614552043819401216", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8654e3e9dd4c136d31d022a79c8590a008a21ae8", + "etherscanUrl": "https://etherscan.io/address/0x8654e3e9dd4c136d31d022a79c8590a008a21ae8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x02bc0a30878a7f3f5d74081f77a5ad34e651c6f0", + "balanceRaw": "114357176797156105700", + "balanceFormatted": "114.3571767971561057", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02bc0a30878a7f3f5d74081f77a5ad34e651c6f0", + "etherscanUrl": "https://etherscan.io/address/0x02bc0a30878a7f3f5d74081f77a5ad34e651c6f0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfe40c2cdf4e2bf2545b93f2f81011b048ae78599", + "balanceRaw": "114258382917920130981", + "balanceFormatted": "114.258382917920130981", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe40c2cdf4e2bf2545b93f2f81011b048ae78599", + "etherscanUrl": "https://etherscan.io/address/0xfe40c2cdf4e2bf2545b93f2f81011b048ae78599", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0f1f7b965cb1fd03ea0f0af55811c0dec0844bef", + "balanceRaw": "114114755526992345572", + "balanceFormatted": "114.114755526992345572", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0f1f7b965cb1fd03ea0f0af55811c0dec0844bef", + "etherscanUrl": "https://etherscan.io/address/0x0f1f7b965cb1fd03ea0f0af55811c0dec0844bef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x877ec2d9718226ef47856e6a98370f65ffec3ecd", + "balanceRaw": "113962860200184337446", + "balanceFormatted": "113.962860200184337446", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x877ec2d9718226ef47856e6a98370f65ffec3ecd", + "etherscanUrl": "https://etherscan.io/address/0x877ec2d9718226ef47856e6a98370f65ffec3ecd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde64ddc0c056d00d05e8d3809924e01f8f92ade2", + "balanceRaw": "113625546179445455912", + "balanceFormatted": "113.625546179445455912", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde64ddc0c056d00d05e8d3809924e01f8f92ade2", + "etherscanUrl": "https://etherscan.io/address/0xde64ddc0c056d00d05e8d3809924e01f8f92ade2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd8f66e79beb1c64378f811c3e4fa7942e58ce3aa", + "balanceRaw": "113564892340938940664", + "balanceFormatted": "113.564892340938940664", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8f66e79beb1c64378f811c3e4fa7942e58ce3aa", + "etherscanUrl": "https://etherscan.io/address/0xd8f66e79beb1c64378f811c3e4fa7942e58ce3aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_342042", + "balanceRaw": "113362939647383652304", + "balanceFormatted": "113.362939647383652304", + "lastTransferAt": null, + "username": "onepercent", + "displayName": "JG.base.eth", + "fid": 342042, + "followers": 141, + "pfpUrl": "https://i.imgur.com/badBlv6.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73a1db5ec7567bff1b220f2acab9ca031cb0236a", + "etherscanUrl": "https://etherscan.io/address/0x73a1db5ec7567bff1b220f2acab9ca031cb0236a", + "xHandle": "onepercent_rich", + "xUrl": "https://twitter.com/onepercent_rich", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb83c0b720a019c4292f2d7ec8f2a1653fbfd142b", + "balanceRaw": "112883389878538042978", + "balanceFormatted": "112.883389878538042978", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb83c0b720a019c4292f2d7ec8f2a1653fbfd142b", + "etherscanUrl": "https://etherscan.io/address/0xb83c0b720a019c4292f2d7ec8f2a1653fbfd142b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7db02a48f67dd541b36555b1a24b170c06363d92", + "balanceRaw": "112303363834036170997", + "balanceFormatted": "112.303363834036170997", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7db02a48f67dd541b36555b1a24b170c06363d92", + "etherscanUrl": "https://etherscan.io/address/0x7db02a48f67dd541b36555b1a24b170c06363d92", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xadb12c4da80fe284f71510f59f2fce13a9ed3b5c", + "balanceRaw": "112232182166430613226", + "balanceFormatted": "112.232182166430613226", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xadb12c4da80fe284f71510f59f2fce13a9ed3b5c", + "etherscanUrl": "https://etherscan.io/address/0xadb12c4da80fe284f71510f59f2fce13a9ed3b5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5dde89ae15d6186cc8c65298e6975c28ddd7375e", + "balanceRaw": "111808745673001631100", + "balanceFormatted": "111.8087456730016311", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5dde89ae15d6186cc8c65298e6975c28ddd7375e", + "etherscanUrl": "https://etherscan.io/address/0x5dde89ae15d6186cc8c65298e6975c28ddd7375e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe6472133973da6b78d28e187f92273a3240f6182", + "balanceRaw": "111749185433564821504", + "balanceFormatted": "111.749185433564821504", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe6472133973da6b78d28e187f92273a3240f6182", + "etherscanUrl": "https://etherscan.io/address/0xe6472133973da6b78d28e187f92273a3240f6182", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9d10d6d4297a7dca03d123f417a9a4d6259c6144", + "balanceRaw": "111535428420192486148", + "balanceFormatted": "111.535428420192486148", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d10d6d4297a7dca03d123f417a9a4d6259c6144", + "etherscanUrl": "https://etherscan.io/address/0x9d10d6d4297a7dca03d123f417a9a4d6259c6144", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7867101442b8cc9f8551203f6bdb5d2ccc097255", + "balanceRaw": "111526413302406205358", + "balanceFormatted": "111.526413302406205358", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7867101442b8cc9f8551203f6bdb5d2ccc097255", + "etherscanUrl": "https://etherscan.io/address/0x7867101442b8cc9f8551203f6bdb5d2ccc097255", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x219867ed424e168335778bf56dcd7f047a436b16", + "balanceRaw": "111416079243586773668", + "balanceFormatted": "111.416079243586773668", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x219867ed424e168335778bf56dcd7f047a436b16", + "etherscanUrl": "https://etherscan.io/address/0x219867ed424e168335778bf56dcd7f047a436b16", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1428114", + "balanceRaw": "111411451419254732414", + "balanceFormatted": "111.411451419254732414", + "lastTransferAt": null, + "username": "kryptarion", + "displayName": "kryptarion", + "fid": 1428114, + "followers": 28, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0b745c-4d5d-4b3a-f029-ad8ff7d79700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x033f35a020fbdaa7108bd8e509fd50a88a9915de", + "etherscanUrl": "https://etherscan.io/address/0x033f35a020fbdaa7108bd8e509fd50a88a9915de", + "xHandle": "kryptar1on", + "xUrl": "https://twitter.com/kryptar1on", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdd8f672057e2d56382ac547d48efc3df8cd8b486", + "balanceRaw": "111257189621656686831", + "balanceFormatted": "111.257189621656686831", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd8f672057e2d56382ac547d48efc3df8cd8b486", + "etherscanUrl": "https://etherscan.io/address/0xdd8f672057e2d56382ac547d48efc3df8cd8b486", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1436", + "balanceRaw": "111000000000000000000", + "balanceFormatted": "111", + "lastTransferAt": null, + "username": "karmawav", + "displayName": "karma.wav ↑ 🌊", + "fid": 1436, + "followers": 1123, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad10868b-4c7f-4c8a-7d73-aa056f243700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xefac5804c8d699503c5a6409ebde96336a48f683", + "etherscanUrl": "https://etherscan.io/address/0xefac5804c8d699503c5a6409ebde96336a48f683", + "xHandle": "karmawav", + "xUrl": "https://twitter.com/karmawav", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_432186", + "balanceRaw": "110019320876544467362", + "balanceFormatted": "110.019320876544467362", + "lastTransferAt": null, + "username": "air-iick", + "displayName": "Air-iick", + "fid": 432186, + "followers": 114, + "pfpUrl": "https://i.imgur.com/4VZPIt1.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc193f33d2fedf22e7292a1bc3bd50aebad99ad45", + "etherscanUrl": "https://etherscan.io/address/0xc193f33d2fedf22e7292a1bc3bd50aebad99ad45", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xab2223d5c9bf563f8c571ca88444156dce45effb", + "balanceRaw": "110000000000000000000", + "balanceFormatted": "110", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab2223d5c9bf563f8c571ca88444156dce45effb", + "etherscanUrl": "https://etherscan.io/address/0xab2223d5c9bf563f8c571ca88444156dce45effb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_348393", + "balanceRaw": "109915364426296395111", + "balanceFormatted": "109.915364426296395111", + "lastTransferAt": null, + "username": "jaejae", + "displayName": "JaeJae🎩", + "fid": 348393, + "followers": 557, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/268cfef8-0f05-4c61-a132-5f29106c2e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x969504f16c3766eaddbe454e94ff2847c90873c0", + "etherscanUrl": "https://etherscan.io/address/0x969504f16c3766eaddbe454e94ff2847c90873c0", + "xHandle": "dign2209", + "xUrl": "https://twitter.com/dign2209", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3db1729be4e9453e888e21c838740258c77217a8", + "balanceRaw": "109482678343694762897", + "balanceFormatted": "109.482678343694762897", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3db1729be4e9453e888e21c838740258c77217a8", + "etherscanUrl": "https://etherscan.io/address/0x3db1729be4e9453e888e21c838740258c77217a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1e6864addbe433553d0edaf70d041201aa3f2da4", + "balanceRaw": "108364012207319287098", + "balanceFormatted": "108.364012207319287098", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e6864addbe433553d0edaf70d041201aa3f2da4", + "etherscanUrl": "https://etherscan.io/address/0x1e6864addbe433553d0edaf70d041201aa3f2da4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbba16c4685e6822de099541ef64e533b0ed5bad0", + "balanceRaw": "108010882582039913350", + "balanceFormatted": "108.01088258203991335", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbba16c4685e6822de099541ef64e533b0ed5bad0", + "etherscanUrl": "https://etherscan.io/address/0xbba16c4685e6822de099541ef64e533b0ed5bad0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa72cb04e07b19fe5bc0b6192f4f60a355661ae3d", + "balanceRaw": "107977695422101631942", + "balanceFormatted": "107.977695422101631942", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa72cb04e07b19fe5bc0b6192f4f60a355661ae3d", + "etherscanUrl": "https://etherscan.io/address/0xa72cb04e07b19fe5bc0b6192f4f60a355661ae3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7451d7dc1570f2be4aa3eca8d482dff117570ab7", + "balanceRaw": "107572777886393611111", + "balanceFormatted": "107.572777886393611111", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7451d7dc1570f2be4aa3eca8d482dff117570ab7", + "etherscanUrl": "https://etherscan.io/address/0x7451d7dc1570f2be4aa3eca8d482dff117570ab7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_252090", + "balanceRaw": "107531934410000000000", + "balanceFormatted": "107.53193441", + "lastTransferAt": null, + "username": "dolan", + "displayName": "Dolan", + "fid": 252090, + "followers": 246, + "pfpUrl": "https://i.imgur.com/IXPp3S3.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb98e6b716a6b1aa0d55a6e64481a93828712616f", + "etherscanUrl": "https://etherscan.io/address/0xb98e6b716a6b1aa0d55a6e64481a93828712616f", + "xHandle": "dolan_62", + "xUrl": "https://twitter.com/dolan_62", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x36847bd027558556a1092ed91cfd865cf4a8eef2", + "balanceRaw": "106729739813717044983", + "balanceFormatted": "106.729739813717044983", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36847bd027558556a1092ed91cfd865cf4a8eef2", + "etherscanUrl": "https://etherscan.io/address/0x36847bd027558556a1092ed91cfd865cf4a8eef2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac1565a7fd8923652c2b8b49b6b2b66b3be4fccc", + "balanceRaw": "106576306265424866708", + "balanceFormatted": "106.576306265424866708", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac1565a7fd8923652c2b8b49b6b2b66b3be4fccc", + "etherscanUrl": "https://etherscan.io/address/0xac1565a7fd8923652c2b8b49b6b2b66b3be4fccc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17635", + "balanceRaw": "106249852205213290763", + "balanceFormatted": "106.249852205213290763", + "lastTransferAt": null, + "username": "hamdi", + "displayName": "hamdi", + "fid": 17635, + "followers": 2524, + "pfpUrl": "https://i.imgur.com/ZF0nco8.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9efbbfe1dd1f27432b9eee8777af0844c27744a8", + "etherscanUrl": "https://etherscan.io/address/0x9efbbfe1dd1f27432b9eee8777af0844c27744a8", + "xHandle": "allam_hamdi", + "xUrl": "https://twitter.com/allam_hamdi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc62505f5138edb515b09389d4dbfa36a16f9cb2c", + "balanceRaw": "106105113861211769937", + "balanceFormatted": "106.105113861211769937", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc62505f5138edb515b09389d4dbfa36a16f9cb2c", + "etherscanUrl": "https://etherscan.io/address/0xc62505f5138edb515b09389d4dbfa36a16f9cb2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x62bb9b2c4b7d7a27d168b413fc0e56a5e751dd8a", + "balanceRaw": "105704317210363990918", + "balanceFormatted": "105.704317210363990918", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62bb9b2c4b7d7a27d168b413fc0e56a5e751dd8a", + "etherscanUrl": "https://etherscan.io/address/0x62bb9b2c4b7d7a27d168b413fc0e56a5e751dd8a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c07ae3103327589adada281a803852788af7fb4", + "balanceRaw": "105631147940824412175", + "balanceFormatted": "105.631147940824412175", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c07ae3103327589adada281a803852788af7fb4", + "etherscanUrl": "https://etherscan.io/address/0x0c07ae3103327589adada281a803852788af7fb4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12", + "balanceRaw": "105544650997176228019", + "balanceFormatted": "105.544650997176228019", + "lastTransferAt": null, + "username": "linda", + "displayName": "Linda Xie", + "fid": 12, + "followers": 451973, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6aa18817-6238-4b25-086f-1edd0c438f00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54d06a08ffdf44258a9f9bd2f4b4cdd6692a900f", + "etherscanUrl": "https://etherscan.io/address/0x54d06a08ffdf44258a9f9bd2f4b4cdd6692a900f", + "xHandle": "ljxie", + "xUrl": "https://twitter.com/ljxie", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf45e5fab3911a53d14f110367a12b4dea375b2a9", + "balanceRaw": "105091602976022923578", + "balanceFormatted": "105.091602976022923578", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf45e5fab3911a53d14f110367a12b4dea375b2a9", + "etherscanUrl": "https://etherscan.io/address/0xf45e5fab3911a53d14f110367a12b4dea375b2a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2802", + "balanceRaw": "104761235261297134545", + "balanceFormatted": "104.761235261297134545", + "lastTransferAt": null, + "username": "garrett", + "displayName": "Garrett", + "fid": 2802, + "followers": 59339, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c131c034-0090-4610-45a4-acda4b805000/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xceab0087c5fbc22fb19293bd0be5fa9b23789da9", + "etherscanUrl": "https://etherscan.io/address/0xceab0087c5fbc22fb19293bd0be5fa9b23789da9", + "xHandle": "gskrovina", + "xUrl": "https://twitter.com/gskrovina", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_532272", + "balanceRaw": "104312867377384831470", + "balanceFormatted": "104.31286737738483147", + "lastTransferAt": null, + "username": "umacherry", + "displayName": "umacherry", + "fid": 532272, + "followers": 8, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/72868476-2326-40a9-0b3e-dcc290700000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x710a1b3f0882222654321ed0eb581bd57c60c91d", + "etherscanUrl": "https://etherscan.io/address/0x710a1b3f0882222654321ed0eb581bd57c60c91d", + "xHandle": "mzwang8", + "xUrl": "https://twitter.com/mzwang8", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd8136b670844cc527b2ce138875f6e5e3313a677", + "balanceRaw": "104062489596966901068", + "balanceFormatted": "104.062489596966901068", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8136b670844cc527b2ce138875f6e5e3313a677", + "etherscanUrl": "https://etherscan.io/address/0xd8136b670844cc527b2ce138875f6e5e3313a677", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x04daf66e45a254ed7dc3e86b8ba2030cc33d349e", + "balanceRaw": "103729445221519254406", + "balanceFormatted": "103.729445221519254406", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04daf66e45a254ed7dc3e86b8ba2030cc33d349e", + "etherscanUrl": "https://etherscan.io/address/0x04daf66e45a254ed7dc3e86b8ba2030cc33d349e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfbc3692deeb263f39c3a30d6d0c0496d97686011", + "balanceRaw": "102983278198101737260", + "balanceFormatted": "102.98327819810173726", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbc3692deeb263f39c3a30d6d0c0496d97686011", + "etherscanUrl": "https://etherscan.io/address/0xfbc3692deeb263f39c3a30d6d0c0496d97686011", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3daeebc0e636205bb9ffd23a23871d6d067f3b6b", + "balanceRaw": "102762019457667213822", + "balanceFormatted": "102.762019457667213822", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3daeebc0e636205bb9ffd23a23871d6d067f3b6b", + "etherscanUrl": "https://etherscan.io/address/0x3daeebc0e636205bb9ffd23a23871d6d067f3b6b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0173f0dcdbd82fc3a55b5c822dfee2653d245181", + "balanceRaw": "102679988677695865940", + "balanceFormatted": "102.67998867769586594", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0173f0dcdbd82fc3a55b5c822dfee2653d245181", + "etherscanUrl": "https://etherscan.io/address/0x0173f0dcdbd82fc3a55b5c822dfee2653d245181", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc4e868a1af4ac4efbf42054f324754ed90837d9c", + "balanceRaw": "102663255303400981465", + "balanceFormatted": "102.663255303400981465", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4e868a1af4ac4efbf42054f324754ed90837d9c", + "etherscanUrl": "https://etherscan.io/address/0xc4e868a1af4ac4efbf42054f324754ed90837d9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd4f5fccdab360d4e156d87f45290a6f806ab66e", + "balanceRaw": "102534496423737440167", + "balanceFormatted": "102.534496423737440167", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd4f5fccdab360d4e156d87f45290a6f806ab66e", + "etherscanUrl": "https://etherscan.io/address/0xcd4f5fccdab360d4e156d87f45290a6f806ab66e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e04765a05d08d45006d0db9aea670dfc2db4500", + "balanceRaw": "102484423636427945821", + "balanceFormatted": "102.484423636427945821", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e04765a05d08d45006d0db9aea670dfc2db4500", + "etherscanUrl": "https://etherscan.io/address/0x7e04765a05d08d45006d0db9aea670dfc2db4500", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x32de6b4f63fdff34673245efb5e03495a8fa80b7", + "balanceRaw": "102325402274852304675", + "balanceFormatted": "102.325402274852304675", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32de6b4f63fdff34673245efb5e03495a8fa80b7", + "etherscanUrl": "https://etherscan.io/address/0x32de6b4f63fdff34673245efb5e03495a8fa80b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f24eb89b046145b68ff55ca51342609ea436341", + "balanceRaw": "102233240451483189248", + "balanceFormatted": "102.233240451483189248", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f24eb89b046145b68ff55ca51342609ea436341", + "etherscanUrl": "https://etherscan.io/address/0x6f24eb89b046145b68ff55ca51342609ea436341", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x12ed741096c2fac04ca10df54ea04f281def6b01", + "balanceRaw": "102062415473727171272", + "balanceFormatted": "102.062415473727171272", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12ed741096c2fac04ca10df54ea04f281def6b01", + "etherscanUrl": "https://etherscan.io/address/0x12ed741096c2fac04ca10df54ea04f281def6b01", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x70ff9e06a4d9682d28c12614a5bb2d79ef1c330b", + "balanceRaw": "101983392981294304519", + "balanceFormatted": "101.983392981294304519", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70ff9e06a4d9682d28c12614a5bb2d79ef1c330b", + "etherscanUrl": "https://etherscan.io/address/0x70ff9e06a4d9682d28c12614a5bb2d79ef1c330b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c6defed38ca5cb6b4737c6df1b6906885ee3460", + "balanceRaw": "101892709895852441587", + "balanceFormatted": "101.892709895852441587", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c6defed38ca5cb6b4737c6df1b6906885ee3460", + "etherscanUrl": "https://etherscan.io/address/0x0c6defed38ca5cb6b4737c6df1b6906885ee3460", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267", + "balanceRaw": "101843380436700273689", + "balanceFormatted": "101.843380436700273689", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebcda5b80f62dd4dd2a96357b42bb6facbf30267", + "etherscanUrl": "https://etherscan.io/address/0xebcda5b80f62dd4dd2a96357b42bb6facbf30267", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05f640935f9d55a5a768580c972811b4021e9ca8", + "balanceRaw": "101632882923636749520", + "balanceFormatted": "101.63288292363674952", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05f640935f9d55a5a768580c972811b4021e9ca8", + "etherscanUrl": "https://etherscan.io/address/0x05f640935f9d55a5a768580c972811b4021e9ca8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9fd197f67538f6f23a5cb4d114cbf07db0aa76e0", + "balanceRaw": "101338741383964354618", + "balanceFormatted": "101.338741383964354618", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fd197f67538f6f23a5cb4d114cbf07db0aa76e0", + "etherscanUrl": "https://etherscan.io/address/0x9fd197f67538f6f23a5cb4d114cbf07db0aa76e0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ad573d7630dcb93b1fe872f83929c4b86767570", + "balanceRaw": "101325670667429300189", + "balanceFormatted": "101.325670667429300189", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ad573d7630dcb93b1fe872f83929c4b86767570", + "etherscanUrl": "https://etherscan.io/address/0x0ad573d7630dcb93b1fe872f83929c4b86767570", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb20d7bc56cd3dea3eed4eb2f329a38bcfea789db", + "balanceRaw": "101090868318587835807", + "balanceFormatted": "101.090868318587835807", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb20d7bc56cd3dea3eed4eb2f329a38bcfea789db", + "etherscanUrl": "https://etherscan.io/address/0xb20d7bc56cd3dea3eed4eb2f329a38bcfea789db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1450a71f667e4a1a85870c7338366c88acac5e68", + "balanceRaw": "100847419977362701422", + "balanceFormatted": "100.847419977362701422", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1450a71f667e4a1a85870c7338366c88acac5e68", + "etherscanUrl": "https://etherscan.io/address/0x1450a71f667e4a1a85870c7338366c88acac5e68", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9da51024376a60ee499a1ceb9f47b0a29c7f3c77", + "balanceRaw": "100832337336253382800", + "balanceFormatted": "100.8323373362533828", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9da51024376a60ee499a1ceb9f47b0a29c7f3c77", + "etherscanUrl": "https://etherscan.io/address/0x9da51024376a60ee499a1ceb9f47b0a29c7f3c77", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_194896", + "balanceRaw": "100658602828806738856", + "balanceFormatted": "100.658602828806738856", + "lastTransferAt": null, + "username": "berkeleyverse.eth", + "displayName": "Greggs", + "fid": 194896, + "followers": 14, + "pfpUrl": "https://i.imgur.com/BduZYfl.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc05ebcd099739a6dcd0b0a9f7d7f4f9d34c9122f", + "etherscanUrl": "https://etherscan.io/address/0xc05ebcd099739a6dcd0b0a9f7d7f4f9d34c9122f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_889982", + "balanceRaw": "100518086292774697955", + "balanceFormatted": "100.518086292774697955", + "lastTransferAt": null, + "username": "virility", + "displayName": "Shillian Wakespeare", + "fid": 889982, + "followers": 473, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f759ca13-34a8-4595-afd4-53706736a300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x567d1518fb0c812905d967da7071aa649904a877", + "etherscanUrl": "https://etherscan.io/address/0x567d1518fb0c812905d967da7071aa649904a877", + "xHandle": "noomnole", + "xUrl": "https://twitter.com/noomnole", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2040e8eef43ca5e2e56e1926eff049dfd49f5daf", + "balanceRaw": "100513698891953225589", + "balanceFormatted": "100.513698891953225589", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2040e8eef43ca5e2e56e1926eff049dfd49f5daf", + "etherscanUrl": "https://etherscan.io/address/0x2040e8eef43ca5e2e56e1926eff049dfd49f5daf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246594", + "balanceRaw": "100510602926927441742", + "balanceFormatted": "100.510602926927441742", + "lastTransferAt": null, + "username": "birell.eth", + "displayName": "Birell.eth", + "fid": 246594, + "followers": 328, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aacee75e-54aa-4d95-a41b-02ec31559a00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x127418d15dc59f772c5f5a29786b737f22d00de7", + "etherscanUrl": "https://etherscan.io/address/0x127418d15dc59f772c5f5a29786b737f22d00de7", + "xHandle": "jasonkim8091", + "xUrl": "https://twitter.com/jasonkim8091", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf0e08065f6a6e37ab420c791408c03fb632ad86e", + "balanceRaw": "100508536807943591538", + "balanceFormatted": "100.508536807943591538", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0e08065f6a6e37ab420c791408c03fb632ad86e", + "etherscanUrl": "https://etherscan.io/address/0xf0e08065f6a6e37ab420c791408c03fb632ad86e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_307720", + "balanceRaw": "100388239975125800656", + "balanceFormatted": "100.388239975125800656", + "lastTransferAt": null, + "username": "hbj", + "displayName": "hbj🌎☮️", + "fid": 307720, + "followers": 567, + "pfpUrl": "https://i.imgur.com/Fucrq1p.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5cc7a44b7d632aac61dde0d65265a46f5b0cc31e", + "etherscanUrl": "https://etherscan.io/address/0x5cc7a44b7d632aac61dde0d65265a46f5b0cc31e", + "xHandle": "hanbonjovi", + "xUrl": "https://twitter.com/hanbonjovi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa3b0b241fcad58ee8ccfddcb850bbf47ef697aac", + "balanceRaw": "100323299503982149503", + "balanceFormatted": "100.323299503982149503", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa3b0b241fcad58ee8ccfddcb850bbf47ef697aac", + "etherscanUrl": "https://etherscan.io/address/0xa3b0b241fcad58ee8ccfddcb850bbf47ef697aac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x54e3aaee75c0d023171b22d18ea231c06aa86ec6", + "balanceRaw": "100212730198523925280", + "balanceFormatted": "100.21273019852392528", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54e3aaee75c0d023171b22d18ea231c06aa86ec6", + "etherscanUrl": "https://etherscan.io/address/0x54e3aaee75c0d023171b22d18ea231c06aa86ec6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbc4b5e67677cb6413ec6215540e0bc26ca9c9ac9", + "balanceRaw": "100158468829904724561", + "balanceFormatted": "100.158468829904724561", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc4b5e67677cb6413ec6215540e0bc26ca9c9ac9", + "etherscanUrl": "https://etherscan.io/address/0xbc4b5e67677cb6413ec6215540e0bc26ca9c9ac9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1f8c95f696881e8fc5fab47111e0a403f95dd2c9", + "balanceRaw": "100072403505387468510", + "balanceFormatted": "100.07240350538746851", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f8c95f696881e8fc5fab47111e0a403f95dd2c9", + "etherscanUrl": "https://etherscan.io/address/0x1f8c95f696881e8fc5fab47111e0a403f95dd2c9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4b410ae7661774a9db543e2af24c712c12ea267b", + "balanceRaw": "100066460237068531322", + "balanceFormatted": "100.066460237068531322", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b410ae7661774a9db543e2af24c712c12ea267b", + "etherscanUrl": "https://etherscan.io/address/0x4b410ae7661774a9db543e2af24c712c12ea267b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5b586acacb1c60f9fcdb27f7bc89f12a3d6844fc", + "balanceRaw": "100055015751070422592", + "balanceFormatted": "100.055015751070422592", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b586acacb1c60f9fcdb27f7bc89f12a3d6844fc", + "etherscanUrl": "https://etherscan.io/address/0x5b586acacb1c60f9fcdb27f7bc89f12a3d6844fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1626", + "balanceRaw": "100014910031002328997", + "balanceFormatted": "100.014910031002328997", + "lastTransferAt": null, + "username": "mcbain", + "displayName": "McBain", + "fid": 1626, + "followers": 142663, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b5f14ba-508a-4090-abca-dae88b6e6d00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88a99ce848eed55f8ec3df4e8dfa9d1fcca6e2b0", + "etherscanUrl": "https://etherscan.io/address/0x88a99ce848eed55f8ec3df4e8dfa9d1fcca6e2b0", + "xHandle": "grahammcbain", + "xUrl": "https://twitter.com/grahammcbain", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf3366d72bc77817a61b28cdd7989530bcffe571", + "balanceRaw": "100006383455950873613", + "balanceFormatted": "100.006383455950873613", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf3366d72bc77817a61b28cdd7989530bcffe571", + "etherscanUrl": "https://etherscan.io/address/0xaf3366d72bc77817a61b28cdd7989530bcffe571", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9eaf1997c8687b2b1453c9989a1c6cde1915fef3", + "balanceRaw": "100000003901308388215", + "balanceFormatted": "100.000003901308388215", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9eaf1997c8687b2b1453c9989a1c6cde1915fef3", + "etherscanUrl": "https://etherscan.io/address/0x9eaf1997c8687b2b1453c9989a1c6cde1915fef3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x69239747a8329cfd117c673a7673152f32cfb834", + "balanceRaw": "100000000135684911753", + "balanceFormatted": "100.000000135684911753", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x69239747a8329cfd117c673a7673152f32cfb834", + "etherscanUrl": "https://etherscan.io/address/0x69239747a8329cfd117c673a7673152f32cfb834", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x611d656a52958fc4b2c8cc2bcbd54b1715aff7df", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x611d656a52958fc4b2c8cc2bcbd54b1715aff7df", + "etherscanUrl": "https://etherscan.io/address/0x611d656a52958fc4b2c8cc2bcbd54b1715aff7df", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xca3459c85009d657393717d7e0072a42f0c69733", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca3459c85009d657393717d7e0072a42f0c69733", + "etherscanUrl": "https://etherscan.io/address/0xca3459c85009d657393717d7e0072a42f0c69733", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x88e23b89411dcf30e318acd8d4c3971a7f316b51", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88e23b89411dcf30e318acd8d4c3971a7f316b51", + "etherscanUrl": "https://etherscan.io/address/0x88e23b89411dcf30e318acd8d4c3971a7f316b51", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba8c73b1d1a57bee10e3c246242881f7c23b546a", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba8c73b1d1a57bee10e3c246242881f7c23b546a", + "etherscanUrl": "https://etherscan.io/address/0xba8c73b1d1a57bee10e3c246242881f7c23b546a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xca7c76c8925b4425ddfdbb7396772544f4a4f3ea", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca7c76c8925b4425ddfdbb7396772544f4a4f3ea", + "etherscanUrl": "https://etherscan.io/address/0xca7c76c8925b4425ddfdbb7396772544f4a4f3ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa7eda27a9aa3f0d7dea6554c7cfe96778e980449", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa7eda27a9aa3f0d7dea6554c7cfe96778e980449", + "etherscanUrl": "https://etherscan.io/address/0xa7eda27a9aa3f0d7dea6554c7cfe96778e980449", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa024e6894aab8d604d49a389b444375587113978", + "balanceRaw": "100000000000000000000", + "balanceFormatted": "100", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa024e6894aab8d604d49a389b444375587113978", + "etherscanUrl": "https://etherscan.io/address/0xa024e6894aab8d604d49a389b444375587113978", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9856", + "balanceRaw": "99816030878095950450", + "balanceFormatted": "99.81603087809595045", + "lastTransferAt": null, + "username": "0xluo.eth", + "displayName": "0xLuo", + "fid": 9856, + "followers": 65223, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff52f093-1881-444b-64d6-edfd5804b800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x97e302e2638eb8ac6572598c559e56c7a9b39cdf", + "etherscanUrl": "https://etherscan.io/address/0x97e302e2638eb8ac6572598c559e56c7a9b39cdf", + "xHandle": "0xluo", + "xUrl": "https://twitter.com/0xluo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd1f60f14ff8564b4b0a9a1a8e63a23de44594b3", + "balanceRaw": "99689701553832542080", + "balanceFormatted": "99.68970155383254208", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd1f60f14ff8564b4b0a9a1a8e63a23de44594b3", + "etherscanUrl": "https://etherscan.io/address/0xcd1f60f14ff8564b4b0a9a1a8e63a23de44594b3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16405", + "balanceRaw": "99659846531543273021", + "balanceFormatted": "99.659846531543273021", + "lastTransferAt": null, + "username": "chuckstock", + "displayName": "chuckstock", + "fid": 16405, + "followers": 19121, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b25619df-aa17-456e-3847-528f45688d00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75d7b7686e110392ca33a6d67c253c3b76258160", + "etherscanUrl": "https://etherscan.io/address/0x75d7b7686e110392ca33a6d67c253c3b76258160", + "xHandle": "0xchuckstock", + "xUrl": "https://twitter.com/0xchuckstock", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa1fce7436e751555bc891b7025be591d5bde483d", + "balanceRaw": "99488542087873145284", + "balanceFormatted": "99.488542087873145284", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1fce7436e751555bc891b7025be591d5bde483d", + "etherscanUrl": "https://etherscan.io/address/0xa1fce7436e751555bc891b7025be591d5bde483d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38b26de05af6606c2273d8722f8fda8c067afe56", + "balanceRaw": "99474002904573768314", + "balanceFormatted": "99.474002904573768314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38b26de05af6606c2273d8722f8fda8c067afe56", + "etherscanUrl": "https://etherscan.io/address/0x38b26de05af6606c2273d8722f8fda8c067afe56", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7290ac43c0f50e18b7059f11dd1973028d9b67d6", + "balanceRaw": "99004842553938237461", + "balanceFormatted": "99.004842553938237461", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7290ac43c0f50e18b7059f11dd1973028d9b67d6", + "etherscanUrl": "https://etherscan.io/address/0x7290ac43c0f50e18b7059f11dd1973028d9b67d6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe47410edb39dde7e5ec96e0314a693008cc66658", + "balanceRaw": "98853155884266347475", + "balanceFormatted": "98.853155884266347475", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe47410edb39dde7e5ec96e0314a693008cc66658", + "etherscanUrl": "https://etherscan.io/address/0xe47410edb39dde7e5ec96e0314a693008cc66658", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8448592ca4bdd6a9ed1fdd98f61ef0de76bb5a07", + "balanceRaw": "98348472882561630232", + "balanceFormatted": "98.348472882561630232", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8448592ca4bdd6a9ed1fdd98f61ef0de76bb5a07", + "etherscanUrl": "https://etherscan.io/address/0x8448592ca4bdd6a9ed1fdd98f61ef0de76bb5a07", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x752611dabf305477990d8c060b72c293034ffd33", + "balanceRaw": "98332062243697999119", + "balanceFormatted": "98.332062243697999119", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x752611dabf305477990d8c060b72c293034ffd33", + "etherscanUrl": "https://etherscan.io/address/0x752611dabf305477990d8c060b72c293034ffd33", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb0340088c4d8484e5b206ab5cc042d9fa9ba7b7e", + "balanceRaw": "98229155716939939653", + "balanceFormatted": "98.229155716939939653", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0340088c4d8484e5b206ab5cc042d9fa9ba7b7e", + "etherscanUrl": "https://etherscan.io/address/0xb0340088c4d8484e5b206ab5cc042d9fa9ba7b7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x468bc6e0f2745e1f0137d107093d9071c762b76d", + "balanceRaw": "98176409385288861133", + "balanceFormatted": "98.176409385288861133", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x468bc6e0f2745e1f0137d107093d9071c762b76d", + "etherscanUrl": "https://etherscan.io/address/0x468bc6e0f2745e1f0137d107093d9071c762b76d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_380256", + "balanceRaw": "97538499136103787544", + "balanceFormatted": "97.538499136103787544", + "lastTransferAt": null, + "username": "rohito", + "displayName": "rosu.base.eth", + "fid": 380256, + "followers": 494, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59be92a8-9e9d-4a8d-63b7-f71c0b80f600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54c0d25047d0f71e408cec9afbfc34d642173484", + "etherscanUrl": "https://etherscan.io/address/0x54c0d25047d0f71e408cec9afbfc34d642173484", + "xHandle": "rosugm", + "xUrl": "https://twitter.com/rosugm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12048", + "balanceRaw": "97318243287819875866", + "balanceFormatted": "97.318243287819875866", + "lastTransferAt": null, + "username": "mathew.eth", + "displayName": "MattwithouttheT 🎩", + "fid": 12048, + "followers": 8791, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/QmPzEHt4mfTGHAoGz5TbaVwD4FTqMPV2qiZ6414s5HmqMi", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa26cac6a82d76936f7bff0b53d25fa26ff893706", + "etherscanUrl": "https://etherscan.io/address/0xa26cac6a82d76936f7bff0b53d25fa26ff893706", + "xHandle": "aubergineemoji", + "xUrl": "https://twitter.com/aubergineemoji", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8160506265592a20eb84852de94c92cab0568625", + "balanceRaw": "96824166733626637172", + "balanceFormatted": "96.824166733626637172", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8160506265592a20eb84852de94c92cab0568625", + "etherscanUrl": "https://etherscan.io/address/0x8160506265592a20eb84852de94c92cab0568625", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb49bf45d93450c4c2db93dcdab95b1ea3611872c", + "balanceRaw": "96682728031692778496", + "balanceFormatted": "96.682728031692778496", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb49bf45d93450c4c2db93dcdab95b1ea3611872c", + "etherscanUrl": "https://etherscan.io/address/0xb49bf45d93450c4c2db93dcdab95b1ea3611872c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb44406147e7b39cbc6f697c6002331c33d334f85", + "balanceRaw": "96583594025695830815", + "balanceFormatted": "96.583594025695830815", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb44406147e7b39cbc6f697c6002331c33d334f85", + "etherscanUrl": "https://etherscan.io/address/0xb44406147e7b39cbc6f697c6002331c33d334f85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3291a4913458be74228cabce82944abf390cb16f", + "balanceRaw": "96528000000000000000", + "balanceFormatted": "96.528", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3291a4913458be74228cabce82944abf390cb16f", + "etherscanUrl": "https://etherscan.io/address/0x3291a4913458be74228cabce82944abf390cb16f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2095", + "balanceRaw": "96086452506802835540", + "balanceFormatted": "96.08645250680283554", + "lastTransferAt": null, + "username": "ting", + "displayName": "ting.⌐◨-◨", + "fid": 2095, + "followers": 1686, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/161ff709-f2f4-4ed3-8bae-fb899c69d300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0a0a0c0d8c22567ec5b24b17db4af8c12db2bcf", + "etherscanUrl": "https://etherscan.io/address/0xf0a0a0c0d8c22567ec5b24b17db4af8c12db2bcf", + "xHandle": "ting", + "xUrl": "https://twitter.com/ting", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12785", + "balanceRaw": "95821939285757858860", + "balanceFormatted": "95.82193928575785886", + "lastTransferAt": null, + "username": "bvdaniel", + "displayName": "bvdaniel.base.eth", + "fid": 12785, + "followers": 2671, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed191ed8-dc7b-45a3-993f-346e75ead200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2b0405506b13f180e83a66a9903a839b6cbcecd", + "etherscanUrl": "https://etherscan.io/address/0xa2b0405506b13f180e83a66a9903a839b6cbcecd", + "xHandle": "bvdani_el", + "xUrl": "https://twitter.com/bvdani_el", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x261ea25c628db22245eea559afdde44b6d289493", + "balanceRaw": "95293392775153983709", + "balanceFormatted": "95.293392775153983709", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x261ea25c628db22245eea559afdde44b6d289493", + "etherscanUrl": "https://etherscan.io/address/0x261ea25c628db22245eea559afdde44b6d289493", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12342", + "balanceRaw": "95218748974743696928", + "balanceFormatted": "95.218748974743696928", + "lastTransferAt": null, + "username": "bigshotklim", + "displayName": "⌐◨-◨ BiGSHOT ⌐◨-◨", + "fid": 12342, + "followers": 3882, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7eaaea43-5f63-4e8a-5ae6-78b47230bd00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa406ff89d9542464ab21cb0cba1d85ebd4f3dfa4", + "etherscanUrl": "https://etherscan.io/address/0xa406ff89d9542464ab21cb0cba1d85ebd4f3dfa4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf94bc972cc66bf349d6d4eb473c352de80df75d6", + "balanceRaw": "95145238045776118573", + "balanceFormatted": "95.145238045776118573", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf94bc972cc66bf349d6d4eb473c352de80df75d6", + "etherscanUrl": "https://etherscan.io/address/0xf94bc972cc66bf349d6d4eb473c352de80df75d6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135756", + "balanceRaw": "94272206230736401936", + "balanceFormatted": "94.272206230736401936", + "lastTransferAt": null, + "username": "lunacycap", + "displayName": "lunacy", + "fid": 1135756, + "followers": 574, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/069284c2-4a6a-4011-388b-a2cff4770200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3705e88a72d2e486bb7ed832bff54763637efed0", + "etherscanUrl": "https://etherscan.io/address/0x3705e88a72d2e486bb7ed832bff54763637efed0", + "xHandle": "lunacycap", + "xUrl": "https://twitter.com/lunacycap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10218", + "balanceRaw": "94215382753377596985", + "balanceFormatted": "94.215382753377596985", + "lastTransferAt": null, + "username": "scorz.eth", + "displayName": "scorz", + "fid": 10218, + "followers": 1215, + "pfpUrl": "https://i.imgur.com/HkY4bS8.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1e16c39671937ee49b759805b565f1f15a56839", + "etherscanUrl": "https://etherscan.io/address/0xa1e16c39671937ee49b759805b565f1f15a56839", + "xHandle": "scorzeth", + "xUrl": "https://twitter.com/scorzeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x865f368e735f5afbfb6d31585b8a79bfa97ca5f6", + "balanceRaw": "93941671625941375295", + "balanceFormatted": "93.941671625941375295", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x865f368e735f5afbfb6d31585b8a79bfa97ca5f6", + "etherscanUrl": "https://etherscan.io/address/0x865f368e735f5afbfb6d31585b8a79bfa97ca5f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2f23d5595bce7264fab148b8e3c9456d5f65e7e", + "balanceRaw": "93838893302057355875", + "balanceFormatted": "93.838893302057355875", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2f23d5595bce7264fab148b8e3c9456d5f65e7e", + "etherscanUrl": "https://etherscan.io/address/0xa2f23d5595bce7264fab148b8e3c9456d5f65e7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6abeb41f64d66b60eafea043f9a2de2baa2bcfe4", + "balanceRaw": "93653347685786298710", + "balanceFormatted": "93.65334768578629871", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6abeb41f64d66b60eafea043f9a2de2baa2bcfe4", + "etherscanUrl": "https://etherscan.io/address/0x6abeb41f64d66b60eafea043f9a2de2baa2bcfe4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbd2895dc008c31ba7b2e9177ebec4e7b048acb86", + "balanceRaw": "93002130894813803148", + "balanceFormatted": "93.002130894813803148", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd2895dc008c31ba7b2e9177ebec4e7b048acb86", + "etherscanUrl": "https://etherscan.io/address/0xbd2895dc008c31ba7b2e9177ebec4e7b048acb86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x12d2b8ac38c59758a062a9f757f2740461779439", + "balanceRaw": "92912375519837300513", + "balanceFormatted": "92.912375519837300513", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12d2b8ac38c59758a062a9f757f2740461779439", + "etherscanUrl": "https://etherscan.io/address/0x12d2b8ac38c59758a062a9f757f2740461779439", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd6d2506909814177a57cd5ee369c193c63ee3629", + "balanceRaw": "92242985780841818793", + "balanceFormatted": "92.242985780841818793", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6d2506909814177a57cd5ee369c193c63ee3629", + "etherscanUrl": "https://etherscan.io/address/0xd6d2506909814177a57cd5ee369c193c63ee3629", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5494", + "balanceRaw": "92116371645155457088", + "balanceFormatted": "92.116371645155457088", + "lastTransferAt": null, + "username": "jachian", + "displayName": "Jason", + "fid": 5494, + "followers": 18659, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/83de6628-ebdc-4625-318e-40231eb37900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a5827705d3c7a27864086e2d10f7e0f233e6b7a", + "etherscanUrl": "https://etherscan.io/address/0x8a5827705d3c7a27864086e2d10f7e0f233e6b7a", + "xHandle": "jachian22", + "xUrl": "https://twitter.com/jachian22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_434644", + "balanceRaw": "91911520240839546550", + "balanceFormatted": "91.91152024083954655", + "lastTransferAt": null, + "username": "malrangcow", + "displayName": "MalrangCow", + "fid": 434644, + "followers": 3071, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/68105e96-d2fd-47e7-3fad-b13db4dab800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe12a3ba747d1390b0ee23ca4d55cc704a1b54d11", + "etherscanUrl": "https://etherscan.io/address/0xe12a3ba747d1390b0ee23ca4d55cc704a1b54d11", + "xHandle": "kimssickssick", + "xUrl": "https://twitter.com/kimssickssick", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_99", + "balanceRaw": "91863788618997632512", + "balanceFormatted": "91.863788618997632512", + "lastTransferAt": null, + "username": "jesse.base.eth", + "displayName": "Jesse Pollak", + "fid": 99, + "followers": 574998, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmdD5hZrJz1CDVLs2Tg5JLnNR8hjWFVZmMqVWRAWoWYFJd?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2211d1d0020daea8039e46cf1367962070d77da9", + "etherscanUrl": "https://etherscan.io/address/0x2211d1d0020daea8039e46cf1367962070d77da9", + "xHandle": "jessepollak", + "xUrl": "https://twitter.com/jessepollak", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_344203", + "balanceRaw": "91615476702149811202", + "balanceFormatted": "91.615476702149811202", + "lastTransferAt": null, + "username": "dany69.eth", + "displayName": "Danny", + "fid": 344203, + "followers": 4472, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc20ca39-55f4-4f4e-b1f1-dcc019896d00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7fee69f604fd485c7ea21ba3180df282fdfe8c58", + "etherscanUrl": "https://etherscan.io/address/0x7fee69f604fd485c7ea21ba3180df282fdfe8c58", + "xHandle": "shad0wash", + "xUrl": "https://twitter.com/shad0wash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8d55510f872e1f574c64b74613295265abd63fbc", + "balanceRaw": "91178798536287608469", + "balanceFormatted": "91.178798536287608469", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d55510f872e1f574c64b74613295265abd63fbc", + "etherscanUrl": "https://etherscan.io/address/0x8d55510f872e1f574c64b74613295265abd63fbc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa251520154ca342f0b1d702bf5a56f78c982405b", + "balanceRaw": "91121475835034469893", + "balanceFormatted": "91.121475835034469893", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa251520154ca342f0b1d702bf5a56f78c982405b", + "etherscanUrl": "https://etherscan.io/address/0xa251520154ca342f0b1d702bf5a56f78c982405b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6729cf84cb2bba86aebf65bb08408ad776069548", + "balanceRaw": "90843826560255421661", + "balanceFormatted": "90.843826560255421661", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6729cf84cb2bba86aebf65bb08408ad776069548", + "etherscanUrl": "https://etherscan.io/address/0x6729cf84cb2bba86aebf65bb08408ad776069548", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x140c9fa014db55645a4be8d84e0e8ab432928106", + "balanceRaw": "90599755949413748327", + "balanceFormatted": "90.599755949413748327", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x140c9fa014db55645a4be8d84e0e8ab432928106", + "etherscanUrl": "https://etherscan.io/address/0x140c9fa014db55645a4be8d84e0e8ab432928106", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbea33ec0b1bbf093f3eb985e6970f121dda38a20", + "balanceRaw": "90451341108496050247", + "balanceFormatted": "90.451341108496050247", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbea33ec0b1bbf093f3eb985e6970f121dda38a20", + "etherscanUrl": "https://etherscan.io/address/0xbea33ec0b1bbf093f3eb985e6970f121dda38a20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6c7ac5594a1110008a157071edf07ff38a29af9e", + "balanceRaw": "90450764903504622485", + "balanceFormatted": "90.450764903504622485", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c7ac5594a1110008a157071edf07ff38a29af9e", + "etherscanUrl": "https://etherscan.io/address/0x6c7ac5594a1110008a157071edf07ff38a29af9e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x65c9874a0107c5553c92430a7aa3863a79d543fd", + "balanceRaw": "90345066948215331109", + "balanceFormatted": "90.345066948215331109", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65c9874a0107c5553c92430a7aa3863a79d543fd", + "etherscanUrl": "https://etherscan.io/address/0x65c9874a0107c5553c92430a7aa3863a79d543fd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x07b94700e51d1a750ea2b808427e1a3df8891770", + "balanceRaw": "90226350653358920875", + "balanceFormatted": "90.226350653358920875", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07b94700e51d1a750ea2b808427e1a3df8891770", + "etherscanUrl": "https://etherscan.io/address/0x07b94700e51d1a750ea2b808427e1a3df8891770", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486100", + "balanceRaw": "90064304754793456844", + "balanceFormatted": "90.064304754793456844", + "lastTransferAt": null, + "username": "clarkamoto", + "displayName": "Silver Surfer", + "fid": 486100, + "followers": 15, + "pfpUrl": "https://i.imgur.com/0IQR3qB.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30c742d33786cafd4287129868da988e33ecddd3", + "etherscanUrl": "https://etherscan.io/address/0x30c742d33786cafd4287129868da988e33ecddd3", + "xHandle": "clarkdavinpart", + "xUrl": "https://twitter.com/clarkdavinpart", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e088fd5312edd6a6a9203e743d09c134af1a29c", + "balanceRaw": "90000000000000000000", + "balanceFormatted": "90", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e088fd5312edd6a6a9203e743d09c134af1a29c", + "etherscanUrl": "https://etherscan.io/address/0x7e088fd5312edd6a6a9203e743d09c134af1a29c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x97abb2b50c67efabb1114266d6fb8a543fe23bbf", + "balanceRaw": "89992000000000000000", + "balanceFormatted": "89.992", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x97abb2b50c67efabb1114266d6fb8a543fe23bbf", + "etherscanUrl": "https://etherscan.io/address/0x97abb2b50c67efabb1114266d6fb8a543fe23bbf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x46808ab27e74044f99f253db6fb5e5d2e7dd967f", + "balanceRaw": "89633269843034281100", + "balanceFormatted": "89.6332698430342811", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46808ab27e74044f99f253db6fb5e5d2e7dd967f", + "etherscanUrl": "https://etherscan.io/address/0x46808ab27e74044f99f253db6fb5e5d2e7dd967f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188231", + "balanceRaw": "89107365878473201757", + "balanceFormatted": "89.107365878473201757", + "lastTransferAt": null, + "username": "!188231", + "displayName": null, + "fid": 188231, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bfd4132de6018f23d2fa2a09130c47d65c2a7df", + "etherscanUrl": "https://etherscan.io/address/0x9bfd4132de6018f23d2fa2a09130c47d65c2a7df", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4ac523187901c75879f25918aef09ba8a0adcdef", + "balanceRaw": "88838379365324099068", + "balanceFormatted": "88.838379365324099068", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ac523187901c75879f25918aef09ba8a0adcdef", + "etherscanUrl": "https://etherscan.io/address/0x4ac523187901c75879f25918aef09ba8a0adcdef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfc5ba0b61fa9a3bf14ec38c690e91f6f8eca73b2", + "balanceRaw": "88509151276005955716", + "balanceFormatted": "88.509151276005955716", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc5ba0b61fa9a3bf14ec38c690e91f6f8eca73b2", + "etherscanUrl": "https://etherscan.io/address/0xfc5ba0b61fa9a3bf14ec38c690e91f6f8eca73b2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x93544552e104b6ca5286b6829b5bd82fcd2393d2", + "balanceRaw": "88136352727472715774", + "balanceFormatted": "88.136352727472715774", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93544552e104b6ca5286b6829b5bd82fcd2393d2", + "etherscanUrl": "https://etherscan.io/address/0x93544552e104b6ca5286b6829b5bd82fcd2393d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa83ca1f025f99aa3642ccf613e79569c32645c01", + "balanceRaw": "88004619838244609712", + "balanceFormatted": "88.004619838244609712", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa83ca1f025f99aa3642ccf613e79569c32645c01", + "etherscanUrl": "https://etherscan.io/address/0xa83ca1f025f99aa3642ccf613e79569c32645c01", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcf9d00ad1706098683588dff19c1bc7d16ae2cb2", + "balanceRaw": "87667219066860322326", + "balanceFormatted": "87.667219066860322326", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf9d00ad1706098683588dff19c1bc7d16ae2cb2", + "etherscanUrl": "https://etherscan.io/address/0xcf9d00ad1706098683588dff19c1bc7d16ae2cb2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf09395a315c6721eccdb548444def3f1b0622f32", + "balanceRaw": "87515469431441580487", + "balanceFormatted": "87.515469431441580487", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf09395a315c6721eccdb548444def3f1b0622f32", + "etherscanUrl": "https://etherscan.io/address/0xf09395a315c6721eccdb548444def3f1b0622f32", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11124", + "balanceRaw": "87221043248234903623", + "balanceFormatted": "87.221043248234903623", + "lastTransferAt": null, + "username": "ds8", + "displayName": "dusan", + "fid": 11124, + "followers": 19284, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cfc6af7-1eb5-4287-5818-afd214f45b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2926a39d0d88d4c1b227deb933022f1492e818c", + "etherscanUrl": "https://etherscan.io/address/0xc2926a39d0d88d4c1b227deb933022f1492e818c", + "xHandle": "great_imposter", + "xUrl": "https://twitter.com/great_imposter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9bd967bd4682d6e90d73bb0efe2d8eb5475e234b", + "balanceRaw": "87058921431869444076", + "balanceFormatted": "87.058921431869444076", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bd967bd4682d6e90d73bb0efe2d8eb5475e234b", + "etherscanUrl": "https://etherscan.io/address/0x9bd967bd4682d6e90d73bb0efe2d8eb5475e234b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x049c48d6e1619cc9aad5005aa3508a33b4f4a114", + "balanceRaw": "86955751062608540913", + "balanceFormatted": "86.955751062608540913", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x049c48d6e1619cc9aad5005aa3508a33b4f4a114", + "etherscanUrl": "https://etherscan.io/address/0x049c48d6e1619cc9aad5005aa3508a33b4f4a114", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_534632", + "balanceRaw": "86737107929077859975", + "balanceFormatted": "86.737107929077859975", + "lastTransferAt": null, + "username": "vipprime", + "displayName": "vipprime", + "fid": 534632, + "followers": 12, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86c6cf62-92c6-4eba-31ce-60185f8eb100/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba046be9fbf97aab4846a738744f36f2f2cbeaff", + "etherscanUrl": "https://etherscan.io/address/0xba046be9fbf97aab4846a738744f36f2f2cbeaff", + "xHandle": "waytang5", + "xUrl": "https://twitter.com/waytang5", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8d0a93719244d70a2bf084efd657ac08b19fdfc9", + "balanceRaw": "86702854556675391488", + "balanceFormatted": "86.702854556675391488", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d0a93719244d70a2bf084efd657ac08b19fdfc9", + "etherscanUrl": "https://etherscan.io/address/0x8d0a93719244d70a2bf084efd657ac08b19fdfc9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x15b253c7032a4416d611b423ba48cd4850fec521", + "balanceRaw": "86654288450395836754", + "balanceFormatted": "86.654288450395836754", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15b253c7032a4416d611b423ba48cd4850fec521", + "etherscanUrl": "https://etherscan.io/address/0x15b253c7032a4416d611b423ba48cd4850fec521", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x39ec1b954be9a361929126257d3a4f08e2326f2d", + "balanceRaw": "86597380133733775452", + "balanceFormatted": "86.597380133733775452", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39ec1b954be9a361929126257d3a4f08e2326f2d", + "etherscanUrl": "https://etherscan.io/address/0x39ec1b954be9a361929126257d3a4f08e2326f2d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x680de71ab50e9cc0fbeb21610977c1b6832e3649", + "balanceRaw": "86361010124278522320", + "balanceFormatted": "86.36101012427852232", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x680de71ab50e9cc0fbeb21610977c1b6832e3649", + "etherscanUrl": "https://etherscan.io/address/0x680de71ab50e9cc0fbeb21610977c1b6832e3649", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_191231", + "balanceRaw": "86273469433864847137", + "balanceFormatted": "86.273469433864847137", + "lastTransferAt": null, + "username": "ruthn", + "displayName": "Ruthn", + "fid": 191231, + "followers": 575, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fefbd69-a757-4915-838c-643379d5dc00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e179e77a0c7ba04ac0d02e136c9d6516660c80e", + "etherscanUrl": "https://etherscan.io/address/0x7e179e77a0c7ba04ac0d02e136c9d6516660c80e", + "xHandle": "goodp1ne", + "xUrl": "https://twitter.com/goodp1ne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8a3a22ea8152a4d3d5a9acc33bc0c88639ff401", + "balanceRaw": "85830572371732265762", + "balanceFormatted": "85.830572371732265762", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8a3a22ea8152a4d3d5a9acc33bc0c88639ff401", + "etherscanUrl": "https://etherscan.io/address/0xf8a3a22ea8152a4d3d5a9acc33bc0c88639ff401", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6fc8fe5b6c9505fbcddd83844b774c26b7bcfc7c", + "balanceRaw": "85817677764151486889", + "balanceFormatted": "85.817677764151486889", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6fc8fe5b6c9505fbcddd83844b774c26b7bcfc7c", + "etherscanUrl": "https://etherscan.io/address/0x6fc8fe5b6c9505fbcddd83844b774c26b7bcfc7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8383b9a512f1c0e57cd015b076372b2844859e57", + "balanceRaw": "85640268633596225666", + "balanceFormatted": "85.640268633596225666", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8383b9a512f1c0e57cd015b076372b2844859e57", + "etherscanUrl": "https://etherscan.io/address/0x8383b9a512f1c0e57cd015b076372b2844859e57", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x21578a4c790d4cf1cb22a7751649166e22342af9", + "balanceRaw": "85255603938840538625", + "balanceFormatted": "85.255603938840538625", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21578a4c790d4cf1cb22a7751649166e22342af9", + "etherscanUrl": "https://etherscan.io/address/0x21578a4c790d4cf1cb22a7751649166e22342af9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8f5e31a0dc294a282f21c2eaf393976fc8cfa33a", + "balanceRaw": "85237210165580337692", + "balanceFormatted": "85.237210165580337692", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f5e31a0dc294a282f21c2eaf393976fc8cfa33a", + "etherscanUrl": "https://etherscan.io/address/0x8f5e31a0dc294a282f21c2eaf393976fc8cfa33a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0898fd54c43633e262425996b5971f5fd86b9b35", + "balanceRaw": "85163349640248009553", + "balanceFormatted": "85.163349640248009553", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0898fd54c43633e262425996b5971f5fd86b9b35", + "etherscanUrl": "https://etherscan.io/address/0x0898fd54c43633e262425996b5971f5fd86b9b35", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xecbb2d5e0ad6a5a9907d5c6a0049f5c9bb8b79be", + "balanceRaw": "85016245652266432902", + "balanceFormatted": "85.016245652266432902", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xecbb2d5e0ad6a5a9907d5c6a0049f5c9bb8b79be", + "etherscanUrl": "https://etherscan.io/address/0xecbb2d5e0ad6a5a9907d5c6a0049f5c9bb8b79be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8c28eb904fce4c6a60862b56b1b2946bce6ecf2", + "balanceRaw": "84697908322950949966", + "balanceFormatted": "84.697908322950949966", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8c28eb904fce4c6a60862b56b1b2946bce6ecf2", + "etherscanUrl": "https://etherscan.io/address/0xf8c28eb904fce4c6a60862b56b1b2946bce6ecf2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf64f38f934b8944bfed3577aaf89bb9635192ab", + "balanceRaw": "84621926564453845617", + "balanceFormatted": "84.621926564453845617", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf64f38f934b8944bfed3577aaf89bb9635192ab", + "etherscanUrl": "https://etherscan.io/address/0xaf64f38f934b8944bfed3577aaf89bb9635192ab", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3dd3d85a6b92aaebb2fc15bea36eb23d4886ecc5", + "balanceRaw": "84517866071235333814", + "balanceFormatted": "84.517866071235333814", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dd3d85a6b92aaebb2fc15bea36eb23d4886ecc5", + "etherscanUrl": "https://etherscan.io/address/0x3dd3d85a6b92aaebb2fc15bea36eb23d4886ecc5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6679ce32f4973bd4f0a0e7ca3da2097350df334d", + "balanceRaw": "84393009416772085664", + "balanceFormatted": "84.393009416772085664", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6679ce32f4973bd4f0a0e7ca3da2097350df334d", + "etherscanUrl": "https://etherscan.io/address/0x6679ce32f4973bd4f0a0e7ca3da2097350df334d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_311845", + "balanceRaw": "84056351688403420897", + "balanceFormatted": "84.056351688403420897", + "lastTransferAt": null, + "username": "reisub.eth", + "displayName": "Bas↑", + "fid": 311845, + "followers": 8200, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550b332a-097f-49b6-ffcf-6a5d720ba100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11415669286d998fd85a2a6146c41f6be41a794d", + "etherscanUrl": "https://etherscan.io/address/0x11415669286d998fd85a2a6146c41f6be41a794d", + "xHandle": "reisubbas", + "xUrl": "https://twitter.com/reisubbas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a28dbb2e71b4eb7ed47dcfaa0b689fc6c3283ae", + "balanceRaw": "83604811946092334778", + "balanceFormatted": "83.604811946092334778", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a28dbb2e71b4eb7ed47dcfaa0b689fc6c3283ae", + "etherscanUrl": "https://etherscan.io/address/0x7a28dbb2e71b4eb7ed47dcfaa0b689fc6c3283ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c9c5aa6d36813167000e0ff627de0fabd0c40a1", + "balanceRaw": "83338030060525656778", + "balanceFormatted": "83.338030060525656778", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c9c5aa6d36813167000e0ff627de0fabd0c40a1", + "etherscanUrl": "https://etherscan.io/address/0x0c9c5aa6d36813167000e0ff627de0fabd0c40a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3a687de5c9a4f8b54a8c800fdff9a418f3898378", + "balanceRaw": "82960704559187229434", + "balanceFormatted": "82.960704559187229434", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a687de5c9a4f8b54a8c800fdff9a418f3898378", + "etherscanUrl": "https://etherscan.io/address/0x3a687de5c9a4f8b54a8c800fdff9a418f3898378", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_290857", + "balanceRaw": "82702313907413968500", + "balanceFormatted": "82.7023139074139685", + "lastTransferAt": null, + "username": "0xbr0", + "displayName": "0xbr0", + "fid": 290857, + "followers": 2603, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafkreieq6xkg3wo2l5kooroaehay7grr2blwyvzhn76onjpb2tqtrlkeiq", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c4e0c3796a4c3c447e7bd502db11f05184e55c1", + "etherscanUrl": "https://etherscan.io/address/0x6c4e0c3796a4c3c447e7bd502db11f05184e55c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2d5b665a27e2388b09a29b07107eaacc6e543113", + "balanceRaw": "82468660128667979366", + "balanceFormatted": "82.468660128667979366", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d5b665a27e2388b09a29b07107eaacc6e543113", + "etherscanUrl": "https://etherscan.io/address/0x2d5b665a27e2388b09a29b07107eaacc6e543113", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17555", + "balanceRaw": "82387648598878193480", + "balanceFormatted": "82.38764859887819348", + "lastTransferAt": null, + "username": "jrs", + "displayName": "Jonathan", + "fid": 17555, + "followers": 2410, + "pfpUrl": "https://i.imgur.com/jF6786O.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9034d63cc2710df8756b5680593245289933f58a", + "etherscanUrl": "https://etherscan.io/address/0x9034d63cc2710df8756b5680593245289933f58a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_265428", + "balanceRaw": "82153897498411713385", + "balanceFormatted": "82.153897498411713385", + "lastTransferAt": null, + "username": "tungweb3", + "displayName": "Tungweb3 華流", + "fid": 265428, + "followers": 78, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/029e0bba-9965-47bf-67f5-c932b0703c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x022f4770e49d442250cb0abfbea61eb48cab9333", + "etherscanUrl": "https://etherscan.io/address/0x022f4770e49d442250cb0abfbea61eb48cab9333", + "xHandle": "tungweb3", + "xUrl": "https://twitter.com/tungweb3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4227", + "balanceRaw": "81721249357843002808", + "balanceFormatted": "81.721249357843002808", + "lastTransferAt": null, + "username": "tjkawa", + "displayName": "TJ Kawamura", + "fid": 4227, + "followers": 336, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a5f0428-2c45-4177-deaa-de4a6bc4cb00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c205ff5c9f247bc985a11e208fd1727d4d74b43", + "etherscanUrl": "https://etherscan.io/address/0x1c205ff5c9f247bc985a11e208fd1727d4d74b43", + "xHandle": "tj_kawa", + "xUrl": "https://twitter.com/tj_kawa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4327", + "balanceRaw": "81702536777646937133", + "balanceFormatted": "81.702536777646937133", + "lastTransferAt": null, + "username": "cojo.eth", + "displayName": "Cojo 💭", + "fid": 4327, + "followers": 129937, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01439454-0146-4af1-de3d-697661637300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcaaa26c5498de67466e6823ef69718feb04c2952", + "etherscanUrl": "https://etherscan.io/address/0xcaaa26c5498de67466e6823ef69718feb04c2952", + "xHandle": "cojo_eth", + "xUrl": "https://twitter.com/cojo_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x095a9fb7a06a5a9e28f0fcbe7ce04abd38017091", + "balanceRaw": "81409323005328978633", + "balanceFormatted": "81.409323005328978633", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x095a9fb7a06a5a9e28f0fcbe7ce04abd38017091", + "etherscanUrl": "https://etherscan.io/address/0x095a9fb7a06a5a9e28f0fcbe7ce04abd38017091", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac89e080b7aff490a6756fa320ebd55417415de8", + "balanceRaw": "80986563686344822439", + "balanceFormatted": "80.986563686344822439", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac89e080b7aff490a6756fa320ebd55417415de8", + "etherscanUrl": "https://etherscan.io/address/0xac89e080b7aff490a6756fa320ebd55417415de8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x174d5727bdb7fa9b0d4e8be7a5c14d698e7d4b2d", + "balanceRaw": "80766607938005835793", + "balanceFormatted": "80.766607938005835793", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x174d5727bdb7fa9b0d4e8be7a5c14d698e7d4b2d", + "etherscanUrl": "https://etherscan.io/address/0x174d5727bdb7fa9b0d4e8be7a5c14d698e7d4b2d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd88c41ccb22e8d808c7eef78a261a727b74224d4", + "balanceRaw": "80701340156023659680", + "balanceFormatted": "80.70134015602365968", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd88c41ccb22e8d808c7eef78a261a727b74224d4", + "etherscanUrl": "https://etherscan.io/address/0xd88c41ccb22e8d808c7eef78a261a727b74224d4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x37a576896cfca6b97c3b243cc7eda3a102db982d", + "balanceRaw": "80089227992267123400", + "balanceFormatted": "80.0892279922671234", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x37a576896cfca6b97c3b243cc7eda3a102db982d", + "etherscanUrl": "https://etherscan.io/address/0x37a576896cfca6b97c3b243cc7eda3a102db982d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbbb5008da7ef90a416a4389fdad3872d6896cff9", + "balanceRaw": "80003848577598611991", + "balanceFormatted": "80.003848577598611991", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbb5008da7ef90a416a4389fdad3872d6896cff9", + "etherscanUrl": "https://etherscan.io/address/0xbbb5008da7ef90a416a4389fdad3872d6896cff9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7730", + "balanceRaw": "80000000000000000000", + "balanceFormatted": "80", + "lastTransferAt": null, + "username": "rishabhbansal", + "displayName": "Rishabh Bansal", + "fid": 7730, + "followers": 35, + "pfpUrl": "https://i.imgur.com/BLPeM5C.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa16f60250eba1b9a9fa2e9ed609e302383fd9c82", + "etherscanUrl": "https://etherscan.io/address/0xa16f60250eba1b9a9fa2e9ed609e302383fd9c82", + "xHandle": "rishabhbansal97", + "xUrl": "https://twitter.com/rishabhbansal97", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x614cef4a37c61daca1627537ba213691217278a6", + "balanceRaw": "79997767516489959359", + "balanceFormatted": "79.997767516489959359", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x614cef4a37c61daca1627537ba213691217278a6", + "etherscanUrl": "https://etherscan.io/address/0x614cef4a37c61daca1627537ba213691217278a6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x913d9688882b2e57e8277d727cc5fd99fee0922c", + "balanceRaw": "79807937844557483437", + "balanceFormatted": "79.807937844557483437", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x913d9688882b2e57e8277d727cc5fd99fee0922c", + "etherscanUrl": "https://etherscan.io/address/0x913d9688882b2e57e8277d727cc5fd99fee0922c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda4bcc6a2f9a1815348918e2d4ad9d1355856d6e", + "balanceRaw": "79730874893321377263", + "balanceFormatted": "79.730874893321377263", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda4bcc6a2f9a1815348918e2d4ad9d1355856d6e", + "etherscanUrl": "https://etherscan.io/address/0xda4bcc6a2f9a1815348918e2d4ad9d1355856d6e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff6f0b67ca7244f81786436788bfd8bf8328e791", + "balanceRaw": "79651229855577542190", + "balanceFormatted": "79.65122985557754219", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff6f0b67ca7244f81786436788bfd8bf8328e791", + "etherscanUrl": "https://etherscan.io/address/0xff6f0b67ca7244f81786436788bfd8bf8328e791", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed5d4a44a1a6f716fb121d9af149a9460ee69c02", + "balanceRaw": "79556333729441137794", + "balanceFormatted": "79.556333729441137794", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed5d4a44a1a6f716fb121d9af149a9460ee69c02", + "etherscanUrl": "https://etherscan.io/address/0xed5d4a44a1a6f716fb121d9af149a9460ee69c02", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b6f24bd87ad9d8f7bc0107769a50a20fc833844", + "balanceRaw": "79490281630858445116", + "balanceFormatted": "79.490281630858445116", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b6f24bd87ad9d8f7bc0107769a50a20fc833844", + "etherscanUrl": "https://etherscan.io/address/0x7b6f24bd87ad9d8f7bc0107769a50a20fc833844", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e1efeeec722c33298672dbd453b47754726f911", + "balanceRaw": "79380707366444892294", + "balanceFormatted": "79.380707366444892294", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e1efeeec722c33298672dbd453b47754726f911", + "etherscanUrl": "https://etherscan.io/address/0x5e1efeeec722c33298672dbd453b47754726f911", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b8cc1c88d1f754f51ae97a512c5212e27f9948b", + "balanceRaw": "79369167944749237642", + "balanceFormatted": "79.369167944749237642", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b8cc1c88d1f754f51ae97a512c5212e27f9948b", + "etherscanUrl": "https://etherscan.io/address/0x7b8cc1c88d1f754f51ae97a512c5212e27f9948b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcdd86f25a793b55fb70fd86f9502a17afb746fa1", + "balanceRaw": "79264184110685342247", + "balanceFormatted": "79.264184110685342247", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcdd86f25a793b55fb70fd86f9502a17afb746fa1", + "etherscanUrl": "https://etherscan.io/address/0xcdd86f25a793b55fb70fd86f9502a17afb746fa1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x10dfe5ed945fbb91b49ddd1810cf267420a8062d", + "balanceRaw": "79195127724652473246", + "balanceFormatted": "79.195127724652473246", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10dfe5ed945fbb91b49ddd1810cf267420a8062d", + "etherscanUrl": "https://etherscan.io/address/0x10dfe5ed945fbb91b49ddd1810cf267420a8062d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfff1f0a197022b16fb04128bd2c6c4b85eed335e", + "balanceRaw": "79062793550565597873", + "balanceFormatted": "79.062793550565597873", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfff1f0a197022b16fb04128bd2c6c4b85eed335e", + "etherscanUrl": "https://etherscan.io/address/0xfff1f0a197022b16fb04128bd2c6c4b85eed335e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_271329", + "balanceRaw": "78797913825910027721", + "balanceFormatted": "78.797913825910027721", + "lastTransferAt": null, + "username": "!271329", + "displayName": null, + "fid": 271329, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb44b476a7f6a83b5e0559433b0d3ad374a0c1682", + "etherscanUrl": "https://etherscan.io/address/0xb44b476a7f6a83b5e0559433b0d3ad374a0c1682", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "balanceRaw": "78089387382307676883", + "balanceFormatted": "78.089387382307676883", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "etherscanUrl": "https://etherscan.io/address/0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3629c9526a3dacd2bcafc85a5082c0d9b138ca98", + "balanceRaw": "77768025874452399620", + "balanceFormatted": "77.76802587445239962", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3629c9526a3dacd2bcafc85a5082c0d9b138ca98", + "etherscanUrl": "https://etherscan.io/address/0x3629c9526a3dacd2bcafc85a5082c0d9b138ca98", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4a9e40d550676984c85888905c37eaa54e8d086e", + "balanceRaw": "77752096895546268975", + "balanceFormatted": "77.752096895546268975", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a9e40d550676984c85888905c37eaa54e8d086e", + "etherscanUrl": "https://etherscan.io/address/0x4a9e40d550676984c85888905c37eaa54e8d086e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e75607ece8a4ccd7887aeee4abdedfd70aa2ae1", + "balanceRaw": "77488660596319413814", + "balanceFormatted": "77.488660596319413814", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e75607ece8a4ccd7887aeee4abdedfd70aa2ae1", + "etherscanUrl": "https://etherscan.io/address/0x7e75607ece8a4ccd7887aeee4abdedfd70aa2ae1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x869cf0b4275c42efe4ea6854bd3aadf1038434aa", + "balanceRaw": "77332865763331459653", + "balanceFormatted": "77.332865763331459653", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x869cf0b4275c42efe4ea6854bd3aadf1038434aa", + "etherscanUrl": "https://etherscan.io/address/0x869cf0b4275c42efe4ea6854bd3aadf1038434aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaba709c0c605f01d4baca31c8aba50248fade27b", + "balanceRaw": "77310165641728285030", + "balanceFormatted": "77.31016564172828503", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaba709c0c605f01d4baca31c8aba50248fade27b", + "etherscanUrl": "https://etherscan.io/address/0xaba709c0c605f01d4baca31c8aba50248fade27b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf4654c162a256758ded7bc9305333e2f4c209849", + "balanceRaw": "77211270209590928679", + "balanceFormatted": "77.211270209590928679", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4654c162a256758ded7bc9305333e2f4c209849", + "etherscanUrl": "https://etherscan.io/address/0xf4654c162a256758ded7bc9305333e2f4c209849", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x17e325b1647ab6d61f668cc266eb94590fef7ef4", + "balanceRaw": "77206862152683906505", + "balanceFormatted": "77.206862152683906505", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17e325b1647ab6d61f668cc266eb94590fef7ef4", + "etherscanUrl": "https://etherscan.io/address/0x17e325b1647ab6d61f668cc266eb94590fef7ef4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b5489942688f16e6cd80c4bd7100cbf9ecdc161", + "balanceRaw": "77170076124913299565", + "balanceFormatted": "77.170076124913299565", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b5489942688f16e6cd80c4bd7100cbf9ecdc161", + "etherscanUrl": "https://etherscan.io/address/0x0b5489942688f16e6cd80c4bd7100cbf9ecdc161", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x04b2572fc5031af5956970d1a3a2705c4aff3ad4", + "balanceRaw": "77112018271769343644", + "balanceFormatted": "77.112018271769343644", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04b2572fc5031af5956970d1a3a2705c4aff3ad4", + "etherscanUrl": "https://etherscan.io/address/0x04b2572fc5031af5956970d1a3a2705c4aff3ad4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x77335d2c99a22cad98e2bfe2a682076e7ce7a974", + "balanceRaw": "76789402351536855950", + "balanceFormatted": "76.78940235153685595", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77335d2c99a22cad98e2bfe2a682076e7ce7a974", + "etherscanUrl": "https://etherscan.io/address/0x77335d2c99a22cad98e2bfe2a682076e7ce7a974", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_533", + "balanceRaw": "76744929013285194106", + "balanceFormatted": "76.744929013285194106", + "lastTransferAt": null, + "username": "alexpaden", + "displayName": "shoni.eth", + "fid": 533, + "followers": 63440, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52fe8f75-1edc-4ec7-7580-a100d43a8700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f655ca3ad2629dd38de8cafa7c20d748a4ec2c2", + "etherscanUrl": "https://etherscan.io/address/0x8f655ca3ad2629dd38de8cafa7c20d748a4ec2c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad8fcc19e9ab4edf72c0a6c7693d1a70542bfd3d", + "balanceRaw": "76248573618352545337", + "balanceFormatted": "76.248573618352545337", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad8fcc19e9ab4edf72c0a6c7693d1a70542bfd3d", + "etherscanUrl": "https://etherscan.io/address/0xad8fcc19e9ab4edf72c0a6c7693d1a70542bfd3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd1349b97b644537f96f72e0572c3cc960b8ae672", + "balanceRaw": "76242688833123308394", + "balanceFormatted": "76.242688833123308394", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1349b97b644537f96f72e0572c3cc960b8ae672", + "etherscanUrl": "https://etherscan.io/address/0xd1349b97b644537f96f72e0572c3cc960b8ae672", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4375", + "balanceRaw": "76054405443241700108", + "balanceFormatted": "76.054405443241700108", + "lastTransferAt": null, + "username": "resipsa", + "displayName": "res ipsa ☺︎", + "fid": 4375, + "followers": 8914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff4bb513-6e84-46ad-3340-6a864966d000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x355b1a9f48f48bdd2b77607c6aef4a7acd0ddacf", + "etherscanUrl": "https://etherscan.io/address/0x355b1a9f48f48bdd2b77607c6aef4a7acd0ddacf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b3453b96c6267dbf22f559fb8dd9f522722d065", + "balanceRaw": "75935889651138996465", + "balanceFormatted": "75.935889651138996465", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b3453b96c6267dbf22f559fb8dd9f522722d065", + "etherscanUrl": "https://etherscan.io/address/0x8b3453b96c6267dbf22f559fb8dd9f522722d065", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_190391", + "balanceRaw": "75670972924805586812", + "balanceFormatted": "75.670972924805586812", + "lastTransferAt": null, + "username": "zeronoledger", + "displayName": "Zeronoledger 🎩", + "fid": 190391, + "followers": 71, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d91bfc83-c6e0-4b00-5305-ee60dc07a500/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39766ef16062502a5dcd6ac72f40d6b3bed8ed73", + "etherscanUrl": "https://etherscan.io/address/0x39766ef16062502a5dcd6ac72f40d6b3bed8ed73", + "xHandle": "zeronoledger", + "xUrl": "https://twitter.com/zeronoledger", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbd3ad03cf720cf508f82b799cc4013958615e443", + "balanceRaw": "75420457004545433103", + "balanceFormatted": "75.420457004545433103", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd3ad03cf720cf508f82b799cc4013958615e443", + "etherscanUrl": "https://etherscan.io/address/0xbd3ad03cf720cf508f82b799cc4013958615e443", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfec3a995588a4bc72bed6a47f6c3a61946030001", + "balanceRaw": "75311511602070250860", + "balanceFormatted": "75.31151160207025086", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfec3a995588a4bc72bed6a47f6c3a61946030001", + "etherscanUrl": "https://etherscan.io/address/0xfec3a995588a4bc72bed6a47f6c3a61946030001", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3e18ebb703d4fafb3f96deefc49a302877c8c2c7", + "balanceRaw": "75299619732539329339", + "balanceFormatted": "75.299619732539329339", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e18ebb703d4fafb3f96deefc49a302877c8c2c7", + "etherscanUrl": "https://etherscan.io/address/0x3e18ebb703d4fafb3f96deefc49a302877c8c2c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_270067", + "balanceRaw": "75259592168632536439", + "balanceFormatted": "75.259592168632536439", + "lastTransferAt": null, + "username": "in2themetaverse", + "displayName": "Wat", + "fid": 270067, + "followers": 30, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ea549ad-67a5-4c20-cda3-8eb341232900/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20d4db3be3eb78de24a7be06f8cc5f8ee4ce388e", + "etherscanUrl": "https://etherscan.io/address/0x20d4db3be3eb78de24a7be06f8cc5f8ee4ce388e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x91397a787a0856ad57dbbeff3e90e661b75d52e6", + "balanceRaw": "75152489582581430593", + "balanceFormatted": "75.152489582581430593", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91397a787a0856ad57dbbeff3e90e661b75d52e6", + "etherscanUrl": "https://etherscan.io/address/0x91397a787a0856ad57dbbeff3e90e661b75d52e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfdafc9af71da16ed0d669ac275408b9c0f496168", + "balanceRaw": "75138299428177984488", + "balanceFormatted": "75.138299428177984488", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfdafc9af71da16ed0d669ac275408b9c0f496168", + "etherscanUrl": "https://etherscan.io/address/0xfdafc9af71da16ed0d669ac275408b9c0f496168", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfcf93df2a2d0667f5222c1c6bc08229434cfb608", + "balanceRaw": "75000000000000000000", + "balanceFormatted": "75", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcf93df2a2d0667f5222c1c6bc08229434cfb608", + "etherscanUrl": "https://etherscan.io/address/0xfcf93df2a2d0667f5222c1c6bc08229434cfb608", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa8682e543e29e3cc67979df189d8c6594c3b3fcc", + "balanceRaw": "74693532605215493798", + "balanceFormatted": "74.693532605215493798", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa8682e543e29e3cc67979df189d8c6594c3b3fcc", + "etherscanUrl": "https://etherscan.io/address/0xa8682e543e29e3cc67979df189d8c6594c3b3fcc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7337b39e75280ff35c56ea8cdf70a97425d27318", + "balanceRaw": "74682763708368427650", + "balanceFormatted": "74.68276370836842765", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7337b39e75280ff35c56ea8cdf70a97425d27318", + "etherscanUrl": "https://etherscan.io/address/0x7337b39e75280ff35c56ea8cdf70a97425d27318", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ac9ae25d5e0f64088b467e02cea93fbc341f1b7", + "balanceRaw": "74655245353746233822", + "balanceFormatted": "74.655245353746233822", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ac9ae25d5e0f64088b467e02cea93fbc341f1b7", + "etherscanUrl": "https://etherscan.io/address/0x5ac9ae25d5e0f64088b467e02cea93fbc341f1b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c3c014d116c5e18264830dc2a7ee12ea2c3360b", + "balanceRaw": "74598294339910226688", + "balanceFormatted": "74.598294339910226688", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c3c014d116c5e18264830dc2a7ee12ea2c3360b", + "etherscanUrl": "https://etherscan.io/address/0x8c3c014d116c5e18264830dc2a7ee12ea2c3360b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1c331b954c8b16a0f462f71444f314e1a5f14b3c", + "balanceRaw": "74549258282972877040", + "balanceFormatted": "74.54925828297287704", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c331b954c8b16a0f462f71444f314e1a5f14b3c", + "etherscanUrl": "https://etherscan.io/address/0x1c331b954c8b16a0f462f71444f314e1a5f14b3c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_484278", + "balanceRaw": "74248600698440763800", + "balanceFormatted": "74.2486006984407638", + "lastTransferAt": null, + "username": "artyooom", + "displayName": "artyooom", + "fid": 484278, + "followers": 6, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60588de8-c16c-42a8-e22e-c52b71445000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3820e04f4d00a06338b66e9a1c67bc13b7d069d5", + "etherscanUrl": "https://etherscan.io/address/0x3820e04f4d00a06338b66e9a1c67bc13b7d069d5", + "xHandle": "rinalliled11066", + "xUrl": "https://twitter.com/rinalliled11066", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4f54f422bc807b750f16a69548d3f9b281dc4d48", + "balanceRaw": "73761693893766414281", + "balanceFormatted": "73.761693893766414281", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f54f422bc807b750f16a69548d3f9b281dc4d48", + "etherscanUrl": "https://etherscan.io/address/0x4f54f422bc807b750f16a69548d3f9b281dc4d48", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc4f432db1b2f7f668ad723d348bc600eafbafc9a", + "balanceRaw": "73758088572287117227", + "balanceFormatted": "73.758088572287117227", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4f432db1b2f7f668ad723d348bc600eafbafc9a", + "etherscanUrl": "https://etherscan.io/address/0xc4f432db1b2f7f668ad723d348bc600eafbafc9a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17296", + "balanceRaw": "73664367196389839520", + "balanceFormatted": "73.66436719638983952", + "lastTransferAt": null, + "username": "york", + "displayName": "York", + "fid": 17296, + "followers": 2190, + "pfpUrl": "https://i.imgur.com/5BoOWqi.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa706f5c72d30f27f798cc4e163f7d9c720a781b9", + "etherscanUrl": "https://etherscan.io/address/0xa706f5c72d30f27f798cc4e163f7d9c720a781b9", + "xHandle": "realyorkz", + "xUrl": "https://twitter.com/realyorkz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53d13c26dc785bd4f1ee91e7321b828b1573e2a2", + "balanceRaw": "73492993574735822606", + "balanceFormatted": "73.492993574735822606", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53d13c26dc785bd4f1ee91e7321b828b1573e2a2", + "etherscanUrl": "https://etherscan.io/address/0x53d13c26dc785bd4f1ee91e7321b828b1573e2a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5c3f8fdc2c99cd27576f36d13446f33c58e67a24", + "balanceRaw": "73434811228936117058", + "balanceFormatted": "73.434811228936117058", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c3f8fdc2c99cd27576f36d13446f33c58e67a24", + "etherscanUrl": "https://etherscan.io/address/0x5c3f8fdc2c99cd27576f36d13446f33c58e67a24", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcfe07703e150737d8dbe9265205fb05fd12ffde2", + "balanceRaw": "73295276443091908148", + "balanceFormatted": "73.295276443091908148", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcfe07703e150737d8dbe9265205fb05fd12ffde2", + "etherscanUrl": "https://etherscan.io/address/0xcfe07703e150737d8dbe9265205fb05fd12ffde2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5b6732f098d27d3f97fd3b8e3cbb194dd3c9d324", + "balanceRaw": "73176813933969420587", + "balanceFormatted": "73.176813933969420587", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b6732f098d27d3f97fd3b8e3cbb194dd3c9d324", + "etherscanUrl": "https://etherscan.io/address/0x5b6732f098d27d3f97fd3b8e3cbb194dd3c9d324", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3adeb4f96ee65d847ed625b727e28172ce8a3bd", + "balanceRaw": "73155654574385418633", + "balanceFormatted": "73.155654574385418633", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3adeb4f96ee65d847ed625b727e28172ce8a3bd", + "etherscanUrl": "https://etherscan.io/address/0xf3adeb4f96ee65d847ed625b727e28172ce8a3bd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd297dae8361911dbcc34a202ab6852e983c83f8f", + "balanceRaw": "73066771564365077712", + "balanceFormatted": "73.066771564365077712", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd297dae8361911dbcc34a202ab6852e983c83f8f", + "etherscanUrl": "https://etherscan.io/address/0xd297dae8361911dbcc34a202ab6852e983c83f8f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_240470", + "balanceRaw": "72993396709317820885", + "balanceFormatted": "72.993396709317820885", + "lastTransferAt": null, + "username": "design3r", + "displayName": "Designer", + "fid": 240470, + "followers": 57, + "pfpUrl": "https://i.imgur.com/XtRDxzT.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7a72f7ad85b96b2a4665a308da0f5ca027ab05e", + "etherscanUrl": "https://etherscan.io/address/0xb7a72f7ad85b96b2a4665a308da0f5ca027ab05e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb01b1bb5903d79316979984ef4944b63debe764b", + "balanceRaw": "72839158626627998354", + "balanceFormatted": "72.839158626627998354", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb01b1bb5903d79316979984ef4944b63debe764b", + "etherscanUrl": "https://etherscan.io/address/0xb01b1bb5903d79316979984ef4944b63debe764b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3ff94c85e607cd07df0b76cc97c40a78d7d03290", + "balanceRaw": "72472773249004692272", + "balanceFormatted": "72.472773249004692272", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ff94c85e607cd07df0b76cc97c40a78d7d03290", + "etherscanUrl": "https://etherscan.io/address/0x3ff94c85e607cd07df0b76cc97c40a78d7d03290", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e5b58a2058d5c656b7f149c1676a960058b9f0b", + "balanceRaw": "72060650201118597137", + "balanceFormatted": "72.060650201118597137", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e5b58a2058d5c656b7f149c1676a960058b9f0b", + "etherscanUrl": "https://etherscan.io/address/0x7e5b58a2058d5c656b7f149c1676a960058b9f0b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcc0ba860281a1f31b30c805b0f8210f6106cc14b", + "balanceRaw": "71500198984288973502", + "balanceFormatted": "71.500198984288973502", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcc0ba860281a1f31b30c805b0f8210f6106cc14b", + "etherscanUrl": "https://etherscan.io/address/0xcc0ba860281a1f31b30c805b0f8210f6106cc14b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf118e0df659b83215734c0b05991c039a86ec6bf", + "balanceRaw": "71493639721456990847", + "balanceFormatted": "71.493639721456990847", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf118e0df659b83215734c0b05991c039a86ec6bf", + "etherscanUrl": "https://etherscan.io/address/0xf118e0df659b83215734c0b05991c039a86ec6bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x206660e3b00ae1d51c1158a823a859250e94e99c", + "balanceRaw": "71407570587347082968", + "balanceFormatted": "71.407570587347082968", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x206660e3b00ae1d51c1158a823a859250e94e99c", + "etherscanUrl": "https://etherscan.io/address/0x206660e3b00ae1d51c1158a823a859250e94e99c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c0582b9874c0b37f0ef1b3785906fc5fe9ca9e3", + "balanceRaw": "71099449093336469715", + "balanceFormatted": "71.099449093336469715", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c0582b9874c0b37f0ef1b3785906fc5fe9ca9e3", + "etherscanUrl": "https://etherscan.io/address/0x0c0582b9874c0b37f0ef1b3785906fc5fe9ca9e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda495e7690e87b6d2b85286e369cb02b46f77196", + "balanceRaw": "71089869062806029474", + "balanceFormatted": "71.089869062806029474", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda495e7690e87b6d2b85286e369cb02b46f77196", + "etherscanUrl": "https://etherscan.io/address/0xda495e7690e87b6d2b85286e369cb02b46f77196", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x66e678dc7cb7033f2e52d6f943892d3099ababf9", + "balanceRaw": "71061233958504842170", + "balanceFormatted": "71.06123395850484217", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66e678dc7cb7033f2e52d6f943892d3099ababf9", + "etherscanUrl": "https://etherscan.io/address/0x66e678dc7cb7033f2e52d6f943892d3099ababf9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_571167", + "balanceRaw": "70997616178549611590", + "balanceFormatted": "70.99761617854961159", + "lastTransferAt": null, + "username": "beeperbase", + "displayName": "Masta Apes", + "fid": 571167, + "followers": 11, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5cda360-b0a9-4fe5-7019-3db1848ff400/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa033994ec61afdcb90c84ff0271e8123bad0e471", + "etherscanUrl": "https://etherscan.io/address/0xa033994ec61afdcb90c84ff0271e8123bad0e471", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_377066", + "balanceRaw": "70960972024915638238", + "balanceFormatted": "70.960972024915638238", + "lastTransferAt": null, + "username": "zhanglu.eth", + "displayName": "zhanglu.eth", + "fid": 377066, + "followers": 95, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6f88ed0-fdf5-418e-969e-191946273b00/original", + "ensName": "zhanglu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb269db3b90703d2f65e37904cef5793c5da0e80b", + "etherscanUrl": "https://etherscan.io/address/0xb269db3b90703d2f65e37904cef5793c5da0e80b", + "xHandle": "craaie1", + "xUrl": "https://twitter.com/craaie1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcf6fabc42faf1e14d3fa0d0a98461f160c8e5a09", + "balanceRaw": "70957801079061526856", + "balanceFormatted": "70.957801079061526856", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf6fabc42faf1e14d3fa0d0a98461f160c8e5a09", + "etherscanUrl": "https://etherscan.io/address/0xcf6fabc42faf1e14d3fa0d0a98461f160c8e5a09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x42c1d5a03388f32bee82ec3636e75bc5891897c4", + "balanceRaw": "70896367133432281916", + "balanceFormatted": "70.896367133432281916", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42c1d5a03388f32bee82ec3636e75bc5891897c4", + "etherscanUrl": "https://etherscan.io/address/0x42c1d5a03388f32bee82ec3636e75bc5891897c4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9c061333a8655a4846636e3f1857be1abe8401a5", + "balanceRaw": "70860945274566027392", + "balanceFormatted": "70.860945274566027392", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c061333a8655a4846636e3f1857be1abe8401a5", + "etherscanUrl": "https://etherscan.io/address/0x9c061333a8655a4846636e3f1857be1abe8401a5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa96f99188020744509e29ab29fbda1e9ef1eaee3", + "balanceRaw": "70618497546813111512", + "balanceFormatted": "70.618497546813111512", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa96f99188020744509e29ab29fbda1e9ef1eaee3", + "etherscanUrl": "https://etherscan.io/address/0xa96f99188020744509e29ab29fbda1e9ef1eaee3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7aa41c5121f19ca052c78a213e04298bca3de7d9", + "balanceRaw": "70588017667674654197", + "balanceFormatted": "70.588017667674654197", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7aa41c5121f19ca052c78a213e04298bca3de7d9", + "etherscanUrl": "https://etherscan.io/address/0x7aa41c5121f19ca052c78a213e04298bca3de7d9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99c36f37b6f546abcbdc798230e95f46efaf9dfc", + "balanceRaw": "70510914277080607758", + "balanceFormatted": "70.510914277080607758", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99c36f37b6f546abcbdc798230e95f46efaf9dfc", + "etherscanUrl": "https://etherscan.io/address/0x99c36f37b6f546abcbdc798230e95f46efaf9dfc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6d749657eef45af46fa2b7c81a6a4c7636f45d64", + "balanceRaw": "70268735248831073796", + "balanceFormatted": "70.268735248831073796", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d749657eef45af46fa2b7c81a6a4c7636f45d64", + "etherscanUrl": "https://etherscan.io/address/0x6d749657eef45af46fa2b7c81a6a4c7636f45d64", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe44de38002d00c0c95ef0722193034f5f3a79763", + "balanceRaw": "70262119404745411887", + "balanceFormatted": "70.262119404745411887", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe44de38002d00c0c95ef0722193034f5f3a79763", + "etherscanUrl": "https://etherscan.io/address/0xe44de38002d00c0c95ef0722193034f5f3a79763", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0526bb9e8fa4696def544dd3d5563d7f73190029", + "balanceRaw": "70222005824305123000", + "balanceFormatted": "70.222005824305123", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0526bb9e8fa4696def544dd3d5563d7f73190029", + "etherscanUrl": "https://etherscan.io/address/0x0526bb9e8fa4696def544dd3d5563d7f73190029", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0df60e53959504e2aeeca46a5a2e72e860a3666d", + "balanceRaw": "70204787477863563604", + "balanceFormatted": "70.204787477863563604", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0df60e53959504e2aeeca46a5a2e72e860a3666d", + "etherscanUrl": "https://etherscan.io/address/0x0df60e53959504e2aeeca46a5a2e72e860a3666d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_245985", + "balanceRaw": "70122731699077666415", + "balanceFormatted": "70.122731699077666415", + "lastTransferAt": null, + "username": "kaspa0811", + "displayName": "kaspa0811", + "fid": 245985, + "followers": 673, + "pfpUrl": "https://i.imgur.com/zH87bWs.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x800ffd44997e28d5197ff8bdf4b297bed767b156", + "etherscanUrl": "https://etherscan.io/address/0x800ffd44997e28d5197ff8bdf4b297bed767b156", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_227886", + "balanceRaw": "70071508726618411079", + "balanceFormatted": "70.071508726618411079", + "lastTransferAt": null, + "username": "grit", + "displayName": "GRIT", + "fid": 227886, + "followers": 13061, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8ffa43c-c9a6-4565-0c5f-a4d4eabca600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7e1e42010d91506d52f01bfe0757d81a226a0b4", + "etherscanUrl": "https://etherscan.io/address/0xd7e1e42010d91506d52f01bfe0757d81a226a0b4", + "xHandle": "gritcult", + "xUrl": "https://twitter.com/gritcult", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f55e238c9984227d0f7eb61a5eda825ec535aae", + "balanceRaw": "70046067235432984302", + "balanceFormatted": "70.046067235432984302", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f55e238c9984227d0f7eb61a5eda825ec535aae", + "etherscanUrl": "https://etherscan.io/address/0x2f55e238c9984227d0f7eb61a5eda825ec535aae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xef56490cf84c3da2452fb19a992c25ce073b3479", + "balanceRaw": "70013488132267105373", + "balanceFormatted": "70.013488132267105373", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef56490cf84c3da2452fb19a992c25ce073b3479", + "etherscanUrl": "https://etherscan.io/address/0xef56490cf84c3da2452fb19a992c25ce073b3479", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53a9c678e14eff2aa217941dd63d9de462c75cf4", + "balanceRaw": "70000000000000000000", + "balanceFormatted": "70", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53a9c678e14eff2aa217941dd63d9de462c75cf4", + "etherscanUrl": "https://etherscan.io/address/0x53a9c678e14eff2aa217941dd63d9de462c75cf4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x56d3bda3e1f4bc779e558960b29d37112d74cd39", + "balanceRaw": "70000000000000000000", + "balanceFormatted": "70", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56d3bda3e1f4bc779e558960b29d37112d74cd39", + "etherscanUrl": "https://etherscan.io/address/0x56d3bda3e1f4bc779e558960b29d37112d74cd39", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x96373eb9db0c4da8b1cfc700a37f5897c69df5af", + "balanceRaw": "69598654755967974832", + "balanceFormatted": "69.598654755967974832", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96373eb9db0c4da8b1cfc700a37f5897c69df5af", + "etherscanUrl": "https://etherscan.io/address/0x96373eb9db0c4da8b1cfc700a37f5897c69df5af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4745a3e3d41761a531f62a1b9a3fcf6d5fac5eae", + "balanceRaw": "69499362958586643460", + "balanceFormatted": "69.49936295858664346", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4745a3e3d41761a531f62a1b9a3fcf6d5fac5eae", + "etherscanUrl": "https://etherscan.io/address/0x4745a3e3d41761a531f62a1b9a3fcf6d5fac5eae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x819bcaa68624f84ab30abb1b352b3a62628d4cdc", + "balanceRaw": "69326992839376374411", + "balanceFormatted": "69.326992839376374411", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x819bcaa68624f84ab30abb1b352b3a62628d4cdc", + "etherscanUrl": "https://etherscan.io/address/0x819bcaa68624f84ab30abb1b352b3a62628d4cdc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2cc0b3c73aadae4ecb736cc493a907ca25f6c1b1", + "balanceRaw": "68992038989304954114", + "balanceFormatted": "68.992038989304954114", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cc0b3c73aadae4ecb736cc493a907ca25f6c1b1", + "etherscanUrl": "https://etherscan.io/address/0x2cc0b3c73aadae4ecb736cc493a907ca25f6c1b1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9793a103a18af2c704bbfe2a485c862820adb87b", + "balanceRaw": "68984886399397816746", + "balanceFormatted": "68.984886399397816746", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9793a103a18af2c704bbfe2a485c862820adb87b", + "etherscanUrl": "https://etherscan.io/address/0x9793a103a18af2c704bbfe2a485c862820adb87b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa34d6b4c4be7eb2bd1b1ba3a3aab126ccb942dd4", + "balanceRaw": "68887836035298292717", + "balanceFormatted": "68.887836035298292717", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa34d6b4c4be7eb2bd1b1ba3a3aab126ccb942dd4", + "etherscanUrl": "https://etherscan.io/address/0xa34d6b4c4be7eb2bd1b1ba3a3aab126ccb942dd4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_897481", + "balanceRaw": "68741065110714488048", + "balanceFormatted": "68.741065110714488048", + "lastTransferAt": null, + "username": "garyma", + "displayName": "GaryMa", + "fid": 897481, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/29db9d9b-bd33-49b2-271c-4a27e8948200/rectcrop3", + "ensName": "garyma.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb924f68aae1a544366f93ea453f9da56f239c88b", + "etherscanUrl": "https://etherscan.io/address/0xb924f68aae1a544366f93ea453f9da56f239c88b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2109d16da3a83611e88a90d43c4c927f82b429ae", + "balanceRaw": "68648477129029008991", + "balanceFormatted": "68.648477129029008991", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2109d16da3a83611e88a90d43c4c927f82b429ae", + "etherscanUrl": "https://etherscan.io/address/0x2109d16da3a83611e88a90d43c4c927f82b429ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_86", + "balanceRaw": "68616790311146888840", + "balanceFormatted": "68.61679031114688884", + "lastTransferAt": null, + "username": "steakbitcoin.eth", + "displayName": "Dustin Moring", + "fid": 86, + "followers": 1433, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69b50e80-a2c3-4c29-2533-e168614d5e00/rectcrop3", + "ensName": "steakbitcoin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7c01d14f10db1df1a70f2b3eb8a93962c345fcf1", + "etherscanUrl": "https://etherscan.io/address/0x7c01d14f10db1df1a70f2b3eb8a93962c345fcf1", + "xHandle": "dustinmoring", + "xUrl": "https://twitter.com/dustinmoring", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1113654", + "balanceRaw": "68535038605107806072", + "balanceFormatted": "68.535038605107806072", + "lastTransferAt": null, + "username": "firmjeff", + "displayName": "Jeffrey (Computer Operator)", + "fid": 1113654, + "followers": 602, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc49a4b0-7d3a-4e1e-e294-6754aad60c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f48ae30095013130bf181773a2c360722c29242", + "etherscanUrl": "https://etherscan.io/address/0x7f48ae30095013130bf181773a2c360722c29242", + "xHandle": "thefirmjeff", + "xUrl": "https://twitter.com/thefirmjeff", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd73b6ad2fc2e4a5319dff7f5aa8c9287aaa9f1a3", + "balanceRaw": "68429594345879239272", + "balanceFormatted": "68.429594345879239272", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd73b6ad2fc2e4a5319dff7f5aa8c9287aaa9f1a3", + "etherscanUrl": "https://etherscan.io/address/0xd73b6ad2fc2e4a5319dff7f5aa8c9287aaa9f1a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba8ef337f2bc5efc7e3c7b33a9ecf2f89cfe4a2c", + "balanceRaw": "68292238541836534276", + "balanceFormatted": "68.292238541836534276", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba8ef337f2bc5efc7e3c7b33a9ecf2f89cfe4a2c", + "etherscanUrl": "https://etherscan.io/address/0xba8ef337f2bc5efc7e3c7b33a9ecf2f89cfe4a2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3fcf39eca3a6277f9d7c4aa6764c89e325135da8", + "balanceRaw": "68265178147854180763", + "balanceFormatted": "68.265178147854180763", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fcf39eca3a6277f9d7c4aa6764c89e325135da8", + "etherscanUrl": "https://etherscan.io/address/0x3fcf39eca3a6277f9d7c4aa6764c89e325135da8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x854cf23a60cdbc1dd833f20ce508264d54989a9a", + "balanceRaw": "68129882748046312914", + "balanceFormatted": "68.129882748046312914", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x854cf23a60cdbc1dd833f20ce508264d54989a9a", + "etherscanUrl": "https://etherscan.io/address/0x854cf23a60cdbc1dd833f20ce508264d54989a9a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x47655c3b13dd14a54f8ae3cf17cfda12f7f91cd7", + "balanceRaw": "67945062512810601341", + "balanceFormatted": "67.945062512810601341", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47655c3b13dd14a54f8ae3cf17cfda12f7f91cd7", + "etherscanUrl": "https://etherscan.io/address/0x47655c3b13dd14a54f8ae3cf17cfda12f7f91cd7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x93d138c902aadce90958e78f00f9ea40226de573", + "balanceRaw": "67558128206616537516", + "balanceFormatted": "67.558128206616537516", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93d138c902aadce90958e78f00f9ea40226de573", + "etherscanUrl": "https://etherscan.io/address/0x93d138c902aadce90958e78f00f9ea40226de573", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x30993356d3994784c37e2901b790df4071fcc890", + "balanceRaw": "67400275382257062470", + "balanceFormatted": "67.40027538225706247", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30993356d3994784c37e2901b790df4071fcc890", + "etherscanUrl": "https://etherscan.io/address/0x30993356d3994784c37e2901b790df4071fcc890", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbbb7e4fd168f1f2bf573599ecf63d2083ec392ed", + "balanceRaw": "67224580474508626576", + "balanceFormatted": "67.224580474508626576", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbb7e4fd168f1f2bf573599ecf63d2083ec392ed", + "etherscanUrl": "https://etherscan.io/address/0xbbb7e4fd168f1f2bf573599ecf63d2083ec392ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc5844aceac95d63ab4e7a38e3fed9777ad1946d5", + "balanceRaw": "67152339158612096074", + "balanceFormatted": "67.152339158612096074", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5844aceac95d63ab4e7a38e3fed9777ad1946d5", + "etherscanUrl": "https://etherscan.io/address/0xc5844aceac95d63ab4e7a38e3fed9777ad1946d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x675b29b816eda75d921e3033e9037549e185d4e4", + "balanceRaw": "67000000000000000000", + "balanceFormatted": "67", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x675b29b816eda75d921e3033e9037549e185d4e4", + "etherscanUrl": "https://etherscan.io/address/0x675b29b816eda75d921e3033e9037549e185d4e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4de90cc3f8cc8ce1cbf3c30a9f7111f67bcff285", + "balanceRaw": "66942671089143183581", + "balanceFormatted": "66.942671089143183581", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4de90cc3f8cc8ce1cbf3c30a9f7111f67bcff285", + "etherscanUrl": "https://etherscan.io/address/0x4de90cc3f8cc8ce1cbf3c30a9f7111f67bcff285", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3ac7cc1d51fe5d580ca4cc7143a83f7cb17fe33", + "balanceRaw": "66868548168410523068", + "balanceFormatted": "66.868548168410523068", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3ac7cc1d51fe5d580ca4cc7143a83f7cb17fe33", + "etherscanUrl": "https://etherscan.io/address/0xf3ac7cc1d51fe5d580ca4cc7143a83f7cb17fe33", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4d678f4662b0c8454ff80a7089e0ed1f879a585b", + "balanceRaw": "66803219490505711684", + "balanceFormatted": "66.803219490505711684", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d678f4662b0c8454ff80a7089e0ed1f879a585b", + "etherscanUrl": "https://etherscan.io/address/0x4d678f4662b0c8454ff80a7089e0ed1f879a585b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x372d991eb63bdc4ed118fcdeed27e7d0a729f2fc", + "balanceRaw": "66620291634027701011", + "balanceFormatted": "66.620291634027701011", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x372d991eb63bdc4ed118fcdeed27e7d0a729f2fc", + "etherscanUrl": "https://etherscan.io/address/0x372d991eb63bdc4ed118fcdeed27e7d0a729f2fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212532", + "balanceRaw": "66488832304170397683", + "balanceFormatted": "66.488832304170397683", + "lastTransferAt": null, + "username": "!212532", + "displayName": null, + "fid": 212532, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39efcac054b978053b1febaf98b11d6f0ee6dd41", + "etherscanUrl": "https://etherscan.io/address/0x39efcac054b978053b1febaf98b11d6f0ee6dd41", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214447", + "balanceRaw": "66073397116114486661", + "balanceFormatted": "66.073397116114486661", + "lastTransferAt": null, + "username": "yes2crypto.eth", + "displayName": "YES2Crypto 🎩 🟪🟡", + "fid": 214447, + "followers": 21249, + "pfpUrl": "https://i.imgur.com/dBoVmnG.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "etherscanUrl": "https://etherscan.io/address/0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "xHandle": "yes2crypto1", + "xUrl": "https://twitter.com/yes2crypto1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec7097711548ec53e96828f0052caec7315a8362", + "balanceRaw": "65911626518389645470", + "balanceFormatted": "65.91162651838964547", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec7097711548ec53e96828f0052caec7315a8362", + "etherscanUrl": "https://etherscan.io/address/0xec7097711548ec53e96828f0052caec7315a8362", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6ca424d6582c92fa69d5b24ca493b6664179f53c", + "balanceRaw": "65572783965415973493", + "balanceFormatted": "65.572783965415973493", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ca424d6582c92fa69d5b24ca493b6664179f53c", + "etherscanUrl": "https://etherscan.io/address/0x6ca424d6582c92fa69d5b24ca493b6664179f53c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc854907fcddb0a50ad8fcee46b7935c9cc01dc03", + "balanceRaw": "65096540156488229595", + "balanceFormatted": "65.096540156488229595", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc854907fcddb0a50ad8fcee46b7935c9cc01dc03", + "etherscanUrl": "https://etherscan.io/address/0xc854907fcddb0a50ad8fcee46b7935c9cc01dc03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188294", + "balanceRaw": "65009193255557027297", + "balanceFormatted": "65.009193255557027297", + "lastTransferAt": null, + "username": "cryptofortochka", + "displayName": "CryptoFortochka.base.eth", + "fid": 188294, + "followers": 1955, + "pfpUrl": "https://i.imgur.com/YbMFVED.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c7298bc25ce5c0d5a072091a657040106a7ddca", + "etherscanUrl": "https://etherscan.io/address/0x6c7298bc25ce5c0d5a072091a657040106a7ddca", + "xHandle": "keeperssd", + "xUrl": "https://twitter.com/keeperssd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbe2aa8cca5beb324c85cb65252a683eed918c49b", + "balanceRaw": "65000000000000000083", + "balanceFormatted": "65.000000000000000083", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe2aa8cca5beb324c85cb65252a683eed918c49b", + "etherscanUrl": "https://etherscan.io/address/0xbe2aa8cca5beb324c85cb65252a683eed918c49b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99a318ca087f8b0d6296cd87a8e7f1955d6c1866", + "balanceRaw": "64959366641526581681", + "balanceFormatted": "64.959366641526581681", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99a318ca087f8b0d6296cd87a8e7f1955d6c1866", + "etherscanUrl": "https://etherscan.io/address/0x99a318ca087f8b0d6296cd87a8e7f1955d6c1866", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb16246c92a0b95d64a89b872f6d763f71cb5bcf9", + "balanceRaw": "64894217745404435694", + "balanceFormatted": "64.894217745404435694", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb16246c92a0b95d64a89b872f6d763f71cb5bcf9", + "etherscanUrl": "https://etherscan.io/address/0xb16246c92a0b95d64a89b872f6d763f71cb5bcf9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5290075a7b70a859ef45b1913c9f2357280e20e0", + "balanceRaw": "64840432487835618674", + "balanceFormatted": "64.840432487835618674", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5290075a7b70a859ef45b1913c9f2357280e20e0", + "etherscanUrl": "https://etherscan.io/address/0x5290075a7b70a859ef45b1913c9f2357280e20e0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb66e0d13f9c099e2e185fb5dafb8f59f0dc744a3", + "balanceRaw": "64780473400926539264", + "balanceFormatted": "64.780473400926539264", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb66e0d13f9c099e2e185fb5dafb8f59f0dc744a3", + "etherscanUrl": "https://etherscan.io/address/0xb66e0d13f9c099e2e185fb5dafb8f59f0dc744a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3798bd9990db87e7388d2c31bac0c91d7094a9fe", + "balanceRaw": "64649266103247128004", + "balanceFormatted": "64.649266103247128004", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3798bd9990db87e7388d2c31bac0c91d7094a9fe", + "etherscanUrl": "https://etherscan.io/address/0x3798bd9990db87e7388d2c31bac0c91d7094a9fe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_534680", + "balanceRaw": "64425662790661169157", + "balanceFormatted": "64.425662790661169157", + "lastTransferAt": null, + "username": "aiur", + "displayName": "auurrr", + "fid": 534680, + "followers": 11, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9c44011-8f8e-468d-4308-f918b938d500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda9009a9fd2150e38562886336a3268859ed8155", + "etherscanUrl": "https://etherscan.io/address/0xda9009a9fd2150e38562886336a3268859ed8155", + "xHandle": "run_zealot", + "xUrl": "https://twitter.com/run_zealot", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x03f40b0ffa3c7a0fdf1098a1b4f856081e31179f", + "balanceRaw": "64270596806108040008", + "balanceFormatted": "64.270596806108040008", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03f40b0ffa3c7a0fdf1098a1b4f856081e31179f", + "etherscanUrl": "https://etherscan.io/address/0x03f40b0ffa3c7a0fdf1098a1b4f856081e31179f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5be7fdfbffeb5cf3a24bd3f350a7265bda0b5b02", + "balanceRaw": "64097006576129000000", + "balanceFormatted": "64.097006576129", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5be7fdfbffeb5cf3a24bd3f350a7265bda0b5b02", + "etherscanUrl": "https://etherscan.io/address/0x5be7fdfbffeb5cf3a24bd3f350a7265bda0b5b02", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_211186", + "balanceRaw": "64000045321072781772", + "balanceFormatted": "64.000045321072781772", + "lastTransferAt": null, + "username": "0xgymleader", + "displayName": "Ray", + "fid": 211186, + "followers": 8824, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42057236-b8e9-4ef6-b809-4339c2086600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x79cc495a6b7b5120430d875af1e31c32705a2712", + "etherscanUrl": "https://etherscan.io/address/0x79cc495a6b7b5120430d875af1e31c32705a2712", + "xHandle": "avocado_papi", + "xUrl": "https://twitter.com/avocado_papi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3346", + "balanceRaw": "63826299274332819026", + "balanceFormatted": "63.826299274332819026", + "lastTransferAt": null, + "username": "haole", + "displayName": "Haole", + "fid": 3346, + "followers": 16779, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b61cfa2-f9b0-4d21-452e-3bfa88779e00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6278fa6b38f429e58c4821dd61fc8fc6b20cc4f", + "etherscanUrl": "https://etherscan.io/address/0xc6278fa6b38f429e58c4821dd61fc8fc6b20cc4f", + "xHandle": "0xhaole", + "xUrl": "https://twitter.com/0xhaole", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe7958e5e481ebb8c079c58535dbd9c10b1c35f29", + "balanceRaw": "63710972810854368598", + "balanceFormatted": "63.710972810854368598", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7958e5e481ebb8c079c58535dbd9c10b1c35f29", + "etherscanUrl": "https://etherscan.io/address/0xe7958e5e481ebb8c079c58535dbd9c10b1c35f29", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcf85946b004cc8453b067299a28dfb1de5ea33ba", + "balanceRaw": "63670194069905270394", + "balanceFormatted": "63.670194069905270394", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf85946b004cc8453b067299a28dfb1de5ea33ba", + "etherscanUrl": "https://etherscan.io/address/0xcf85946b004cc8453b067299a28dfb1de5ea33ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x96b0425c29ab7664d80c4754b681f5907172ec7c", + "balanceRaw": "63614135689217926519", + "balanceFormatted": "63.614135689217926519", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96b0425c29ab7664d80c4754b681f5907172ec7c", + "etherscanUrl": "https://etherscan.io/address/0x96b0425c29ab7664d80c4754b681f5907172ec7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1204f8ba2c563cb289d7e9732430b8c824c5e5e0", + "balanceRaw": "63555812983350414556", + "balanceFormatted": "63.555812983350414556", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1204f8ba2c563cb289d7e9732430b8c824c5e5e0", + "etherscanUrl": "https://etherscan.io/address/0x1204f8ba2c563cb289d7e9732430b8c824c5e5e0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x23e5ce857e1b970bb63ce7379dba94678f421392", + "balanceRaw": "63219548003598924601", + "balanceFormatted": "63.219548003598924601", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23e5ce857e1b970bb63ce7379dba94678f421392", + "etherscanUrl": "https://etherscan.io/address/0x23e5ce857e1b970bb63ce7379dba94678f421392", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8570dadda6094b9e309e922bd784f324493da2c9", + "balanceRaw": "63184170115318491006", + "balanceFormatted": "63.184170115318491006", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8570dadda6094b9e309e922bd784f324493da2c9", + "etherscanUrl": "https://etherscan.io/address/0x8570dadda6094b9e309e922bd784f324493da2c9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9070a27459173abc768e023d0838908b537fd7c7", + "balanceRaw": "63139478371865682429", + "balanceFormatted": "63.139478371865682429", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9070a27459173abc768e023d0838908b537fd7c7", + "etherscanUrl": "https://etherscan.io/address/0x9070a27459173abc768e023d0838908b537fd7c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf39f07e3ad2ce01e2ef826074e41d721d04d4f2f", + "balanceRaw": "63093765884466999888", + "balanceFormatted": "63.093765884466999888", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf39f07e3ad2ce01e2ef826074e41d721d04d4f2f", + "etherscanUrl": "https://etherscan.io/address/0xf39f07e3ad2ce01e2ef826074e41d721d04d4f2f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64e94a4b2fd134f4ac6a6f50d4b909d477507708", + "balanceRaw": "62950614516641944960", + "balanceFormatted": "62.95061451664194496", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64e94a4b2fd134f4ac6a6f50d4b909d477507708", + "etherscanUrl": "https://etherscan.io/address/0x64e94a4b2fd134f4ac6a6f50d4b909d477507708", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9967b1e5ae9c9335c571084c49d91ccf3f339bdd", + "balanceRaw": "62768666198575218709", + "balanceFormatted": "62.768666198575218709", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9967b1e5ae9c9335c571084c49d91ccf3f339bdd", + "etherscanUrl": "https://etherscan.io/address/0x9967b1e5ae9c9335c571084c49d91ccf3f339bdd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5fb61612fdd87ab753ca6b76e811e3c6dba1936d", + "balanceRaw": "62032341101064107874", + "balanceFormatted": "62.032341101064107874", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fb61612fdd87ab753ca6b76e811e3c6dba1936d", + "etherscanUrl": "https://etherscan.io/address/0x5fb61612fdd87ab753ca6b76e811e3c6dba1936d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_194418", + "balanceRaw": "61740099886947776498", + "balanceFormatted": "61.740099886947776498", + "lastTransferAt": null, + "username": "lilou", + "displayName": "Lilou", + "fid": 194418, + "followers": 268, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/414517b0-ccee-4279-d28f-a9e90f8f9500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65399efb5c2a2b66666930b5b3add78414e3828a", + "etherscanUrl": "https://etherscan.io/address/0x65399efb5c2a2b66666930b5b3add78414e3828a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7fb7350a682b2587cffde67f06505a5d71590159", + "balanceRaw": "61655608773630023638", + "balanceFormatted": "61.655608773630023638", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7fb7350a682b2587cffde67f06505a5d71590159", + "etherscanUrl": "https://etherscan.io/address/0x7fb7350a682b2587cffde67f06505a5d71590159", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff64de5e1b35fccf31787d3f53dd6cf1ef56122c", + "balanceRaw": "61452226628679409994", + "balanceFormatted": "61.452226628679409994", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff64de5e1b35fccf31787d3f53dd6cf1ef56122c", + "etherscanUrl": "https://etherscan.io/address/0xff64de5e1b35fccf31787d3f53dd6cf1ef56122c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3ccac7039f086df4b90e3f194f5404828c79c4b7", + "balanceRaw": "61387264144392294437", + "balanceFormatted": "61.387264144392294437", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ccac7039f086df4b90e3f194f5404828c79c4b7", + "etherscanUrl": "https://etherscan.io/address/0x3ccac7039f086df4b90e3f194f5404828c79c4b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29d5d519ff451eb411db50f7fdc455dcf85380e4", + "balanceRaw": "61349129533629595100", + "balanceFormatted": "61.3491295336295951", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29d5d519ff451eb411db50f7fdc455dcf85380e4", + "etherscanUrl": "https://etherscan.io/address/0x29d5d519ff451eb411db50f7fdc455dcf85380e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed3d8c67401b913f1fddd137023d355a54392e5c", + "balanceRaw": "61341781054517116429", + "balanceFormatted": "61.341781054517116429", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed3d8c67401b913f1fddd137023d355a54392e5c", + "etherscanUrl": "https://etherscan.io/address/0xed3d8c67401b913f1fddd137023d355a54392e5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + } + ], + "tokenSymbol": null, + "tokenDecimals": 18, + "lastUpdatedTimestamp": "2025-11-17T21:46:18.757Z", + "lastFetchSettings": { + "source": "tokenHolders", + "network": "base", + "contractAddress": "0x1bc0c42215582d5a085795f4badbac3ff36d1bcb", + "assetType": "token" + } +} diff --git a/src/config/clanker/initialSpaces/index.ts b/src/config/clanker/initialSpaces/index.ts new file mode 100644 index 000000000..74ff4e240 --- /dev/null +++ b/src/config/clanker/initialSpaces/index.ts @@ -0,0 +1,6 @@ +// Export the initial space creators from nouns config +export { default as createInitialProfileSpaceConfigForFid } from './initialProfileSpace'; +export { default as createInitialChannelSpaceConfig } from './initialChannelSpace'; +export { default as createInitialTokenSpaceConfigForAddress } from './initialTokenSpace'; +export { default as createInitalProposalSpaceConfigForProposalId } from './initialProposalSpace'; +export { default as INITIAL_HOMEBASE_CONFIG } from './initialHomebase'; diff --git a/src/constants/initialChannelSpace.ts b/src/config/clanker/initialSpaces/initialChannelSpace.ts similarity index 94% rename from src/constants/initialChannelSpace.ts rename to src/config/clanker/initialSpaces/initialChannelSpace.ts index c30304239..3980bab28 100644 --- a/src/constants/initialChannelSpace.ts +++ b/src/config/clanker/initialSpaces/initialChannelSpace.ts @@ -2,7 +2,7 @@ import { SpaceConfig } from "@/app/(spaces)/Space"; import { FilterType, FeedType } from "@neynar/nodejs-sdk/build/api"; import { cloneDeep } from "lodash"; import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; -import { INITIAL_SPACE_CONFIG_EMPTY } from "./initialSpaceConfig"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; const INITIAL_CHANNEL_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); INITIAL_CHANNEL_SPACE_CONFIG.tabNames = ["Channel"]; diff --git a/src/config/clanker/initialSpaces/initialHomebase.ts b/src/config/clanker/initialSpaces/initialHomebase.ts new file mode 100644 index 000000000..b03ea8812 --- /dev/null +++ b/src/config/clanker/initialSpaces/initialHomebase.ts @@ -0,0 +1,112 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import DEFAULT_THEME from "@/common/lib/theme/defaultTheme"; + +const tutorialText = ` +### 🖌️ Click the paintbrush in the bottom-left corner to open Customization Mode + +### Add Fidgets +1. Click the blue **+** button. +2. Drag a Fidget to an open spot on the grid. +3. Click Save + +(after saving, scroll down here for more instructions) + +![Add Fidget2](https://space.mypinata.cloud/ipfs/bafkreiczpd2bzyoboj6uxr65kta5cmg3bziveq2nz5egx4fuxr2nmkthru) + +### Customize Fidgets +1. From customization mode, click any Fidget on the grid to open its settings. +2. Click 'Style' to customize a fidget's look. Any Fidget styles set to "Theme" inherit their look from the Tab's theme. + +![EditFidget](https://space.mypinata.cloud/ipfs/bafybeihcjkbcljxr4ttgt6xcxmsc4m4qvw62hkolifmd3t5pdc7kvj5nji) + +### Arrange Fidgets +- **Move:** Drag from the center +![move fidget](https://space.mypinata.cloud/ipfs/QmYWvdpdiyKwjVAqjhcFTBkiTUnc8rF4p2EGg3C4sTRsr6) +- **Resize:** Drag from an edge or corner +![Resize Fidget](https://space.mypinata.cloud/ipfs/bafybeifmssfizx5xjmmqyc6wwqxgs2xdhhbdtnvldtj276mfdul3eacmwu) +- **Stash in Fidget Tray:** Click a fidget then click ⇱ to save it for later. +![image](https://space.mypinata.cloud/ipfs/bafkreigy7ymnuwertvr6bn4bmwfe3vu3vvw4r6ekkzv6prs4zwlibsjtya) +- **Delete:** Click a fidget then click X it to delete it forever. +![image](https://space.mypinata.cloud/ipfs/bafkreieucvjlovm7wq5ftcvvvcv52sujnqqjwji5epoigb2ycumhmgrtfy) + +### Customize Theme +- **Templates:** Select a pre-made Theme. Then, customize it further to make it your own. +- **Style:** Set a background color for the Tab, or set the default styles for all Fidgets on the Tab. +- **Fonts:** Set the default header and body fonts for Fidgets on the Tab. +- **Code:** Add HTML/CSS to fully customize the Tab's background, or generate a custom background with a prompt. + +![Edit Theme2](https://space.mypinata.cloud/ipfs/bafybeietizt4vgyaiv62ytn25ztanusjmbcw6iwm3v2gedcpipr6koxh3e) + +### Customize Music +Add a soundtrack to each Tab. Search for or paste the link to any song or playlist on YouTube, or select a music NFT. + +![customize music](https://space.mypinata.cloud/ipfs/bafkreigtslrp3kjj42gp25bxd5nubs47qx22ivj3pkm3tc7j3fbqt3b5hy) + +### Homebase vs. Space +**Your Space** is your public profile that everyone can see. +**Your Homebase** is a private dashboard that only you can see. + +You can use the same tricks and Fidgets to customize them both. Use your **Homebase** to access the content, communities, and functionality you love, and use your **Space** to share the content and functionality you love with your friends. + +### Questions or feedback? + +Tag [@nounspacetom](https://nounspace.com/s/nounspacetom) in a cast or join our [Discord](https://discord.gg/H8EYnEmj6q). + +### Happy customizing! +`; + +const clankerManagerFidgetID = "ClankerManager:clanker-manager"; + +const layoutID = ""; +const createInitialHomebaseConfig = (userAddress?: string): SpaceConfig => { + return { + layoutID, + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 6, + h: 8, + x: 0, + y: 0, + i: clankerManagerFidgetID, + moved: false, + static: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: DEFAULT_THEME, + fidgetInstanceDatums: { + [clankerManagerFidgetID]: { + config: { + editable: true, + settings: { + deployerAddress: userAddress || "", + rewardRecipientAddress: "", + accentColor: "#2563eb", + primaryFontFamily: "var(--user-theme-font)", + primaryFontColor: "var(--user-theme-font-color)", + secondaryFontFamily: "var(--user-theme-headings-font)", + secondaryFontColor: "var(--user-theme-headings-font-color)", + background: "var(--user-theme-fidget-background)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + data: {}, + }, + fidgetType: "ClankerManager", + id: clankerManagerFidgetID, + }, + }, + isEditable: false, + fidgetTrayContents: [], + }; +}; + +// Export both function and default constant for backward compatibility +const INITIAL_HOMEBASE_CONFIG = createInitialHomebaseConfig(); +export default INITIAL_HOMEBASE_CONFIG; +export { createInitialHomebaseConfig }; \ No newline at end of file diff --git a/src/config/clanker/initialSpaces/initialProfileSpace.ts b/src/config/clanker/initialSpaces/initialProfileSpace.ts new file mode 100644 index 000000000..6d874fe06 --- /dev/null +++ b/src/config/clanker/initialSpaces/initialProfileSpace.ts @@ -0,0 +1,118 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { FeedType, FilterType } from "@neynar/nodejs-sdk/build/api"; +import { cloneDeep } from "lodash"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; + +// Set default tabNames for profile spaces +const INITIAL_PROFILE_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); +INITIAL_PROFILE_SPACE_CONFIG.tabNames = ["Profile"]; + +const createInitialProfileSpaceConfigForFid = ( + fid: number, + username?: string, + walletAddress?: string, +): Omit => { + const config = cloneDeep(INITIAL_PROFILE_SPACE_CONFIG); + config.fidgetInstanceDatums = { + "feed:profile": { + config: { + editable: false, + settings: { + feedType: FeedType.Filter, + users: fid, + filterType: FilterType.Fids, + }, + data: {}, + }, + fidgetType: "feed", + id: "feed:profile", + }, + "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e": { + config: { + editable: false, + settings: { + trackType: "farcaster", + farcasterUsername: username ?? "", + walletAddresses: "", + }, + data: {}, + }, + fidgetType: "Portfolio", + id: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", + }, + "ClankerManager:clanker-manager": { + config: { + editable: false, + settings: { + deployerAddress: walletAddress || "", + rewardRecipientAddress: "", + accentColor: "#2563eb", + primaryFontFamily: "var(--user-theme-font)", + primaryFontColor: "var(--user-theme-font-color)", + secondaryFontFamily: "var(--user-theme-headings-font)", + secondaryFontColor: "var(--user-theme-headings-font-color)", + background: "var(--user-theme-fidget-background)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + data: {}, + }, + fidgetType: "ClankerManager", + id: "ClankerManager:clanker-manager", + }, + }; + const layoutItems = [ + { + w: 4, + h: 8, + x: 0, + y: 0, + i: "feed:profile", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + { + w: 4, + h: 8, + x: 4, + y: 0, + i: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", + minW: 3, + maxW: 36, + minH: 3, + maxH: 36, + moved: false, + static: false, + }, + { + w: 4, + h: 8, + x: 8, + y: 0, + i: "ClankerManager:clanker-manager", + minW: 3, + maxW: 36, + minH: 3, + maxH: 36, + moved: false, + static: false, + }, + ]; + + // Set the layout configuration + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = layoutItems; + + // Set default tab names + config.tabNames = ["Profile"]; + + return config; +}; + +export default createInitialProfileSpaceConfigForFid; diff --git a/src/constants/initialProposalSpace.ts b/src/config/clanker/initialSpaces/initialProposalSpace.ts similarity index 98% rename from src/constants/initialProposalSpace.ts rename to src/config/clanker/initialSpaces/initialProposalSpace.ts index 22853f051..e555345a0 100644 --- a/src/constants/initialProposalSpace.ts +++ b/src/config/clanker/initialSpaces/initialProposalSpace.ts @@ -1,6 +1,6 @@ import { SpaceConfig } from "@/app/(spaces)/Space"; import { cloneDeep } from "lodash"; -import { INITIAL_SPACE_CONFIG_EMPTY } from "./initialSpaceConfig"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; import { Address } from "viem"; export const createInitalProposalSpaceConfigForProposalId = ( diff --git a/src/constants/initialTokenSpace.ts b/src/config/clanker/initialSpaces/initialTokenSpace.ts similarity index 99% rename from src/constants/initialTokenSpace.ts rename to src/config/clanker/initialSpaces/initialTokenSpace.ts index ed43d0db9..c5073ffc7 100644 --- a/src/constants/initialTokenSpace.ts +++ b/src/config/clanker/initialSpaces/initialTokenSpace.ts @@ -1,8 +1,8 @@ import { SpaceConfig } from "@/app/(spaces)/Space"; import { cloneDeep } from "lodash"; -import { INITIAL_SPACE_CONFIG_EMPTY } from "./initialSpaceConfig"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; import { getNetworkWithId } from "@/common/lib/utils/networks"; -import { EtherScanChainName } from "./etherscanChainIds"; +import { EtherScanChainName } from "../../../constants/etherscanChainIds"; import { getGeckoUrl } from "@/common/lib/utils/links"; import { Address } from "viem"; import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; diff --git a/src/config/createExplorePageConfig.ts b/src/config/createExplorePageConfig.ts new file mode 100644 index 000000000..bdc3909ba --- /dev/null +++ b/src/config/createExplorePageConfig.ts @@ -0,0 +1,262 @@ +import DEFAULT_THEME from "@/common/lib/theme/defaultTheme"; +import type { + ExplorePageConfig, + TabConfig, +} from "./systemConfig"; +import type { + DirectoryFidgetSettings, + DirectoryNetwork, + DirectoryChannelFilterOption, + DirectoryAssetType, + DirectoryFidgetData, +} from "@/fidgets/token/Directory/types"; + +const FULL_WIDTH = 12; +const FULL_HEIGHT = 24; +const RESIZE_HANDLES = ["s", "w", "e", "n", "sw", "nw", "se", "ne"] as const; + +const createTabTheme = (idSuffix: string) => ({ + id: `explore-${idSuffix}-theme`, + name: `${DEFAULT_THEME.name} Explore`, + properties: { + ...DEFAULT_THEME.properties, + fidgetBorderRadius: "0px", + gridSpacing: "0", + }, +}); + +type TokenNetworkInput = DirectoryNetwork | "eth"; + +type TokenInput = { + address: string; + symbol: string; + network?: TokenNetworkInput; + assetType?: DirectoryAssetType; +}; + +type CreateExplorePageConfigOptions = { + tokens?: TokenInput[]; + channel?: string | null; + defaultTokenNetwork?: DirectoryNetwork; + channelNetwork?: DirectoryNetwork; + preloadedDirectoryData?: Record; +}; + +const sanitizeTabKey = (value: string, fallback: string) => { + const trimmed = value.trim(); + return trimmed.length > 0 ? trimmed : fallback; +}; + +const slugify = (value: string, fallback: string) => { + const normalized = value + .toLowerCase() + .replace(/[^a-z0-9]+/g, "-") + .replace(/^-+|-+$/g, ""); + return normalized.length > 0 ? normalized : fallback; +}; + +const createDirectoryFidgetId = (suffix: string) => `Directory:${suffix}`; + +const BASE_DIRECTORY_SETTINGS: Pick< + DirectoryFidgetSettings, + | "layoutStyle" + | "include" + | "mobileDisplayName" + | "primaryFontFamily" + | "primaryFontColor" + | "secondaryFontFamily" + | "secondaryFontColor" +> = { + layoutStyle: "cards", + include: "holdersWithFarcasterAccount", + mobileDisplayName: undefined, + primaryFontFamily: undefined, + primaryFontColor: undefined, + secondaryFontFamily: undefined, + secondaryFontColor: undefined, +}; + +const getPreloadedDirectoryData = ( + tabKey: string, + idSuffix: string, + preloadedDirectoryData?: Record, +): DirectoryFidgetData | undefined => + preloadedDirectoryData?.[tabKey] ?? preloadedDirectoryData?.[idSuffix]; + +const buildTabConfig = ( + name: string, + idSuffix: string, + settings: DirectoryFidgetSettings, + preloadedData?: DirectoryFidgetData, +): TabConfig => { + const fidgetId = createDirectoryFidgetId(idSuffix); + + return { + name, + displayName: name, + layoutID: `explore-${idSuffix}-layout`, + layoutDetails: { + layoutFidget: "grid", + layoutConfig: { + layout: [ + { + w: FULL_WIDTH, + h: FULL_HEIGHT, + x: 0, + y: 0, + i: fidgetId, + minW: FULL_WIDTH, + maxW: FULL_WIDTH, + minH: 8, + maxH: 36, + moved: false, + static: false, + resizeHandles: [...RESIZE_HANDLES], + isBounded: false, + }, + ], + }, + }, + theme: createTabTheme(idSuffix), + fidgetInstanceDatums: { + [fidgetId]: { + config: { + data: preloadedData ?? {}, + editable: false, + settings, + }, + fidgetType: "Directory", + id: fidgetId, + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: new Date().toISOString(), + }; +}; + +const normalizeTokenNetwork = ( + network: TokenNetworkInput | undefined, + defaultNetwork: DirectoryNetwork, +): DirectoryNetwork => { + if (!network) { + return defaultNetwork; + } + + if (network === "eth") { + return "mainnet"; + } + + return network; +}; + +const buildTokenDirectorySettings = ( + token: TokenInput, + defaultNetwork: DirectoryNetwork, +): DirectoryFidgetSettings => ({ + ...BASE_DIRECTORY_SETTINGS, + source: "tokenHolders", + network: normalizeTokenNetwork(token.network, defaultNetwork), + contractAddress: token.address, + assetType: token.assetType ?? "token", + sortBy: "tokenHoldings", +}); + +const buildChannelDirectorySettings = ( + channel: string, + channelNetwork: DirectoryNetwork, +): DirectoryFidgetSettings => ({ + ...BASE_DIRECTORY_SETTINGS, + source: "farcasterChannel", + network: channelNetwork, + contractAddress: "", + assetType: "token", + sortBy: "followers", + channelName: channel, + channelFilter: "members" as DirectoryChannelFilterOption, +}); + +export const createExplorePageConfig = ({ + tokens = [], + channel, + defaultTokenNetwork = "mainnet", + channelNetwork = "base", + preloadedDirectoryData, +}: CreateExplorePageConfigOptions): ExplorePageConfig => { + const tabEntries: Array<{ key: string; config: TabConfig }> = []; + const seenTabNames = new Set(); + + tokens.forEach((token, index) => { + if (!token?.address || !token.symbol) { + return; + } + + const tabName = sanitizeTabKey(token.symbol, `Token ${index + 1}`); + if (seenTabNames.has(tabName)) { + return; + } + + seenTabNames.add(tabName); + const idSuffix = slugify(tabName, `token-${index + 1}`); + const settings = buildTokenDirectorySettings(token, defaultTokenNetwork); + const preloadedData = getPreloadedDirectoryData(tabName, idSuffix, preloadedDirectoryData); + tabEntries.push({ + key: tabName, + config: buildTabConfig(tabName, idSuffix, settings, preloadedData), + }); + }); + + const normalizedChannel = channel?.trim().replace(/^\/+/, ""); + if (normalizedChannel) { + const tabName = "channel"; + const idSuffix = slugify(`channel-${normalizedChannel}`, `channel-${tabEntries.length + 1}`); + const settings = buildChannelDirectorySettings(normalizedChannel, channelNetwork); + const preloadedData = getPreloadedDirectoryData(tabName, idSuffix, preloadedDirectoryData); + tabEntries.push({ + key: tabName, + config: buildTabConfig(tabName, idSuffix, settings, preloadedData), + }); + } + + if (tabEntries.length === 0) { + const fallbackName = "Directory"; + const settings: DirectoryFidgetSettings = { + ...BASE_DIRECTORY_SETTINGS, + source: "tokenHolders", + network: defaultTokenNetwork, + contractAddress: "", + assetType: "token", + sortBy: "tokenHoldings", + }; + tabEntries.push({ + key: fallbackName, + config: buildTabConfig(fallbackName, slugify(fallbackName, "directory"), settings), + }); + } + + const tabOrder = tabEntries.map((entry) => entry.key); + const tabs = tabEntries.reduce>((acc, entry) => { + acc[entry.key] = entry.config; + return acc; + }, {}); + + const defaultTab = tabOrder[0]; + + return { + defaultTab, + tabOrder, + tabs, + layout: { + defaultLayoutFidget: "grid", + gridSpacing: 0, + theme: { + background: DEFAULT_THEME.properties.background, + fidgetBackground: DEFAULT_THEME.properties.fidgetBackground, + font: DEFAULT_THEME.properties.font, + fontColor: DEFAULT_THEME.properties.fontColor, + }, + }, + }; +}; + +export type { CreateExplorePageConfigOptions }; diff --git a/src/config/example/example.assets.ts b/src/config/example/example.assets.ts new file mode 100644 index 000000000..03a31eb18 --- /dev/null +++ b/src/config/example/example.assets.ts @@ -0,0 +1,10 @@ +export const exampleAssets = { + logos: { + main: "/images/example_logo.png", + icon: "/images/example_icon.png", + favicon: "/images/example_favicon.ico", + appleTouch: "/images/example_apple_touch.png", + og: "/images/example_og.png", + splash: "/images/example_splash.png", + }, +}; diff --git a/src/config/example/example.brand.ts b/src/config/example/example.brand.ts new file mode 100644 index 000000000..12f8fffd9 --- /dev/null +++ b/src/config/example/example.brand.ts @@ -0,0 +1,7 @@ +export const exampleBrand = { + name: "Example", + displayName: "Example Community", + tagline: "A space for Example Community", + description: "The social hub for Example Community", + miniAppTags: [], +}; diff --git a/src/config/example/example.community.ts b/src/config/example/example.community.ts new file mode 100644 index 000000000..f51537aca --- /dev/null +++ b/src/config/example/example.community.ts @@ -0,0 +1,51 @@ +import { Address } from "viem"; +import type { + CommunityConfig, + CommunityErc20Token, + CommunityNftToken, +} from "../systemConfig"; + +export const exampleCommunity = { + type: 'example', + urls: { + website: 'https://example.com', + discord: 'https://discord.gg/example', + twitter: 'https://twitter.com/example', + github: 'https://github.com/example', + forum: 'https://forum.example.com', + }, + social: { + farcaster: 'example', + discord: 'example', + twitter: 'example', + }, + governance: { + proposals: 'https://governance.example.com/proposals', + delegates: 'https://governance.example.com/delegates', + treasury: 'https://governance.example.com/treasury', + }, + tokens: { + erc20Tokens: [ + { + address: '0x1234567890123456789012345678901234567890', + symbol: '$EXAMPLE', + decimals: 18, + network: 'mainnet', + }, + ] satisfies CommunityErc20Token[], + nftTokens: [ + { + address: '0x1234567890123456789012345678901234567890', + symbol: 'Example NFT', + type: 'erc721', + network: 'eth', + }, + ] satisfies CommunityNftToken[], + }, + contracts: { + nouns: '0x1234567890123456789012345678901234567890' as Address, + auctionHouse: '0x1234567890123456789012345678901234567890' as Address, + space: '0x1234567890123456789012345678901234567890' as Address, + nogs: '0x1234567890123456789012345678901234567890' as Address, + }, +} satisfies CommunityConfig; diff --git a/src/config/example/example.explore.ts b/src/config/example/example.explore.ts new file mode 100644 index 000000000..0791a59cf --- /dev/null +++ b/src/config/example/example.explore.ts @@ -0,0 +1,23 @@ +import { createExplorePageConfig } from "../createExplorePageConfig"; +import { exampleCommunity } from "./example.community"; + +const exampleTokens = [ + ...(exampleCommunity.tokens?.erc20Tokens ?? []).map(({ address, symbol, network }) => ({ + address, + symbol, + network, + assetType: "token" as const, + })), + ...(exampleCommunity.tokens?.nftTokens ?? []).map(({ address, symbol, network }) => ({ + address, + symbol, + network, + assetType: "nft" as const, + })), +]; + +export const exampleExplorePage = createExplorePageConfig({ + tokens: exampleTokens, + channel: exampleCommunity.social?.farcaster ?? null, + defaultTokenNetwork: "mainnet", +}); diff --git a/src/config/example/example.fidgets.ts b/src/config/example/example.fidgets.ts new file mode 100644 index 000000000..dfc2a5e5a --- /dev/null +++ b/src/config/example/example.fidgets.ts @@ -0,0 +1,20 @@ +export const exampleFidgets = { + enabled: [ + 'feed', + 'cast', + 'gallery', + 'text', + 'iframe', + 'links', + 'video', + 'channel', + 'profile', + 'swap', + 'rss', + 'market', + 'portfolio', + 'chat', + 'framesV2' + ], + disabled: ['example', 'nounsHome', 'governance', 'snapshot', 'builderScore'] +}; diff --git a/src/config/example/example.home.ts b/src/config/example/example.home.ts new file mode 100644 index 000000000..422a90219 --- /dev/null +++ b/src/config/example/example.home.ts @@ -0,0 +1,187 @@ +export const exampleHomePage = { + defaultTab: "Home", + tabOrder: ["Home", "Social", "Resources"], + tabs: { + "Home": { + name: "Home", + displayName: "Home", + layoutID: "example-home-layout", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, h: 10, x: 0, y: 0, + i: "text:example-welcome", + minW: 2, maxW: 36, minH: 2, maxH: 36, + moved: false, static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false + } + ] + }, + layoutFidget: "grid" + }, + theme: { + id: "example-home-theme", + name: "Example Home Theme", + properties: { + background: "#ffffff", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + gridSpacing: "16", + musicURL: "" + } + }, + fidgetInstanceDatums: { + "text:example-welcome": { + config: { + data: {}, + editable: false, + settings: { + content: "Welcome to Example Community!", + fontSize: "24px", + textAlign: "center" + } + }, + fidgetType: "text", + id: "text:example-welcome" + } + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: new Date().toISOString() + }, + "Social": { + name: "Social", + displayName: "Social", + layoutID: "example-social-layout", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, h: 8, x: 0, y: 0, + i: "feed:example-social", + minW: 2, maxW: 36, minH: 2, maxH: 36, + moved: false, static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false + } + ] + }, + layoutFidget: "grid" + }, + theme: { + id: "example-social-theme", + name: "Example Social Theme", + properties: { + background: "#f8f9fa", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + gridSpacing: "16", + musicURL: "" + } + }, + fidgetInstanceDatums: { + "feed:example-social": { + config: { + data: {}, + editable: false, + settings: { + feedType: "global" + } + }, + fidgetType: "feed", + id: "feed:example-social" + } + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: new Date().toISOString() + }, + "Resources": { + name: "Resources", + displayName: "Resources", + layoutID: "example-resources-layout", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 6, h: 6, x: 0, y: 0, + i: "links:example-resources", + minW: 2, maxW: 36, minH: 2, maxH: 36, + moved: false, static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false + } + ] + }, + layoutFidget: "grid" + }, + theme: { + id: "example-resources-theme", + name: "Example Resources Theme", + properties: { + background: "#ffffff", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + gridSpacing: "16", + musicURL: "" + } + }, + fidgetInstanceDatums: { + "links:example-resources": { + config: { + data: {}, + editable: false, + settings: { + links: [ + { title: "Documentation", url: "https://docs.example.com" }, + { title: "Community", url: "https://community.example.com" }, + { title: "Support", url: "https://support.example.com" } + ] + } + }, + fidgetType: "links", + id: "links:example-resources" + } + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: new Date().toISOString() + } + }, + layout: { + defaultLayoutFidget: "grid", + gridSpacing: 16, + theme: { + background: "#ffffff", + fidgetBackground: "#ffffff", + font: "Inter", + fontColor: "#000000" + } + } +}; diff --git a/src/config/example/example.theme.ts b/src/config/example/example.theme.ts new file mode 100644 index 000000000..ad1d2f01e --- /dev/null +++ b/src/config/example/example.theme.ts @@ -0,0 +1,192 @@ +export const exampleTheme = { + default: { + id: "default", + name: "Default", + properties: { + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + nounish: { + id: "nounish", + name: "Nounish", + properties: { + font: "Londrina Solid", + fontColor: "#333333", + headingsFont: "Work Sans", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "nounish", // Reference to animated background + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#FFFAFA", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#F05252", + fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + gradientAndWave: { + id: "gradientAndWave", + name: "Gradient & Wave", + properties: { + font: "Lato", + fontColor: "#FFFFFF", + headingsFont: "Lato", + headingsFontColor: "#FFFFFF", + background: "rgba(101,0,94,1)", + backgroundHTML: "gradientAndWave", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "transparent", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + colorBlobs: { + id: "colorBlobs", + name: "Color Blobs", + properties: { + font: "Quicksand", + fontColor: "#000000", + headingsFont: "Roboto", + headingsFontColor: "#000000", + background: "#fbe9e0", + backgroundHTML: "colorBlobs", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0.5)", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + floatingShapes: { + id: "floatingShapes", + name: "Floating Shapes", + properties: { + font: "Anek Latin", + fontColor: "#FFFFFF", + headingsFont: "Anek Latin", + headingsFontColor: "#FFFFFF", + background: "#4e54c8", + backgroundHTML: "floatingShapes", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0)", + fidgetBorderWidth: "0", + fidgetBorderColor: "transparent", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + imageParallax: { + id: "imageParallax", + name: "Image Parallax", + properties: { + font: "Inter", + fontColor: "#FFFFFF", + headingsFont: "Poppins", + headingsFontColor: "#FFFFFF", + background: "#000000", + backgroundHTML: "imageParallax", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(0 0 0 / 0.6)", + fidgetBorderWidth: "0", + fidgetBorderColor: "transparent", + fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + shootingStar: { + id: "shootingStar", + name: "Shooting Star", + properties: { + font: "Trispace", + fontColor: "#FDF6B2", + headingsFont: "Goldman", + headingsFontColor: "#FACA15", + background: "#000000", + backgroundHTML: "shootingStar", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "transparent", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#FACA15", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + squareGrid: { + id: "squareGrid", + name: "Square Grid", + properties: { + font: "Inter", + fontColor: "#FFFFFF", + headingsFont: "Oswald", + headingsFontColor: "#FFFFFF", + background: "#4A1D96", + backgroundHTML: "squareGrid", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(103 65 78 / 0.6)", + fidgetBorderWidth: "4px", + fidgetBorderColor: "#FFFFFF", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + tesseractPattern: { + id: "tesseractPattern", + name: "Tesseract Pattern", + properties: { + font: "Exo", + fontColor: "#000000", + headingsFont: "Work Sans", + headingsFontColor: "#000000", + background: "#FFFFFF", + backgroundHTML: "tesseractPattern", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0.9)", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#F8B4D9", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + retro: { + id: "retro", + name: "Retro", + properties: { + font: "IBM Plex Mono", + fontColor: "#333333", + headingsFont: "IBM Plex Mono", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "retro", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(144,165,185,1) 100%)", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#90A5B9", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, +}; diff --git a/src/config/example/example.ui.ts b/src/config/example/example.ui.ts new file mode 100644 index 000000000..f67ae1892 --- /dev/null +++ b/src/config/example/example.ui.ts @@ -0,0 +1,12 @@ +import type { UIConfig } from "../systemConfig"; + +export const exampleUI: UIConfig = { + primaryColor: "rgb(37, 99, 235)", // blue-600 + primaryHoverColor: "rgb(29, 78, 216)", // blue-700 + primaryActiveColor: "rgb(30, 64, 175)", // blue-800 + castButton: { + backgroundColor: "rgb(37, 99, 235)", // blue-600 + hoverColor: "rgb(29, 78, 216)", // blue-700 + activeColor: "rgb(30, 64, 175)", // blue-800 + }, +}; diff --git a/src/config/example/index.ts b/src/config/example/index.ts new file mode 100644 index 000000000..0b7caa1fb --- /dev/null +++ b/src/config/example/index.ts @@ -0,0 +1,27 @@ +import { exampleBrand } from './example.brand'; +import { exampleAssets } from './example.assets'; +import { exampleTheme } from './example.theme'; +import { exampleCommunity } from './example.community'; +import { exampleFidgets } from './example.fidgets'; +import { exampleHomePage } from './example.home'; +import { exampleExplorePage } from './example.explore'; +import { exampleUI } from './example.ui'; + +export const exampleSystemConfig = { + brand: exampleBrand, + assets: exampleAssets, + theme: exampleTheme, + community: exampleCommunity, + fidgets: exampleFidgets, + homePage: exampleHomePage, + explorePage: exampleExplorePage, + ui: exampleUI, +}; + +export { exampleBrand } from './example.brand'; +export { exampleAssets } from './example.assets'; +export { exampleTheme } from './example.theme'; +export { exampleCommunity } from './example.community'; +export { exampleFidgets } from './example.fidgets'; +export { exampleHomePage } from './example.home'; +export { exampleExplorePage } from './example.explore'; diff --git a/src/config/example/initialSpaces/channel.ts b/src/config/example/initialSpaces/channel.ts new file mode 100644 index 000000000..68235ca19 --- /dev/null +++ b/src/config/example/initialSpaces/channel.ts @@ -0,0 +1,83 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { FilterType, FeedType } from "@neynar/nodejs-sdk/build/api"; +import { cloneDeep } from "lodash"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; + +const INITIAL_CHANNEL_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); +INITIAL_CHANNEL_SPACE_CONFIG.tabNames = ["Channel"]; + +const createInitialChannelSpaceConfig = ( + channelId: string, +): Omit => { + const config = cloneDeep(INITIAL_CHANNEL_SPACE_CONFIG); + + config.fidgetInstanceDatums = { + "feed:channel": { + config: { + editable: false, + settings: { + feedType: FeedType.Filter, + filterType: FilterType.ChannelId, + channel: channelId, + }, + data: {}, + }, + fidgetType: "feed", + id: "feed:channel", + }, + "text:channel-info": { + config: { + editable: false, + settings: { + content: "Welcome to this Example Community channel!", + fontSize: "16px", + textAlign: "center" + }, + data: {}, + }, + fidgetType: "text", + id: "text:channel-info", + }, + }; + + const layoutItems = [ + { + w: 12, + h: 8, + x: 0, + y: 0, + i: "text:channel-info", + minW: 4, + maxW: 20, + minH: 2, + maxH: 6, + moved: false, + static: false, + }, + { + w: 6, + h: 8, + x: 0, + y: 8, + i: "feed:channel", + minW: 4, + maxW: 20, + minH: 6, + maxH: 12, + moved: false, + static: false, + }, + ]; + + // Set the layout configuration + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = layoutItems; + + // Set default tab names + config.tabNames = ["Channel"]; + + return config; +}; + +export default createInitialChannelSpaceConfig; diff --git a/src/config/example/initialSpaces/homebase.ts b/src/config/example/initialSpaces/homebase.ts new file mode 100644 index 000000000..4726ae5b3 --- /dev/null +++ b/src/config/example/initialSpaces/homebase.ts @@ -0,0 +1,88 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import DEFAULT_THEME from "@/common/lib/theme/defaultTheme"; + +const tutorialText = ` +### 🖌️ Click the paintbrush in the bottom-left corner to open Customization Mode + +### Add Fidgets +1. Click the blue **+** button. +2. Drag a Fidget to an open spot on the grid. +3. Click Save + +(after saving, scroll down here for more instructions) + +### Customize Fidgets +1. From customization mode, click any Fidget on the grid to open its settings. +2. Click 'Style' to customize a fidget's look. Any Fidget styles set to "Theme" inherit their look from the Tab's theme. + +### Arrange Fidgets +- **Move:** Drag from the center +- **Resize:** Drag from an edge or corner +- **Stash in Fidget Tray:** Click a fidget then click ⇱ to save it for later. +- **Delete:** Click a fidget then click X it to delete it forever. + +### Create New Tabs +1. Click the **+** button in the tab bar to create a new tab. +2. Name your tab and click Save. +3. Add fidgets to your new tab! + +### Themes +Click the paintbrush icon to open customization mode, then click the **Theme** button to change your space's appearance. + +### Need Help? +Visit our documentation or join our community for support! + +--- + +**Welcome to Example Community!** This is your personal space where you can organize fidgets however you'd like. +`; + +const INITIAL_HOMEBASE_CONFIG: SpaceConfig = { + fidgetInstanceDatums: { + "text:tutorial": { + config: { + data: {}, + editable: false, + settings: { + content: tutorialText, + fontSize: "14px", + textAlign: "left", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "text", + id: "text:tutorial", + }, + }, + layoutID: "homebase-layout", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, + h: 12, + x: 0, + y: 0, + i: "text:tutorial", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + ], + }, + layoutFidget: "grid", + }, + fidgetTrayContents: [], + theme: DEFAULT_THEME, + timestamp: new Date().toISOString(), + tabNames: ["Homebase"], + isEditable: true, +}; + +export default INITIAL_HOMEBASE_CONFIG; diff --git a/src/config/example/initialSpaces/index.ts b/src/config/example/initialSpaces/index.ts new file mode 100644 index 000000000..2c0c465c2 --- /dev/null +++ b/src/config/example/initialSpaces/index.ts @@ -0,0 +1,6 @@ +// Export the initial space creators from example config +export { default as createInitialProfileSpaceConfigForFid } from './profile'; +export { default as createInitialChannelSpaceConfig } from './channel'; +export { default as createInitialTokenSpaceConfigForAddress } from './token'; +export { default as createInitalProposalSpaceConfigForProposalId } from './proposal'; +export { default as INITIAL_HOMEBASE_CONFIG } from './homebase'; diff --git a/src/config/example/initialSpaces/profile.ts b/src/config/example/initialSpaces/profile.ts new file mode 100644 index 000000000..eaa5f753f --- /dev/null +++ b/src/config/example/initialSpaces/profile.ts @@ -0,0 +1,83 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { FeedType, FilterType } from "@neynar/nodejs-sdk/build/api"; +import { cloneDeep } from "lodash"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; + +// Set default tabNames for profile spaces +const INITIAL_PROFILE_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); +INITIAL_PROFILE_SPACE_CONFIG.tabNames = ["Profile"]; + +const createInitialProfileSpaceConfigForFid = ( + fid: number, + username?: string, +): Omit => { + const config = cloneDeep(INITIAL_PROFILE_SPACE_CONFIG); + config.fidgetInstanceDatums = { + "feed:profile": { + config: { + editable: false, + settings: { + feedType: FeedType.Filter, + users: fid, + filterType: FilterType.Fids, + }, + data: {}, + }, + fidgetType: "feed", + id: "feed:profile", + }, + "text:welcome": { + config: { + editable: false, + settings: { + content: `Welcome to Example Community, ${username || 'friend'}!`, + fontSize: "18px", + textAlign: "left" + }, + data: {}, + }, + fidgetType: "text", + id: "text:welcome", + }, + }; + const layoutItems = [ + { + w: 6, + h: 8, + x: 0, + y: 0, + i: "feed:profile", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + { + w: 6, + h: 8, + x: 7, + y: 0, + i: "text:welcome", + minW: 3, + maxW: 36, + minH: 3, + maxH: 36, + moved: false, + static: false, + }, + ]; + + // Set the layout configuration + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = layoutItems; + + // Set default tab names + config.tabNames = ["Profile"]; + + return config; +}; + +export default createInitialProfileSpaceConfigForFid; diff --git a/src/config/example/initialSpaces/proposal.ts b/src/config/example/initialSpaces/proposal.ts new file mode 100644 index 000000000..f85890c54 --- /dev/null +++ b/src/config/example/initialSpaces/proposal.ts @@ -0,0 +1,80 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { cloneDeep } from "lodash"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; +import { Address } from "viem"; + +export const createInitalProposalSpaceConfigForProposalId = ( + proposalId: string, + proposerAddress: Address +): Omit => { + const config = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); + config.tabNames = ["Proposal"]; + + config.fidgetInstanceDatums = { + "iframe:proposal-description": { + config: { + editable: true, + data: {}, + settings: { + url: `https://governance.example.com/proposals/${proposalId}`, + showOnMobile: true, + customMobileDisplayName: "Proposal", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "iframe", + id: "iframe:proposal-description", + }, + "text:proposal-info": { + config: { + editable: false, + data: {}, + settings: { + content: "Example Community Proposal Information", + fontSize: "16px", + textAlign: "center" + }, + }, + fidgetType: "text", + id: "text:proposal-info", + }, + }; + + const layoutItems = [ + { + w: 12, + h: 6, + x: 0, + y: 0, + i: "iframe:proposal-description", + minW: 4, + maxW: 36, + minH: 4, + maxH: 36, + moved: false, + static: false, + }, + { + w: 12, + h: 4, + x: 0, + y: 6, + i: "text:proposal-info", + minW: 4, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + }, + ]; + + config.layoutDetails.layoutConfig.layout = layoutItems; + + return config; +}; + +export default createInitalProposalSpaceConfigForProposalId; diff --git a/src/config/example/initialSpaces/token.ts b/src/config/example/initialSpaces/token.ts new file mode 100644 index 000000000..63081e4cc --- /dev/null +++ b/src/config/example/initialSpaces/token.ts @@ -0,0 +1,115 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { cloneDeep } from "lodash"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; +import { EtherScanChainName } from "../../../constants/etherscanChainIds"; +import { getGeckoUrl } from "@/common/lib/utils/links"; +import { Address } from "viem"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; + +export const createInitialTokenSpaceConfigForAddress = ( + address: Address, + network: EtherScanChainName, + castHash?: string, + casterFid?: number, +): Omit => { + const config = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); + config.tabNames = ["Token"]; + + config.fidgetInstanceDatums = { + "market:token-market": { + config: { + data: {}, + editable: true, + settings: { + tokenAddress: address, + network: network, + geckoUrl: getGeckoUrl(address, network), + }, + }, + fidgetType: "market", + id: "market:token-market", + }, + "text:token-info": { + config: { + data: {}, + editable: false, + settings: { + content: "Token information and market data", + fontSize: "16px", + textAlign: "center" + }, + }, + fidgetType: "text", + id: "text:token-info", + }, + }; + + const layoutItems = [ + { + w: 6, + h: 8, + x: 0, + y: 0, + i: "market:token-market", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + { + w: 6, + h: 8, + x: 7, + y: 0, + i: "text:token-info", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + ]; + + if (castHash && casterFid) { + config.fidgetInstanceDatums["cast:example-cast"] = { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + castHash: castHash, + casterFid: casterFid, + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "cast", + id: "cast:example-cast", + }; + layoutItems.push({ + w: 12, + h: 6, + x: 0, + y: 8, + i: "cast:example-cast", + minW: 4, + maxW: 36, + minH: 4, + maxH: 36, + moved: false, + static: false, + }); + } + + // Set the layout configuration + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = layoutItems; + + return config; +}; + +export default createInitialTokenSpaceConfigForAddress; diff --git a/src/config/index.ts b/src/config/index.ts new file mode 100644 index 000000000..00e9757ba --- /dev/null +++ b/src/config/index.ts @@ -0,0 +1,167 @@ +import { nounsSystemConfig } from './nouns/index'; +import { exampleSystemConfig } from './example/index'; +import { clankerSystemConfig } from './clanker/index'; +import { SystemConfig } from './systemConfig'; + +// Available community configurations +const AVAILABLE_CONFIGURATIONS = ['nouns', 'example', 'clanker'] as const; +type CommunityConfig = typeof AVAILABLE_CONFIGURATIONS[number]; + +// Configuration loader +export const loadSystemConfig = (): SystemConfig => { + // Get the community configuration from environment variable + const communityConfig = process.env.NEXT_PUBLIC_COMMUNITY || 'nouns'; + + // Validate the configuration + if (!isValidCommunityConfig(communityConfig)) { + console.warn( + `Invalid community configuration: "${communityConfig}". ` + + `Available options: ${AVAILABLE_CONFIGURATIONS.join(', ')}. ` + + `Falling back to "nouns" configuration.` + ); + } + + // Switch between available configurations + switch (communityConfig.toLowerCase()) { + case 'nouns': + return nounsSystemConfig; + case 'example': + return exampleSystemConfig; + case 'clanker': + return clankerSystemConfig as unknown as SystemConfig; + // Add more community configurations here as they are created + default: + return nounsSystemConfig; + } +}; + +// Helper function to validate community configuration +function isValidCommunityConfig(config: string): config is CommunityConfig { + return AVAILABLE_CONFIGURATIONS.includes(config.toLowerCase() as CommunityConfig); +} + +// Export available configurations for reference +export { AVAILABLE_CONFIGURATIONS }; + +// Export the configurations +export { nounsSystemConfig } from './nouns/index'; +export { exampleSystemConfig } from './example/index'; +export { clankerSystemConfig } from './clanker/index'; +export type { SystemConfig }; + +// Export individual configuration modules from nouns +export * from './nouns/index'; + +// Export individual configuration modules from example +export * from './example/index'; + +// Export individual configuration modules from clanker +export * from './clanker/index'; + +// Space creators - delegate to the active community at runtime +// Import creators for all communities under unique aliases +import { default as nounsCreateInitialProfileSpaceConfigForFid } from './nouns/initialSpaces/initialProfileSpace'; +import { default as nounsCreateInitialChannelSpaceConfig } from './nouns/initialSpaces/initialChannelSpace'; +import { default as nounsCreateInitialTokenSpaceConfigForAddress } from './nouns/initialSpaces/initialTokenSpace'; +import { default as nounsCreateInitalProposalSpaceConfigForProposalId } from './nouns/initialSpaces/initialProposalSpace'; +import { default as nounsINITIAL_HOMEBASE_CONFIG } from './nouns/initialSpaces/initialHomebase'; + +import { default as exampleCreateInitialProfileSpaceConfigForFid } from './example/initialSpaces/profile'; +import { default as exampleCreateInitialChannelSpaceConfig } from './example/initialSpaces/channel'; +import { default as exampleCreateInitialTokenSpaceConfigForAddress } from './example/initialSpaces/token'; +import { default as exampleCreateInitalProposalSpaceConfigForProposalId } from './example/initialSpaces/proposal'; +import { default as exampleINITIAL_HOMEBASE_CONFIG } from './example/initialSpaces/homebase'; + +import { default as clankerCreateInitialProfileSpaceConfigForFid } from './clanker/initialSpaces/initialProfileSpace'; +import { default as clankerCreateInitialChannelSpaceConfig } from './clanker/initialSpaces/initialChannelSpace'; +import { default as clankerCreateInitialTokenSpaceConfigForAddress } from './clanker/initialSpaces/initialTokenSpace'; +import { default as clankerCreateInitialProposalSpaceConfigForProposalId } from './clanker/initialSpaces/initialProposalSpace'; +import { default as clankerINITIAL_HOMEBASE_CONFIG, createInitialHomebaseConfig as clankerCreateInitialHomebaseConfig } from './clanker/initialSpaces/initialHomebase'; + +function resolveCommunity(): CommunityConfig { + const c = (process.env.NEXT_PUBLIC_COMMUNITY || 'nouns').toLowerCase(); + return isValidCommunityConfig(c) ? (c as CommunityConfig) : 'nouns'; +} + +export const createInitialProfileSpaceConfigForFid = (fid: number, username?: string, walletAddress?: string) => { + switch (resolveCommunity()) { + case 'clanker': + return clankerCreateInitialProfileSpaceConfigForFid(fid, username, walletAddress); + case 'example': + return exampleCreateInitialProfileSpaceConfigForFid(fid, username); + case 'nouns': + default: + return nounsCreateInitialProfileSpaceConfigForFid(fid, username); + } +}; + +export const createInitialChannelSpaceConfig = (channelId: string) => { + switch (resolveCommunity()) { + case 'clanker': + return clankerCreateInitialChannelSpaceConfig(channelId); + case 'example': + return exampleCreateInitialChannelSpaceConfig(channelId); + case 'nouns': + default: + return nounsCreateInitialChannelSpaceConfig(channelId); + } +}; + +export const createInitialTokenSpaceConfigForAddress = ( + ...args: any[] +) => { + switch (resolveCommunity()) { + case 'clanker': + return (clankerCreateInitialTokenSpaceConfigForAddress as any)(...args); + case 'example': + return (exampleCreateInitialTokenSpaceConfigForAddress as any)(...args); + case 'nouns': + default: + return (nounsCreateInitialTokenSpaceConfigForAddress as any)(...args); + } +}; + +// Maintain the historical (typo) API used by consumers +export const createInitalProposalSpaceConfigForProposalId = ( + ...args: any[] +) => { + switch (resolveCommunity()) { + case 'clanker': + // clanker uses the corrected spelling under the hood + return (clankerCreateInitialProposalSpaceConfigForProposalId as any)(...args); + case 'example': + return (exampleCreateInitalProposalSpaceConfigForProposalId as any)(...args); + case 'nouns': + default: + return (nounsCreateInitalProposalSpaceConfigForProposalId as any)(...args); + } +}; + +// Resolve the initial homebase config at module load based on the active community +export const INITIAL_HOMEBASE_CONFIG = (() => { + switch (resolveCommunity()) { + case 'clanker': + return clankerINITIAL_HOMEBASE_CONFIG; + case 'example': + return exampleINITIAL_HOMEBASE_CONFIG; + case 'nouns': + default: + return nounsINITIAL_HOMEBASE_CONFIG; + } +})(); + +// Function to create initial homebase config with user-specific data (e.g., wallet address) +export const createInitialHomebaseConfig = (userAddress?: string) => { + switch (resolveCommunity()) { + case 'clanker': + return clankerCreateInitialHomebaseConfig(userAddress); + case 'example': + return exampleINITIAL_HOMEBASE_CONFIG; + case 'nouns': + default: + return nounsINITIAL_HOMEBASE_CONFIG; + } +}; + +// Export initial space config +export { INITIAL_SPACE_CONFIG_EMPTY } from './initialSpaceConfig'; diff --git a/src/config/initialSpaceConfig.ts b/src/config/initialSpaceConfig.ts new file mode 100644 index 000000000..0809abdd0 --- /dev/null +++ b/src/config/initialSpaceConfig.ts @@ -0,0 +1,34 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; + +export const INITIAL_SPACE_CONFIG_EMPTY: Omit = { + fidgetInstanceDatums: {}, + layoutID: "empty-layout", + layoutDetails: { + layoutConfig: { + layout: [] + }, + layoutFidget: "grid" + }, + fidgetTrayContents: [], + theme: { + id: "default", + name: "Default", + properties: { + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "", + musicURL: "", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + timestamp: new Date().toISOString(), + tabNames: [] +}; diff --git a/src/config/nouns/assets/logo.svg b/src/config/nouns/assets/logo.svg new file mode 100644 index 000000000..13fa7eaf1 --- /dev/null +++ b/src/config/nouns/assets/logo.svg @@ -0,0 +1,6 @@ + + + Nouns Logo + + + diff --git a/src/config/nouns/assets/noggles.svg b/src/config/nouns/assets/noggles.svg new file mode 100644 index 000000000..25d2b77ea --- /dev/null +++ b/src/config/nouns/assets/noggles.svg @@ -0,0 +1,9 @@ + + + noggles + Nouns noggles logo + + + + + diff --git a/src/config/nouns/assets/og.svg b/src/config/nouns/assets/og.svg new file mode 100644 index 000000000..cfc9ac414 --- /dev/null +++ b/src/config/nouns/assets/og.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + Nounspace + OG Image + + diff --git a/src/config/nouns/assets/splash.svg b/src/config/nouns/assets/splash.svg new file mode 100644 index 000000000..38ee37e1d --- /dev/null +++ b/src/config/nouns/assets/splash.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + Nounspace + Splash + + diff --git a/src/config/nouns/index.ts b/src/config/nouns/index.ts new file mode 100644 index 000000000..1570ed3c0 --- /dev/null +++ b/src/config/nouns/index.ts @@ -0,0 +1,36 @@ +import { nounsBrand } from './nouns.brand'; +import { nounsAssets } from './nouns.assets'; +import { nounsTheme } from './nouns.theme'; +import { nounsCommunity } from './nouns.community'; +import { nounsFidgets } from './nouns.fidgets'; +import { nounsHomePage } from './nouns.home'; +import { nounsNavigation } from './nouns.navigation'; +import { nounsExplorePage } from './nouns.explore'; +import { nounsUI } from './nouns.ui'; + +export const nounsSystemConfig = { + brand: nounsBrand, + assets: nounsAssets, + theme: nounsTheme, + community: nounsCommunity, + fidgets: nounsFidgets, + homePage: nounsHomePage, + explorePage: nounsExplorePage, + navigation: nounsNavigation, + ui: nounsUI, +}; + +export { nounsBrand } from './nouns.brand'; +export { nounsAssets } from './nouns.assets'; +export { nounsTheme } from './nouns.theme'; +export { nounsCommunity } from './nouns.community'; +export { nounsFidgets } from './nouns.fidgets'; +export { nounsHomePage } from './nouns.home'; +export { nounsExplorePage } from './nouns.explore'; + +// Export the initial space creators from config +export { default as createInitialProfileSpaceConfigForFid } from './initialSpaces/initialProfileSpace'; +export { default as createInitialChannelSpaceConfig } from './initialSpaces/initialChannelSpace'; +export { default as createInitialTokenSpaceConfigForAddress } from './initialSpaces/initialTokenSpace'; +export { default as createInitalProposalSpaceConfigForProposalId } from './initialSpaces/initialProposalSpace'; +export { default as INITIAL_HOMEBASE_CONFIG } from './initialSpaces/initialHomebase'; diff --git a/src/config/nouns/initialSpaces/exploreTabs/channel.json b/src/config/nouns/initialSpaces/exploreTabs/channel.json new file mode 100644 index 000000000..2abf5c351 --- /dev/null +++ b/src/config/nouns/initialSpaces/exploreTabs/channel.json @@ -0,0 +1,20855 @@ +{ + "members": [ + { + "address": "fc_fid_7479", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chaskin.eth", + "displayName": ".", + "fid": 7479, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6f2c8e0-5474-4d8d-8563-8ea180e31200/original", + "followers": 65908, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x355efbcbcdb96ab72b91cfca2114cd43f93e90ed", + "etherscanUrl": "https://etherscan.io/address/0x355efbcbcdb96ab72b91cfca2114cd43f93e90ed", + "xHandle": "jchaskin22", + "xUrl": "https://twitter.com/jchaskin22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_828", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "scottrepreneur.eth", + "displayName": "scottrepreneur", + "fid": 828, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/daed3bdc-9b84-413c-6d5c-ef84c4860900/original", + "followers": 51629, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2eeaa132a480dc7713423f2e3dae6cfc8f584880", + "etherscanUrl": "https://etherscan.io/address/0x2eeaa132a480dc7713423f2e3dae6cfc8f584880", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_311", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bgrill.eth", + "displayName": "bgrill.eth", + "fid": 311, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88883947-8a37-4cda-08cd-ccea262d1e00/rectcrop3", + "followers": 49042, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0a2cca2528a5778388c40a0c87cf9cc2bfa1bcf", + "etherscanUrl": "https://etherscan.io/address/0xb0a2cca2528a5778388c40a0c87cf9cc2bfa1bcf", + "xHandle": "bennetgrill", + "xUrl": "https://twitter.com/bennetgrill", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2007", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jacopo.eth", + "displayName": "jacopo.eth", + "fid": 2007, + "pfpUrl": "https://i.imgur.com/pJt6PFK.jpg", + "followers": 36279, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ca3b89fb461c1a279b27ca85aef1821687e6214", + "etherscanUrl": "https://etherscan.io/address/0x9ca3b89fb461c1a279b27ca85aef1821687e6214", + "xHandle": "jj_ranalli", + "xUrl": "https://twitter.com/jj_ranalli", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4895", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "matthewb", + "displayName": "matthewb", + "fid": 4895, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cafeddf2-7cc3-44ee-db51-0aa924c36600/original", + "followers": 25475, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed73734ae97b0c9d6c4fd8e00196ad047014812f", + "etherscanUrl": "https://etherscan.io/address/0xed73734ae97b0c9d6c4fd8e00196ad047014812f", + "xHandle": "0xmatthewb", + "xUrl": "https://twitter.com/0xmatthewb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21417", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ethereumdaily.eth", + "displayName": "Ethereum Daily", + "fid": 21417, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4b1cf280-5811-4820-2479-44cd1d00c900/original", + "followers": 13479, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93c83fa23cd6a518955286cda144abd135f74ff2", + "etherscanUrl": "https://etherscan.io/address/0x93c83fa23cd6a518955286cda144abd135f74ff2", + "xHandle": "ethereumdaily_", + "xUrl": "https://twitter.com/ethereumdaily_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8109", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "victoctero", + "displayName": "Victor 🎩🚴↑", + "fid": 8109, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ea427ba-3462-4351-b77c-160b375d1b00/original", + "followers": 9789, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc9b50d89af9cbeff1652f8e4b2052e12efe9915", + "etherscanUrl": "https://etherscan.io/address/0xbc9b50d89af9cbeff1652f8e4b2052e12efe9915", + "xHandle": "victoctero", + "xUrl": "https://twitter.com/victoctero", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_382707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vlados666", + "displayName": "Vladimir", + "fid": 382707, + "pfpUrl": "https://i.imgur.com/bFx0Ajv.jpg", + "followers": 7195, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa94fdca476f17d2f789c0263162d21061ba743e4", + "etherscanUrl": "https://etherscan.io/address/0xa94fdca476f17d2f789c0263162d21061ba743e4", + "xHandle": "kuzka60668105", + "xUrl": "https://twitter.com/kuzka60668105", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2494", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "7858.eth", + "displayName": "7858", + "fid": 2494, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a7fa964-dcfe-44db-5b69-1cde14349400/original", + "followers": 7017, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44fa7ee5cfaceab384c4f6f5b621c5060cdc7b14", + "etherscanUrl": "https://etherscan.io/address/0x44fa7ee5cfaceab384c4f6f5b621c5060cdc7b14", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1158447", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "atupami", + "displayName": "Atupa.base.eth", + "fid": 1158447, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7dfeffad-761d-4c3c-7460-d6630aa69200/original", + "followers": 5502, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcddff021748df7d2e36034ff6683caf575c54b80", + "etherscanUrl": "https://etherscan.io/address/0xcddff021748df7d2e36034ff6683caf575c54b80", + "xHandle": "atupa_mi", + "xUrl": "https://twitter.com/atupa_mi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_244440", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shira", + "displayName": "Shira Stember", + "fid": 244440, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/348c5353-ca85-4b7c-feb8-53bec8833800/original", + "followers": 4652, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe84a71b39f4cecb5177a32ab25738fc9f91ac31d", + "etherscanUrl": "https://etherscan.io/address/0xe84a71b39f4cecb5177a32ab25738fc9f91ac31d", + "xHandle": "shira_les", + "xUrl": "https://twitter.com/shira_les", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_320189", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drakhonen.eth", + "displayName": "Drakhonen ✝️", + "fid": 320189, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81c870b5-3725-4338-e0b7-dd4f9d692300/original", + "followers": 4595, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb5afc1f48270d79cc8e5f1119715747b7ae58af", + "etherscanUrl": "https://etherscan.io/address/0xdb5afc1f48270d79cc8e5f1119715747b7ae58af", + "xHandle": "prodigyforge3d", + "xUrl": "https://twitter.com/prodigyforge3d", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_397488", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kanemochi1004", + "displayName": "kanemochi💗", + "fid": 397488, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e837084-6ea9-45f2-a4b5-00355ee4b500/rectcrop3", + "followers": 4533, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8dadf3e690c0ce0e440b74e3802077c87de28eda", + "etherscanUrl": "https://etherscan.io/address/0x8dadf3e690c0ce0e440b74e3802077c87de28eda", + "xHandle": "kanemochi1004", + "xUrl": "https://twitter.com/kanemochi1004", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11299", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tempetechie.eth", + "displayName": "Tempe Techie", + "fid": 11299, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27dd3233-68e8-4c14-4f96-abccbeeebc00/original", + "followers": 4368, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe64ae6b6c7bdafefad768d9354bbed2c55c9b0f2", + "etherscanUrl": "https://etherscan.io/address/0xe64ae6b6c7bdafefad768d9354bbed2c55c9b0f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1105154", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "coconutrinds", + "displayName": "peanut⭐️", + "fid": 1105154, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d508fe9-35cd-4fa2-a28d-9ff1db90ad00/original", + "followers": 4238, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x869dcbcb689cab802badc0740e774da3e88c10dd", + "etherscanUrl": "https://etherscan.io/address/0x869dcbcb689cab802badc0740e774da3e88c10dd", + "xHandle": "coconutrinds", + "xUrl": "https://twitter.com/coconutrinds", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_195916", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "goyabean-", + "displayName": "Goya.base.eth ⌐◨-◨", + "fid": 195916, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/579c32e6-a2cb-476b-7b7b-aa2b669f2600/original", + "followers": 4148, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebdbd9c0f93b3bbbafcef90cebf5939693882d50", + "etherscanUrl": "https://etherscan.io/address/0xebdbd9c0f93b3bbbafcef90cebf5939693882d50", + "xHandle": "goyabean_eth", + "xUrl": "https://twitter.com/goyabean_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_535238", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "odogwupete", + "displayName": "Anthony Pete", + "fid": 535238, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5d6e53a-c2b0-4fca-3bfb-92daec82a600/rectcrop3", + "followers": 3959, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x665f47deb367704cbf280a530a551c1c4a6731fd", + "etherscanUrl": "https://etherscan.io/address/0x665f47deb367704cbf280a530a551c1c4a6731fd", + "xHandle": "odogwupete", + "xUrl": "https://twitter.com/odogwupete", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309310", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "metamu", + "displayName": "MetaMu.base.eth", + "fid": 309310, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/278d61ce-b186-4821-d722-9b8a2cb6d200/original", + "followers": 3616, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15e87052d69ad27532434e9fa6aac7f424fe0f55", + "etherscanUrl": "https://etherscan.io/address/0x15e87052d69ad27532434e9fa6aac7f424fe0f55", + "xHandle": "metam00", + "xUrl": "https://twitter.com/metam00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_387719", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drishka.eth", + "displayName": "Drishka 🎩 🟦", + "fid": 387719, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/03fbf3e8-2b35-4d02-b12c-3b1de112e600/rectcrop3", + "followers": 3587, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f80825a2a234cf3c7484b6042e572f707dcb05a", + "etherscanUrl": "https://etherscan.io/address/0x9f80825a2a234cf3c7484b6042e572f707dcb05a", + "xHandle": "alfre2_jhr", + "xUrl": "https://twitter.com/alfre2_jhr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212703", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "civilmonkey", + "displayName": "civil🍄💚🫂", + "fid": 212703, + "pfpUrl": "https://i.imgur.com/biJ4sUV.jpg", + "followers": 3563, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3174833a698081b8d918635b2e456507f1176c0f", + "etherscanUrl": "https://etherscan.io/address/0x3174833a698081b8d918635b2e456507f1176c0f", + "xHandle": "civilmonkey", + "xUrl": "https://twitter.com/civilmonkey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_665738", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "browdi.eth", + "displayName": "Rekt 🔸🧬", + "fid": 665738, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54c9ce45-540c-4c5c-976e-4d7cb9816000/original", + "followers": 3560, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e530e0defcaa74245c5bc1abf34e362d6d48a31", + "etherscanUrl": "https://etherscan.io/address/0x1e530e0defcaa74245c5bc1abf34e362d6d48a31", + "xHandle": "zazazahrazaza", + "xUrl": "https://twitter.com/zazazahrazaza", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_374641", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "travsap", + "displayName": "Travis Sapolin", + "fid": 374641, + "pfpUrl": "https://i.imgur.com/NS4rK6z.jpg", + "followers": 3481, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x84725ddd812709a0e94261575a7f4946b6e4dbe3", + "etherscanUrl": "https://etherscan.io/address/0x84725ddd812709a0e94261575a7f4946b6e4dbe3", + "xHandle": "travsap", + "xUrl": "https://twitter.com/travsap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_645888", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "akash2539", + "displayName": "Akash", + "fid": 645888, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/900eba00-89eb-4f36-d8f5-a581c112e700/rectcrop3", + "followers": 3383, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46cfd33b9d326b7b1a56cfdc9445d47b8bdaac76", + "etherscanUrl": "https://etherscan.io/address/0x46cfd33b9d326b7b1a56cfdc9445d47b8bdaac76", + "xHandle": "bikash2539", + "xUrl": "https://twitter.com/bikash2539", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_941103", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lasagne", + "displayName": "mr. lasagne", + "fid": 941103, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4defa980-1792-402a-7bca-e4aa7cedde00/rectcrop3", + "followers": 2825, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f2577c331954e67e4ea3561a9079c637d660826", + "etherscanUrl": "https://etherscan.io/address/0x4f2577c331954e67e4ea3561a9079c637d660826", + "xHandle": "xboxlasagne", + "xUrl": "https://twitter.com/xboxlasagne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_419984", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gnericvibes", + "displayName": "Gnericvibes", + "fid": 419984, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc1d7485-29e0-4cdf-71fb-fe971b0fb500/rectcrop3", + "followers": 2788, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x744cdf12d5d289db118ed9293c10cfa952169071", + "etherscanUrl": "https://etherscan.io/address/0x744cdf12d5d289db118ed9293c10cfa952169071", + "xHandle": "gnericgladhiza", + "xUrl": "https://twitter.com/gnericgladhiza", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2240", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "metamonk", + "displayName": "metamonk 🟥", + "fid": 2240, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f948c2d-bf1a-4a45-abdd-0573fc0e1100/original", + "followers": 2725, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94045a3f35848117ccc539634c9c9723612808a2", + "etherscanUrl": "https://etherscan.io/address/0x94045a3f35848117ccc539634c9c9723612808a2", + "xHandle": "metamonkx", + "xUrl": "https://twitter.com/metamonkx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_618687", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alamu", + "displayName": "Soheeb Ibrahim 🎩🟧🟦", + "fid": 618687, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ea3643c-6a47-43e2-2a4b-c6f8cf96c200/rectcrop3", + "followers": 2528, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa5004ae35b3d0b115af8784061182ca3090387bb", + "etherscanUrl": "https://etherscan.io/address/0xa5004ae35b3d0b115af8784061182ca3090387bb", + "xHandle": "ridwansohe81580", + "xUrl": "https://twitter.com/ridwansohe81580", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_410761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptodima.eth", + "displayName": "Snobi", + "fid": 410761, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69aecd26-7fbe-455a-740c-4ea72e7db800/rectcrop3", + "followers": 2406, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d13bd05fda3966eac850afb1370fe5a01ead4da", + "etherscanUrl": "https://etherscan.io/address/0x3d13bd05fda3966eac850afb1370fe5a01ead4da", + "xHandle": "uxuidima", + "xUrl": "https://twitter.com/uxuidima", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3682", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "volky.eth", + "displayName": "Volky", + "fid": 3682, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2aa3b42d-f816-433d-8aed-18bc6fc83c00/original", + "followers": 2399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc744de881665a8d564b5ae8ca55ee063b69b0ee4", + "etherscanUrl": "https://etherscan.io/address/0xc744de881665a8d564b5ae8ca55ee063b69b0ee4", + "xHandle": "volkyeth", + "xUrl": "https://twitter.com/volkyeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_484486", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrsa", + "displayName": "MrSA", + "fid": 484486, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19244a8d-ffba-4b67-b39f-98415c98a000/rectcrop3", + "followers": 2300, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c7033a8f43652e62db29dbd69b9ad047c4e1e61", + "etherscanUrl": "https://etherscan.io/address/0x1c7033a8f43652e62db29dbd69b9ad047c4e1e61", + "xHandle": "no_oln", + "xUrl": "https://twitter.com/no_oln", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_355566", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "duodomusica", + "displayName": "Dúo Dø ♬₊˚⌐◨-◨ 💧", + "fid": 355566, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4be92bae-1f43-4f0b-8848-5f711a2e2800/original", + "followers": 2166, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x038c3188241aa2cbfaeda05c029b63bc0eceb208", + "etherscanUrl": "https://etherscan.io/address/0x038c3188241aa2cbfaeda05c029b63bc0eceb208", + "xHandle": "duodomusica", + "xUrl": "https://twitter.com/duodomusica", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_883491", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alonea", + "displayName": "Medisa 🧬", + "fid": 883491, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e8ad5b5-8097-486c-11eb-102271c9df00/original", + "followers": 2147, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2dba70a6e9897226af8a803ca4f8c4127b5ed93", + "etherscanUrl": "https://etherscan.io/address/0xe2dba70a6e9897226af8a803ca4f8c4127b5ed93", + "xHandle": "aidumber", + "xUrl": "https://twitter.com/aidumber", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_480067", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brauxelion", + "displayName": "Brauxelion", + "fid": 480067, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e5a6cc5-9faf-4d63-677b-0f1c3a03c700/original", + "followers": 2107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07efbb211cb33cef4f1a9aaac3364153dcebbd32", + "etherscanUrl": "https://etherscan.io/address/0x07efbb211cb33cef4f1a9aaac3364153dcebbd32", + "xHandle": "brauxelion_", + "xUrl": "https://twitter.com/brauxelion_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_509256", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "syubidab.eth", + "displayName": "Syubidab 🧬", + "fid": 509256, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/508e2313-ac27-4a45-cfec-043aa9cc5e00/original", + "followers": 2060, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89cd778ed1f781d465128ee8a3de0c8d7bfee8b4", + "etherscanUrl": "https://etherscan.io/address/0x89cd778ed1f781d465128ee8a3de0c8d7bfee8b4", + "xHandle": "doomial57317", + "xUrl": "https://twitter.com/doomial57317", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_545384", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maryamtusman", + "displayName": "Ⓜ️aryamTU🧑‍🦲🔵🐱", + "fid": 545384, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efd9f01d-ea7a-4027-1fd6-23cf1444f200/original", + "followers": 2060, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a60869eba82df3717e62b5a3e5352a8a237f7fb", + "etherscanUrl": "https://etherscan.io/address/0x2a60869eba82df3717e62b5a3e5352a8a237f7fb", + "xHandle": "maryam_temiu", + "xUrl": "https://twitter.com/maryam_temiu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_423954", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ghanibodla", + "displayName": "Ghani Bodla ", + "fid": 423954, + "pfpUrl": "https://i.imgur.com/Hy2YYuB.gif", + "followers": 2051, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf0c614c93b89bc4dd8a0059c8161573011186329", + "etherscanUrl": "https://etherscan.io/address/0xf0c614c93b89bc4dd8a0059c8161573011186329", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097690", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ericolsz", + "displayName": "Eric Olszewski", + "fid": 1097690, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cde1d8c-90dc-40fa-965a-c567c7c52e00/original", + "followers": 2004, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29c3311ee19531c3d226d45771212bba91eb2339", + "etherscanUrl": "https://etherscan.io/address/0x29c3311ee19531c3d226d45771212bba91eb2339", + "xHandle": "ericolsz", + "xUrl": "https://twitter.com/ericolsz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_944078", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "liquidjeans", + "displayName": "Lil Jeans", + "fid": 944078, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da18de08-6502-4a80-2fd7-34e2131e1000/original", + "followers": 1974, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30084b3b1f2db32b0eb3c5f620bf434ed1d620e5", + "etherscanUrl": "https://etherscan.io/address/0x30084b3b1f2db32b0eb3c5f620bf434ed1d620e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108338", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "usman-5026", + "displayName": "Dr. Usman🥼🩺", + "fid": 1108338, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28d7baab-507e-4f93-e9d6-90c2984a6000/original", + "followers": 1918, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a3e305652a555ef8532189d7140b89e1ac92b80", + "etherscanUrl": "https://etherscan.io/address/0x1a3e305652a555ef8532189d7140b89e1ac92b80", + "xHandle": "uabdulbasi54318", + "xUrl": "https://twitter.com/uabdulbasi54318", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_290198", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "web3pro", + "displayName": "Web3Pro", + "fid": 290198, + "pfpUrl": "https://i.imgur.com/EPoJ1iB.jpg", + "followers": 1903, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfeda4d2b07021c4e7f5b5f527e157a008cec10d4", + "etherscanUrl": "https://etherscan.io/address/0xfeda4d2b07021c4e7f5b5f527e157a008cec10d4", + "xHandle": "ug_becky", + "xUrl": "https://twitter.com/ug_becky", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1104143", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "simplycollins", + "displayName": "Collins", + "fid": 1104143, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0940ef0c-b3e8-4332-39a4-10ce2dea9400/original", + "followers": 1899, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c299a9b6eadbd9dd8ec43643730d432e9eb802c", + "etherscanUrl": "https://etherscan.io/address/0x1c299a9b6eadbd9dd8ec43643730d432e9eb802c", + "xHandle": "simplycollinsss", + "xUrl": "https://twitter.com/simplycollinsss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135838", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elizabeth211", + "displayName": "Elizabeth211", + "fid": 1135838, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8169f0ab-64c5-4339-5edd-c6c05e317900/original", + "followers": 1893, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a8b443a261448ee0702712e37fbc301e1f0fd63", + "etherscanUrl": "https://etherscan.io/address/0x1a8b443a261448ee0702712e37fbc301e1f0fd63", + "xHandle": "abuhelizab60307", + "xUrl": "https://twitter.com/abuhelizab60307", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132896", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elleheath4119", + "displayName": "Elle heath", + "fid": 1132896, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762508858/d7a64d07-0060-4d72-a375-ad5e40639772.png.png", + "followers": 1882, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x508edd9ebbe11fbd97618a22bbb36023541baeef", + "etherscanUrl": "https://etherscan.io/address/0x508edd9ebbe11fbd97618a22bbb36023541baeef", + "xHandle": "elleheath4119", + "xUrl": "https://twitter.com/elleheath4119", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130014", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tesla0111", + "displayName": "Tesla", + "fid": 1130014, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27cb4e00-f725-4c3b-be87-dc872608fb00/original", + "followers": 1783, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1421d7ee8bb845898205f01e1a0f997222902b27", + "etherscanUrl": "https://etherscan.io/address/0x1421d7ee8bb845898205f01e1a0f997222902b27", + "xHandle": "mojumdert57675", + "xUrl": "https://twitter.com/mojumdert57675", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_533404", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wajeking", + "displayName": "WajeKing", + "fid": 533404, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89ac66ee-5869-4174-0073-3752543bc800/original", + "followers": 1770, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb3037c412ee6a27aa8d4345b4f38751416afe4f", + "etherscanUrl": "https://etherscan.io/address/0xfb3037c412ee6a27aa8d4345b4f38751416afe4f", + "xHandle": "waje_king", + "xUrl": "https://twitter.com/waje_king", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_513194", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onchainkitty.eth", + "displayName": "onchainkitty", + "fid": 513194, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c250909-3ccf-4ddf-71bf-9683f8386300/original", + "followers": 1769, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4afd5e22948b4be806cc65e91f05e14367e31abe", + "etherscanUrl": "https://etherscan.io/address/0x4afd5e22948b4be806cc65e91f05e14367e31abe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118592", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "keturahm", + "displayName": "Keturah Mamman", + "fid": 1118592, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67ed73b6-b94f-40b8-70a5-b2548ed3ed00/original", + "followers": 1715, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26f2de6be4b13df8b96e7a1a013a1e53b6e5373a", + "etherscanUrl": "https://etherscan.io/address/0x26f2de6be4b13df8b96e7a1a013a1e53b6e5373a", + "xHandle": "mamman57631", + "xUrl": "https://twitter.com/mamman57631", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_565671", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jedxo", + "displayName": "JX", + "fid": 565671, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed17bd60-fe9b-4f2c-68ab-da4fe3d3fa00/original", + "followers": 1712, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa70fe49c71529808eb881455073beded47f7016c", + "etherscanUrl": "https://etherscan.io/address/0xa70fe49c71529808eb881455073beded47f7016c", + "xHandle": "1jedxo", + "xUrl": "https://twitter.com/1jedxo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_554079", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "torii", + "displayName": "tori", + "fid": 554079, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93ee682f-bb5a-49dd-2cb7-4e4323c82700/original", + "followers": 1676, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x650aa6fe7f2716ae9525218621c70b7db764cfd0", + "etherscanUrl": "https://etherscan.io/address/0x650aa6fe7f2716ae9525218621c70b7db764cfd0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_386000", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "underdog13", + "displayName": "Underdog13 🧬", + "fid": 386000, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9ab5af6-0e93-4524-837b-d4d760420100/original", + "followers": 1674, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7604b29a74a55e670b2967af425b9781ff548b62", + "etherscanUrl": "https://etherscan.io/address/0x7604b29a74a55e670b2967af425b9781ff548b62", + "xHandle": "makash_13", + "xUrl": "https://twitter.com/makash_13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1182383", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bright-degen1", + "displayName": "DegenBright", + "fid": 1182383, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/yellow.jpg", + "followers": 1621, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd18cc0cb78a4d0e956ee120b5930cf5f6e9984e8", + "etherscanUrl": "https://etherscan.io/address/0xd18cc0cb78a4d0e956ee120b5930cf5f6e9984e8", + "xHandle": "degen_bright", + "xUrl": "https://twitter.com/degen_bright", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_282355", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gauntlet", + "displayName": "Gauntlet", + "fid": 282355, + "pfpUrl": "https://i.imgur.com/5cM2opo.jpg", + "followers": 1616, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42f94c87084dfd42c9b4a06c2cdfbea7871810b3", + "etherscanUrl": "https://etherscan.io/address/0x42f94c87084dfd42c9b4a06c2cdfbea7871810b3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_456980", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khadijanaz", + "displayName": "DJ BRAVO 🎩🍖🔮", + "fid": 456980, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a831e4af-904d-4d9c-48f8-703a0f287e00/original", + "followers": 1611, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48eafb3903d0a91bf1768453bfb4e715d7e25219", + "etherscanUrl": "https://etherscan.io/address/0x48eafb3903d0a91bf1768453bfb4e715d7e25219", + "xHandle": "shailafiaz2", + "xUrl": "https://twitter.com/shailafiaz2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7181", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sebastien", + "displayName": "Sebastien", + "fid": 7181, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42ffa1b7-1938-4b5e-4893-4b44bbe6a300/original", + "followers": 1588, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ce55a6fbc2c7650b33d5f8765d52c26956f13ec", + "etherscanUrl": "https://etherscan.io/address/0x9ce55a6fbc2c7650b33d5f8765d52c26956f13ec", + "xHandle": "0x572f00", + "xUrl": "https://twitter.com/0x572f00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_866473", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cloudss", + "displayName": "CLOUDS", + "fid": 866473, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9840086-0544-4d08-7df8-eedd9e02c900/original", + "followers": 1553, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26e20ae6c3c31c6812bb3bde9b0ac0e8fafffbad", + "etherscanUrl": "https://etherscan.io/address/0x26e20ae6c3c31c6812bb3bde9b0ac0e8fafffbad", + "xHandle": "louds____", + "xUrl": "https://twitter.com/louds____", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135853", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ibyinkx152", + "displayName": "Ibyinkx152", + "fid": 1135853, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9dd1c5b8-81a0-4322-f43f-c53e82f62000/rectcrop3", + "followers": 1506, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c0b92ce9306b053158a5035de29732a2ea16721", + "etherscanUrl": "https://etherscan.io/address/0x7c0b92ce9306b053158a5035de29732a2ea16721", + "xHandle": "olayinkapapa", + "xUrl": "https://twitter.com/olayinkapapa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_544548", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "feiyuka", + "displayName": "Yuka - feiyuka.base.eth", + "fid": 544548, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fbd261ef-2bbd-4480-d89d-69831c758500/rectcrop3", + "followers": 1499, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb0ee350336412c6331ed44fddd8ea37c6508c82", + "etherscanUrl": "https://etherscan.io/address/0xfb0ee350336412c6331ed44fddd8ea37c6508c82", + "xHandle": "infba", + "xUrl": "https://twitter.com/infba", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_436463", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "busymama", + "displayName": "Duru Juliet,🎭🎩⚡🌈🌳", + "fid": 436463, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a7bbe05-962e-49ac-c27c-6f73038fed00/rectcrop3", + "followers": 1426, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6abbf200b7d6267b409bac3a8798be9fc797a4c", + "etherscanUrl": "https://etherscan.io/address/0xc6abbf200b7d6267b409bac3a8798be9fc797a4c", + "xHandle": "juliet1870588", + "xUrl": "https://twitter.com/juliet1870588", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118298", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "antu47", + "displayName": "Boss", + "fid": 1118298, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef13b949-3c1f-4394-9ac9-728a6c205800/original", + "followers": 1416, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x432f30a0a1f088ac8ddda88def747a911255eb18", + "etherscanUrl": "https://etherscan.io/address/0x432f30a0a1f088ac8ddda88def747a911255eb18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_389279", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jessepollak0", + "displayName": "JessePollakbase.eth", + "fid": 389279, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/yellow.jpg", + "followers": 1389, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc866ab739f3613d2b9c0a6d3c8535923498c8452", + "etherscanUrl": "https://etherscan.io/address/0xc866ab739f3613d2b9c0a6d3c8535923498c8452", + "xHandle": "kaleem788", + "xUrl": "https://twitter.com/kaleem788", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16236", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sttsm.eth", + "displayName": "STTSM ⌐◨-◨", + "fid": 16236, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e2769ab-a640-4298-ea4d-9a9ece090f00/original", + "followers": 1373, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa7d0518841640dd9a1dd7f31646260d1ebe8f02", + "etherscanUrl": "https://etherscan.io/address/0xaa7d0518841640dd9a1dd7f31646260d1ebe8f02", + "xHandle": "sttsm_eth", + "xUrl": "https://twitter.com/sttsm_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_488819", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pdan", + "displayName": "prodan.base.eth", + "fid": 488819, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e7e27a4-2b4e-4f3c-8500-cc8cac985100/rectcrop3", + "followers": 1356, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49fff2798bd96edcaa860b230560574952930a59", + "etherscanUrl": "https://etherscan.io/address/0x49fff2798bd96edcaa860b230560574952930a59", + "xHandle": "crypt3ck", + "xUrl": "https://twitter.com/crypt3ck", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_597483", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "okoye251", + "displayName": "Peter 🎭", + "fid": 597483, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aff37563-1022-4285-5731-5608d9106000/rectcrop3", + "followers": 1353, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39527ebb83d84abf098d8d404a35f47532a0b664", + "etherscanUrl": "https://etherscan.io/address/0x39527ebb83d84abf098d8d404a35f47532a0b664", + "xHandle": "danpee7", + "xUrl": "https://twitter.com/danpee7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_378236", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shahzaib", + "displayName": "Shahzaib.base.eth", + "fid": 378236, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d005c00-31c9-47a2-c5f1-ef769ef33c00/original", + "followers": 1349, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6719a6acad16dd6d36f16344a4302c22924f2b0e", + "etherscanUrl": "https://etherscan.io/address/0x6719a6acad16dd6d36f16344a4302c22924f2b0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18756", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "optichad", + "displayName": "LekeboyxCrypt", + "fid": 18756, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fff540af-5227-4b51-e42d-72b058dfef00/original", + "followers": 1347, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x439356b793aa7f838f10423fa37b97d7114a792e", + "etherscanUrl": "https://etherscan.io/address/0x439356b793aa7f838f10423fa37b97d7114a792e", + "xHandle": "lekeboyxcrypt", + "xUrl": "https://twitter.com/lekeboyxcrypt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_883352", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mehrajfiroz", + "displayName": "Mehrajfiroz", + "fid": 883352, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc9e55fc-de2d-4658-a840-ff9fbca60c00/rectcrop3", + "followers": 1344, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52c5327b452b499795fc3a5e1f46d0b22d21ed52", + "etherscanUrl": "https://etherscan.io/address/0x52c5327b452b499795fc3a5e1f46d0b22d21ed52", + "xHandle": "firozmehra27012", + "xUrl": "https://twitter.com/firozmehra27012", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_388458", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "devcon", + "displayName": "Devconnect-Ethereum World's Fair", + "fid": 388458, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54855a89-5657-478f-c7d7-0945d3b22200/original", + "followers": 1296, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5deb464fd68baa3cdaffd8f7433965f165b21c01", + "etherscanUrl": "https://etherscan.io/address/0x5deb464fd68baa3cdaffd8f7433965f165b21c01", + "xHandle": "efdevcon", + "xUrl": "https://twitter.com/efdevcon", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_413213", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "valentinaartt", + "displayName": "Valentinaart.eth💜", + "fid": 413213, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2cb577d-e8dc-46bb-d5fd-024f60940800/original", + "followers": 1293, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22b029b3ba6e6df0b7c70887d4aed0c56d9b9bc7", + "etherscanUrl": "https://etherscan.io/address/0x22b029b3ba6e6df0b7c70887d4aed0c56d9b9bc7", + "xHandle": "leettlestar_", + "xUrl": "https://twitter.com/leettlestar_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491365", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sokoot", + "displayName": "Hamed1371🎩➿", + "fid": 491365, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a0cf350-1627-41f2-c83e-ca882c6e0f00/rectcrop3", + "followers": 1274, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4af8c438a31c06362344a9b1108f8b1dcd6869e4", + "etherscanUrl": "https://etherscan.io/address/0x4af8c438a31c06362344a9b1108f8b1dcd6869e4", + "xHandle": "fanaeihame67748", + "xUrl": "https://twitter.com/fanaeihame67748", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_376202", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oneaboveall", + "displayName": "ethchild.base.eth", + "fid": 376202, + "pfpUrl": "https://i.imgur.com/iK1VPDe.jpg", + "followers": 1259, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0f4e1237d8e844f17b45a701745d9fd88788b624", + "etherscanUrl": "https://etherscan.io/address/0x0f4e1237d8e844f17b45a701745d9fd88788b624", + "xHandle": "theonlyhuman5", + "xUrl": "https://twitter.com/theonlyhuman5", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_296050", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jt-longo", + "displayName": "Based MFER", + "fid": 296050, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c7ae03ee-92fb-45c5-137c-9de4433a9e00/original", + "followers": 1253, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x553dac4270884395762952698e293afc763154ad", + "etherscanUrl": "https://etherscan.io/address/0x553dac4270884395762952698e293afc763154ad", + "xHandle": "johntee0101", + "xUrl": "https://twitter.com/johntee0101", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_822727", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xppaicyber.eth", + "displayName": "xppaicyber", + "fid": 822727, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebe336c3-1e89-4596-b95d-3eedf6096e00/original", + "followers": 1242, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x743a2c7dee7e4b7fdae946c4de02273a20867395", + "etherscanUrl": "https://etherscan.io/address/0x743a2c7dee7e4b7fdae946c4de02273a20867395", + "xHandle": "oppaicyber", + "xUrl": "https://twitter.com/oppaicyber", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_238287", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onurintouch", + "displayName": "onurintouch", + "fid": 238287, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cfe5ce18-9817-4d09-b070-519c14fe5c00/original", + "followers": 1235, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb450f96c2d817b7522b95e4fd63fd8347559cb9d", + "etherscanUrl": "https://etherscan.io/address/0xb450f96c2d817b7522b95e4fd63fd8347559cb9d", + "xHandle": "onurintouch", + "xUrl": "https://twitter.com/onurintouch", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1047423", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adityaranvijay", + "displayName": "adityaranvijay.base.eth", + "fid": 1047423, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5ba3018-35d0-4b72-643c-d623e008b400/original", + "followers": 1231, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a0ae1369aa75d37c98af2efb8c3e7c0b658d6ee", + "etherscanUrl": "https://etherscan.io/address/0x3a0ae1369aa75d37c98af2efb8c3e7c0b658d6ee", + "xHandle": "adityaranv27789", + "xUrl": "https://twitter.com/adityaranv27789", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_976834", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "clique7", + "displayName": "Clique.base.eth", + "fid": 976834, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b21bc15-8265-43b8-e0ef-20a838355a00/original", + "followers": 1220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99f53a909ed051b3d605f9c49ec9e4c71d141ae6", + "etherscanUrl": "https://etherscan.io/address/0x99f53a909ed051b3d605f9c49ec9e4c71d141ae6", + "xHandle": "0x_clique", + "xUrl": "https://twitter.com/0x_clique", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_865545", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uchemoses", + "displayName": "Spiridest.base.eth", + "fid": 865545, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1b67b734-45e7-48d7-bf6d-205d0e886a00/original", + "followers": 1164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0612251ae9846099a11dc69665025c37e7cea33", + "etherscanUrl": "https://etherscan.io/address/0xb0612251ae9846099a11dc69665025c37e7cea33", + "xHandle": "spiridest825", + "xUrl": "https://twitter.com/spiridest825", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_313108", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "grilledonion", + "displayName": "Grilled Onion", + "fid": 313108, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92ad95a5-6d57-4a7e-26ad-dda0cfcc7700/original", + "followers": 1160, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dc3787e2cd0c25a443d59bb505c263c7532e538", + "etherscanUrl": "https://etherscan.io/address/0x3dc3787e2cd0c25a443d59bb505c263c7532e538", + "xHandle": "grilled_onion_", + "xUrl": "https://twitter.com/grilled_onion_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_698423", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kelprime", + "displayName": "kelprime.base.eth🎩", + "fid": 698423, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7df909c-1634-40e9-2367-cbee19aa3d00/original", + "followers": 1160, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ca300636d777c0419a32bdc7ce80fee07b5b8a1", + "etherscanUrl": "https://etherscan.io/address/0x0ca300636d777c0419a32bdc7ce80fee07b5b8a1", + "xHandle": "kelvindagreat1", + "xUrl": "https://twitter.com/kelvindagreat1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_710224", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "poole", + "displayName": "poole", + "fid": 710224, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39e5c990-ea8e-432f-0c64-d504f3e85d00/original", + "followers": 1151, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10b2c2b2dd5cb1894cf6b31845dacd81beadc23c", + "etherscanUrl": "https://etherscan.io/address/0x10b2c2b2dd5cb1894cf6b31845dacd81beadc23c", + "xHandle": "mhyyw28448462", + "xUrl": "https://twitter.com/mhyyw28448462", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072078", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tamim690", + "displayName": "Tamim.base.eth 🟦", + "fid": 1072078, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/427ad810-4127-46e0-ceaa-0da1ced6b500/original", + "followers": 1119, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ac73efc79370659d3dda4b170e4d202f63c1f78", + "etherscanUrl": "https://etherscan.io/address/0x8ac73efc79370659d3dda4b170e4d202f63c1f78", + "xHandle": "mdtamim470123", + "xUrl": "https://twitter.com/mdtamim470123", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1045483", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "simplysimi", + "displayName": "Simisola.eth 10/100🎨🎥", + "fid": 1045483, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05b05c8d-dd9b-4dd3-ecef-8c2b407ed500/original", + "followers": 1091, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x032aa839edccb6baca7a8789635bda8eee67ab87", + "etherscanUrl": "https://etherscan.io/address/0x032aa839edccb6baca7a8789635bda8eee67ab87", + "xHandle": "simi_soundz", + "xUrl": "https://twitter.com/simi_soundz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115656", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "darasimi03", + "displayName": "Darasimi", + "fid": 1115656, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cff120b3-2111-4fce-b8f9-36e73c204600/original", + "followers": 1070, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ce806792fc006c0c9d6f60f768569d3fc421e68", + "etherscanUrl": "https://etherscan.io/address/0x6ce806792fc006c0c9d6f60f768569d3fc421e68", + "xHandle": "doyinbofiy61844", + "xUrl": "https://twitter.com/doyinbofiy61844", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_511792", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kurier", + "displayName": "Nafisat", + "fid": 511792, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b2c15321-9bca-4c4a-24a4-746a8780f300/original", + "followers": 1051, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d5486075d668d5fe60880f8e0ac04a401ff6e19", + "etherscanUrl": "https://etherscan.io/address/0x3d5486075d668d5fe60880f8e0ac04a401ff6e19", + "xHandle": "aayomide55936", + "xUrl": "https://twitter.com/aayomide55936", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_326039", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reigns", + "displayName": "Reigns 👑", + "fid": 326039, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64f965f1-899b-4db6-1325-846693f8a900/original", + "followers": 1050, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x785cfeafac8417931594a8a3afcb64c0ea7fbf91", + "etherscanUrl": "https://etherscan.io/address/0x785cfeafac8417931594a8a3afcb64c0ea7fbf91", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_493210", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "atmacxa", + "displayName": "atmacxa.base.eth", + "fid": 493210, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6700f307-c240-44fb-0589-d7d974146300/original", + "followers": 1039, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf71a7cd0f45c7b959992472fc250b9312b38cd95", + "etherscanUrl": "https://etherscan.io/address/0xf71a7cd0f45c7b959992472fc250b9312b38cd95", + "xHandle": "_ahmet_h", + "xUrl": "https://twitter.com/_ahmet_h", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_378525", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pedram", + "displayName": "Pedram", + "fid": 378525, + "pfpUrl": "https://i.imgur.com/nhlmGQA.jpg", + "followers": 1038, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93b362701660edd0ba42290f8cedba61c877a6cd", + "etherscanUrl": "https://etherscan.io/address/0x93b362701660edd0ba42290f8cedba61c877a6cd", + "xHandle": "pdrm_n", + "xUrl": "https://twitter.com/pdrm_n", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_508826", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abbeydinho", + "displayName": "Abbeydinho🎭🎭", + "fid": 508826, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/308e9ff5-83b6-43f3-cfc4-c5042b43af00/original", + "followers": 1028, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe869a1e0678fb2003da3b74cc9044ca842e7cb2", + "etherscanUrl": "https://etherscan.io/address/0xfe869a1e0678fb2003da3b74cc9044ca842e7cb2", + "xHandle": "ridwansohe81580", + "xUrl": "https://twitter.com/ridwansohe81580", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1121389", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ayomide90", + "displayName": "Adedeji Ayomide", + "fid": 1121389, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93478c94-2dc2-4876-8143-f45ee22d4000/original", + "followers": 1017, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18d810251145ec6a912bb4e7efd7356f8c3627ef", + "etherscanUrl": "https://etherscan.io/address/0x18d810251145ec6a912bb4e7efd7356f8c3627ef", + "xHandle": "kurierden", + "xUrl": "https://twitter.com/kurierden", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_864314", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "curabot", + "displayName": "cura", + "fid": 864314, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0ba4d19-001a-4887-f271-9f7da83c2000/original", + "followers": 977, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4498e0aa0ebee6da49a82049b529b5b43df5a50", + "etherscanUrl": "https://etherscan.io/address/0xf4498e0aa0ebee6da49a82049b529b5b43df5a50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_269510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "flextonick2", + "displayName": "🎭Flextonick2👾", + "fid": 269510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd5b90ea-dbd7-4331-0386-d2bb2361e900/original", + "followers": 976, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd949ef3a125e8057aca02c0e4f6422fa39f939ba", + "etherscanUrl": "https://etherscan.io/address/0xd949ef3a125e8057aca02c0e4f6422fa39f939ba", + "xHandle": "chuks534", + "xUrl": "https://twitter.com/chuks534", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1088004", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "johnbullmyson", + "displayName": "Johnbullmyson", + "fid": 1088004, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24c92ea9-d842-4367-753a-d5cd0ccfa800/original", + "followers": 934, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x731543bcdb5386cac96208d50bd3777962c1e394", + "etherscanUrl": "https://etherscan.io/address/0x731543bcdb5386cac96208d50bd3777962c1e394", + "xHandle": "dabeatzstacato", + "xUrl": "https://twitter.com/dabeatzstacato", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1360012", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sexy-anita-eth", + "displayName": "sexy-anita-eth", + "fid": 1360012, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6c45fa9-92a8-4817-5f54-5908fb7aef00/original", + "followers": 932, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39bb29062a9a2e146007010d254d4abee6bbc01b", + "etherscanUrl": "https://etherscan.io/address/0x39bb29062a9a2e146007010d254d4abee6bbc01b", + "xHandle": "anita23311", + "xUrl": "https://twitter.com/anita23311", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_451964", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tatishegai", + "displayName": "Tati Shegai", + "fid": 451964, + "pfpUrl": "https://i.imgur.com/Fygs20Z.jpg", + "followers": 932, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee5bd16d88cb2f7679bf28e23573fe8af0ad832c", + "etherscanUrl": "https://etherscan.io/address/0xee5bd16d88cb2f7679bf28e23573fe8af0ad832c", + "xHandle": "tatishegai", + "xUrl": "https://twitter.com/tatishegai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_310901", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ryuuzxc", + "displayName": "Ryuzxc.eth", + "fid": 310901, + "pfpUrl": "https://i.imgur.com/4KupKpA.jpg", + "followers": 922, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56cc087af4a360cae1120f1e7c703391d8fc4995", + "etherscanUrl": "https://etherscan.io/address/0x56cc087af4a360cae1120f1e7c703391d8fc4995", + "xHandle": "raulmaximuss", + "xUrl": "https://twitter.com/raulmaximuss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_276383", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "srk1", + "displayName": "Ador", + "fid": 276383, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/33498059-cc1c-4d4d-c546-5f73ce08eb00/original", + "followers": 871, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd5802ccdc4af6d7d07d28dc4271ff869ea054e4", + "etherscanUrl": "https://etherscan.io/address/0xdd5802ccdc4af6d7d07d28dc4271ff869ea054e4", + "xHandle": "anny01717", + "xUrl": "https://twitter.com/anny01717", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1061761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sahar-2002", + "displayName": "Sahar", + "fid": 1061761, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74fec88e-b7fb-4c8b-40a0-e9ad7b18fe00/original", + "followers": 863, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71d6eb75edfd8b65ce206aaf9e2fefe6787bb1cd", + "etherscanUrl": "https://etherscan.io/address/0x71d6eb75edfd8b65ce206aaf9e2fefe6787bb1cd", + "xHandle": "sahar_t2002", + "xUrl": "https://twitter.com/sahar_t2002", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1125456", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jiyahyacinth", + "displayName": "Jiya Hyacinth", + "fid": 1125456, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1760175673/1000213305.jpg.jpg", + "followers": 857, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1d2a47bc380be0c6a70b91e37e90050228417b3", + "etherscanUrl": "https://etherscan.io/address/0xa1d2a47bc380be0c6a70b91e37e90050228417b3", + "xHandle": "jiyahyacinth333", + "xUrl": "https://twitter.com/jiyahyacinth333", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138588", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "flamez344", + "displayName": "Marfo Erim", + "fid": 1138588, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1976e088-d866-4a53-feb1-e153c81b7200/original", + "followers": 851, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9cde17a0002c1d5cfece0a031f0ebb8c6055d41", + "etherscanUrl": "https://etherscan.io/address/0xe9cde17a0002c1d5cfece0a031f0ebb8c6055d41", + "xHandle": "flamez90", + "xUrl": "https://twitter.com/flamez90", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_384408", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tatyana", + "displayName": "kurasho.base.eth", + "fid": 384408, + "pfpUrl": "https://i.imgur.com/Ewp5NSn.jpg", + "followers": 847, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40d18f7a56c65eddccb3924d45dcccd1cd70233e", + "etherscanUrl": "https://etherscan.io/address/0x40d18f7a56c65eddccb3924d45dcccd1cd70233e", + "xHandle": "kurashooo", + "xUrl": "https://twitter.com/kurashooo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_399310", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pocidoank", + "displayName": "Bad Boy🧬", + "fid": 399310, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a89287a-7930-4206-8495-476842a5ef00/original", + "followers": 845, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59f9bb09fe3b566a295ebe2f6a2891bb1854eaf4", + "etherscanUrl": "https://etherscan.io/address/0x59f9bb09fe3b566a295ebe2f6a2891bb1854eaf4", + "xHandle": "pocidoank", + "xUrl": "https://twitter.com/pocidoank", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21173", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nounsamigos.eth", + "displayName": "Nouns Amigos", + "fid": 21173, + "pfpUrl": "https://i.imgur.com/6VLkIqY.jpg", + "followers": 844, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f58248ffafdde57eeb67047c6bae4bee213a686", + "etherscanUrl": "https://etherscan.io/address/0x4f58248ffafdde57eeb67047c6bae4bee213a686", + "xHandle": "nounsdaoamigos", + "xUrl": "https://twitter.com/nounsdaoamigos", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14771", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "secret", + "displayName": "Grigory", + "fid": 14771, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9aea660-0710-4f4e-27e3-623c941c2e00/original", + "followers": 835, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f84fbdf5601899c250a5cf7515fc7393e78cec0", + "etherscanUrl": "https://etherscan.io/address/0x3f84fbdf5601899c250a5cf7515fc7393e78cec0", + "xHandle": "rayonprast", + "xUrl": "https://twitter.com/rayonprast", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_513697", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xpari", + "displayName": "Pari", + "fid": 513697, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a39daa7-bbbe-4c17-1739-5c07687e1900/rectcrop3", + "followers": 834, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe210bba78a3edf52019e7a8a6b299d331046a4aa", + "etherscanUrl": "https://etherscan.io/address/0xe210bba78a3edf52019e7a8a6b299d331046a4aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1153754", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mr-r0b0t", + "displayName": "mr-r0b0t.farcaster.eth", + "fid": 1153754, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a187ddf-e756-454e-3cf2-0f677b0d8200/original", + "followers": 815, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x86e36c9ba3c6a2542fd761bc2b4fd61a110ea6cd", + "etherscanUrl": "https://etherscan.io/address/0x86e36c9ba3c6a2542fd761bc2b4fd61a110ea6cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1188653", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "playmakerjnr", + "displayName": "Playmaker💜", + "fid": 1188653, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04ab3a95-ec3f-430a-5ad4-c1ebef15ed00/original", + "followers": 799, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x928b262f9473b07cefb0173607ebfaa41d5e1e19", + "etherscanUrl": "https://etherscan.io/address/0x928b262f9473b07cefb0173607ebfaa41d5e1e19", + "xHandle": "playmaker441997", + "xUrl": "https://twitter.com/playmaker441997", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_400293", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "strawhatluffy", + "displayName": "luffy🏴‍☠.base.eth", + "fid": 400293, + "pfpUrl": "https://i.imgur.com/q0XmYOC.gif", + "followers": 796, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff1f98a5907b2b192705427c3da160378089b312", + "etherscanUrl": "https://etherscan.io/address/0xff1f98a5907b2b192705427c3da160378089b312", + "xHandle": "nakamadegen", + "xUrl": "https://twitter.com/nakamadegen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_422213", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andredimauro.eth", + "displayName": "Andre Di Mauro🦉", + "fid": 422213, + "pfpUrl": "https://i.imgur.com/Os2KO5t.jpg", + "followers": 795, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90ab94723f79b44f8239213e50452f2cac7ef2e9", + "etherscanUrl": "https://etherscan.io/address/0x90ab94723f79b44f8239213e50452f2cac7ef2e9", + "xHandle": "andredimauro", + "xUrl": "https://twitter.com/andredimauro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1134743", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xbrendan.eth", + "displayName": "Brendan", + "fid": 1134743, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/577b4c97-280f-4975-ae93-350b22e9cb00/original", + "followers": 794, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x694c033bd2527a5d073582d1e53a92863424350a", + "etherscanUrl": "https://etherscan.io/address/0x694c033bd2527a5d073582d1e53a92863424350a", + "xHandle": "0xbrendaneth", + "xUrl": "https://twitter.com/0xbrendaneth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143381", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mimikeihere", + "displayName": "MimiKei 💜👽", + "fid": 1143381, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9226195b-b4f6-4134-94e0-f9067c0a9a00/original", + "followers": 793, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d824353fee4a37d40099ffc91078b49abd40c0a", + "etherscanUrl": "https://etherscan.io/address/0x0d824353fee4a37d40099ffc91078b49abd40c0a", + "xHandle": "mimikeihere", + "xUrl": "https://twitter.com/mimikeihere", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_369681", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "huugin", + "displayName": "Huu Gin", + "fid": 369681, + "pfpUrl": "https://i.imgur.com/wJ1mEWE.jpg", + "followers": 785, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e402e05c9df3fb691e874563ced6595853d51f1", + "etherscanUrl": "https://etherscan.io/address/0x7e402e05c9df3fb691e874563ced6595853d51f1", + "xHandle": "ngtuyen50", + "xUrl": "https://twitter.com/ngtuyen50", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148907", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "labyrt", + "displayName": "Labyrt", + "fid": 1148907, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d0429498-a658-44c8-d9e8-71a44a67db00/original", + "followers": 785, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa948547e46d6eed8b491d2e236781becf2e9ae9d", + "etherscanUrl": "https://etherscan.io/address/0xa948547e46d6eed8b491d2e236781becf2e9ae9d", + "xHandle": "labyrt", + "xUrl": "https://twitter.com/labyrt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1179078", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xnd", + "displayName": "xnd", + "fid": 1179078, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88651f62-aee9-403f-f947-270f92215000/original", + "followers": 782, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91f91b360662856432ab4de030327c16ff92de70", + "etherscanUrl": "https://etherscan.io/address/0x91f91b360662856432ab4de030327c16ff92de70", + "xHandle": "xnd_base", + "xUrl": "https://twitter.com/xnd_base", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_916043", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "makewalletgreat", + "displayName": "MWG", + "fid": 916043, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7498e52-02db-44c8-5109-cce4ec05e700/original", + "followers": 779, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0746b7dc0203f8ed1c97faaceadef2e934391270", + "etherscanUrl": "https://etherscan.io/address/0x0746b7dc0203f8ed1c97faaceadef2e934391270", + "xHandle": "0x315xxx", + "xUrl": "https://twitter.com/0x315xxx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_621424", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "katsura", + "displayName": "0xG81Z base.eth", + "fid": 621424, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45fa1bfb-2fb0-4665-4cdb-0734ae49f700/rectcrop3", + "followers": 762, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39d0e21777627d385ddeab2f4cce711c43fb7796", + "etherscanUrl": "https://etherscan.io/address/0x39d0e21777627d385ddeab2f4cce711c43fb7796", + "xHandle": "katsuraserhii", + "xUrl": "https://twitter.com/katsuraserhii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1084615", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kingdropsol", + "displayName": "Base Boys", + "fid": 1084615, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7419453-e3d4-4372-234a-87f160806e00/original", + "followers": 762, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7bf793468f77cfa64cee8cd58c3de0647abe7e6", + "etherscanUrl": "https://etherscan.io/address/0xf7bf793468f77cfa64cee8cd58c3de0647abe7e6", + "xHandle": "kingdropsol", + "xUrl": "https://twitter.com/kingdropsol", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2514", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "azeem", + "displayName": "azeem", + "fid": 2514, + "pfpUrl": "https://i.imgur.com/YBsWO1w.jpg", + "followers": 759, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8876c7147ea9cf17db8be93bb034e8c1a686c0a2", + "etherscanUrl": "https://etherscan.io/address/0x8876c7147ea9cf17db8be93bb034e8c1a686c0a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136011", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "redman758", + "displayName": "Redman 🧬", + "fid": 1136011, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/503cad85-ac62-4011-a685-fa5f9ff6c200/original", + "followers": 741, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6142c6017321eae8c9ceba8d55637872fda40fce", + "etherscanUrl": "https://etherscan.io/address/0x6142c6017321eae8c9ceba8d55637872fda40fce", + "xHandle": "redman075", + "xUrl": "https://twitter.com/redman075", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_967752", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sanjula2001", + "displayName": "Sanjula base.eth", + "fid": 967752, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a904243-73d6-4b8a-4f55-253b46bfe500/original", + "followers": 738, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf27014f177f19c5932ab619f087a7f3f3ae197d4", + "etherscanUrl": "https://etherscan.io/address/0xf27014f177f19c5932ab619f087a7f3f3ae197d4", + "xHandle": "sm7446783059796", + "xUrl": "https://twitter.com/sm7446783059796", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097460", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kriptobatu", + "displayName": "ayibatu.base.eth 🎩🐻", + "fid": 1097460, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6597d7f0-203b-4cc3-8f1a-00dce35a4900/original", + "followers": 725, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4be60cc70d3408a22440e865697cbaaddd14d94", + "etherscanUrl": "https://etherscan.io/address/0xb4be60cc70d3408a22440e865697cbaaddd14d94", + "xHandle": "bthnballi", + "xUrl": "https://twitter.com/bthnballi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_878414", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "john-lyyor-king", + "displayName": "John-Lyyor-King", + "fid": 878414, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf8914bc-deb1-4684-5a63-2a9461b42e00/original", + "followers": 723, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8cec5de747e6512dfd3e6b5e6c4d47aeda8799ff", + "etherscanUrl": "https://etherscan.io/address/0x8cec5de747e6512dfd3e6b5e6c4d47aeda8799ff", + "xHandle": "kinglyyor", + "xUrl": "https://twitter.com/kinglyyor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_306862", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ekaitza", + "displayName": "ekaitza", + "fid": 306862, + "pfpUrl": "https://i.imgur.com/rWLuWSr.jpg", + "followers": 722, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31cdd45c15a2607bf9c43508d78cb26f2727ff1b", + "etherscanUrl": "https://etherscan.io/address/0x31cdd45c15a2607bf9c43508d78cb26f2727ff1b", + "xHandle": "ekaitza_", + "xUrl": "https://twitter.com/ekaitza_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_410023", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gandhionchain.eth", + "displayName": "Mahatma Gandhi", + "fid": 410023, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/00855864-b7e5-4369-2f9d-2d835f285800/original", + "followers": 720, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6d082e8d9feee1b7eaf2f044cbb8c0943fedb00", + "etherscanUrl": "https://etherscan.io/address/0xb6d082e8d9feee1b7eaf2f044cbb8c0943fedb00", + "xHandle": "gandhionchain", + "xUrl": "https://twitter.com/gandhionchain", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1302859", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gabsolad", + "displayName": "Olusola OLADOSU 🟧", + "fid": 1302859, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/f59597d6-5d59-4007-62f6-3d3d48834d00/public", + "followers": 715, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x682bcc1fde1924a25369fe660d816f5e2d56faed", + "etherscanUrl": "https://etherscan.io/address/0x682bcc1fde1924a25369fe660d816f5e2d56faed", + "xHandle": "gabsolad", + "xUrl": "https://twitter.com/gabsolad", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071109", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raples", + "displayName": "Raples 🟦", + "fid": 1071109, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3321b371-d649-4698-3e9c-3da46d455700/original", + "followers": 697, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd7cc01fa99c57e840fd55fcde340ebb56d35277", + "etherscanUrl": "https://etherscan.io/address/0xfd7cc01fa99c57e840fd55fcde340ebb56d35277", + "xHandle": "cast_69k", + "xUrl": "https://twitter.com/cast_69k", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1316599", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nigerian", + "displayName": "ᑎIGEᖇIᗩᑎ", + "fid": 1316599, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e4ceb83-39ea-4111-b6e5-731c13cf9d00/original", + "followers": 696, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54d86dd3e4e1457ab487af6f8bd13a7da11bfc64", + "etherscanUrl": "https://etherscan.io/address/0x54d86dd3e4e1457ab487af6f8bd13a7da11bfc64", + "xHandle": "lets4kinggo", + "xUrl": "https://twitter.com/lets4kinggo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1011081", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptolivealert", + "displayName": "Crypto Live Alerts", + "fid": 1011081, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb86b59d-fac9-40a3-f3e8-b5cb718f1800/original", + "followers": 691, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c5bc5df1100dd9305b1adf0b2189d9b2fd1339d", + "etherscanUrl": "https://etherscan.io/address/0x9c5bc5df1100dd9305b1adf0b2189d9b2fd1339d", + "xHandle": "dbullreal", + "xUrl": "https://twitter.com/dbullreal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_370734", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hosenair", + "displayName": "Hosen Islam", + "fid": 370734, + "pfpUrl": "https://i.imgur.com/IJY6ghp.jpg", + "followers": 686, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf2f6addfa1c6479fc063a33808810d617374491", + "etherscanUrl": "https://etherscan.io/address/0xdf2f6addfa1c6479fc063a33808810d617374491", + "xHandle": "hosenair", + "xUrl": "https://twitter.com/hosenair", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1019945", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "digitaldogg", + "displayName": "DigitalDogg.base.eth", + "fid": 1019945, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98868721-acba-4b9b-e72f-1d0160504a00/original", + "followers": 676, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9dce7e35640fb10696949a5e1fc8c8e0b511a994", + "etherscanUrl": "https://etherscan.io/address/0x9dce7e35640fb10696949a5e1fc8c8e0b511a994", + "xHandle": "azdogg", + "xUrl": "https://twitter.com/azdogg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1318011", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aeeshah", + "displayName": "Aeeshah🍇", + "fid": 1318011, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c1ccda1-0f9e-4624-45e6-dc40d3b45300/original", + "followers": 673, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcbb49472106b342d31315e025c9c307df4bdc54b", + "etherscanUrl": "https://etherscan.io/address/0xcbb49472106b342d31315e025c9c307df4bdc54b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108840", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uselessboy.base.eth", + "displayName": "The Doctor ⚕️", + "fid": 1108840, + "pfpUrl": "https://api.npc.nexus/v1/storage/buckets/6550e3a8c8d1568fe219/files/1108840/preview?project=npcnexus&date=5877977", + "followers": 668, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd53c6e5a487f13a2bff447ba37d1a1daa658289", + "etherscanUrl": "https://etherscan.io/address/0xdd53c6e5a487f13a2bff447ba37d1a1daa658289", + "xHandle": "useleszboy", + "xUrl": "https://twitter.com/useleszboy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_278784", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "prousmansipra", + "displayName": "UsmanSipra", + "fid": 278784, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/720b46d9-5912-40a4-96a2-ec943b546900/original", + "followers": 661, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c3488a3bb13353f480f56847b57f5cce49a38b0", + "etherscanUrl": "https://etherscan.io/address/0x3c3488a3bb13353f480f56847b57f5cce49a38b0", + "xHandle": "usmansipra756", + "xUrl": "https://twitter.com/usmansipra756", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1126823", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmettt456", + "displayName": "Ahmet", + "fid": 1126823, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1758998937/image_uploads/5c2a9da7-81d4-4fcc-8f44-adee98994480.jpg", + "followers": 656, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbecc214191ddc5fdd3aab1f6093500386cef4fac", + "etherscanUrl": "https://etherscan.io/address/0xbecc214191ddc5fdd3aab1f6093500386cef4fac", + "xHandle": "ahmettt456_", + "xUrl": "https://twitter.com/ahmettt456_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_213266", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ivolver", + "displayName": "Ivo Entchev", + "fid": 213266, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44b7566-c4db-4da6-1388-5b90667c7e00/rectcrop3", + "followers": 640, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41e9db2fd426cb4a55b11fec5c739ec1591e2078", + "etherscanUrl": "https://etherscan.io/address/0x41e9db2fd426cb4a55b11fec5c739ec1591e2078", + "xHandle": "ivoentchev", + "xUrl": "https://twitter.com/ivoentchev", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263511", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "snopdog", + "displayName": "Snop Dogs", + "fid": 263511, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305b0ae-a904-4f86-dcbc-b1faa7c5e300/original", + "followers": 637, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc81c4b5803c44fb5c34297d3e0d27d2c952ae65d", + "etherscanUrl": "https://etherscan.io/address/0xc81c4b5803c44fb5c34297d3e0d27d2c952ae65d", + "xHandle": "konochiwa_", + "xUrl": "https://twitter.com/konochiwa_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1318281", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "has-him01", + "displayName": "V4ducky", + "fid": 1318281, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/612728ab-0970-4b90-9e22-d2b86ecb5700/original", + "followers": 621, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbee3e97291667d44f68fd2a21f28b85e7dcf411b", + "etherscanUrl": "https://etherscan.io/address/0xbee3e97291667d44f68fd2a21f28b85e7dcf411b", + "xHandle": "hasnaiinni5956", + "xUrl": "https://twitter.com/hasnaiinni5956", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103910", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alezsavz", + "displayName": "Alezsavz", + "fid": 1103910, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f87d256c-7d46-4e8e-2f20-5a127b8cf200/original", + "followers": 606, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22fc8f0a74cda672ad8a4d9bd9584b3acc2e59b1", + "etherscanUrl": "https://etherscan.io/address/0x22fc8f0a74cda672ad8a4d9bd9584b3acc2e59b1", + "xHandle": "savz_alexclone", + "xUrl": "https://twitter.com/savz_alexclone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_544088", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "givinghands", + "displayName": "Givinghands🟧", + "fid": 544088, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/279c402d-4548-4f5e-c81e-99389a249e00/original", + "followers": 605, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb27477241647e341aa7bd3965f7a45358cc621f8", + "etherscanUrl": "https://etherscan.io/address/0xb27477241647e341aa7bd3965f7a45358cc621f8", + "xHandle": "johnnyhot016", + "xUrl": "https://twitter.com/johnnyhot016", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_388914", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mini1234", + "displayName": "MiniPixel 🎩⛓️💃", + "fid": 388914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14966c94-3a98-4a9d-6f99-feda793ae100/original", + "followers": 596, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb00d5042eaa6946e4bfa05b92b6a4d46fd816ca", + "etherscanUrl": "https://etherscan.io/address/0xfb00d5042eaa6946e4bfa05b92b6a4d46fd816ca", + "xHandle": "hasanhariri79", + "xUrl": "https://twitter.com/hasanhariri79", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148280", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onegreatguy", + "displayName": "Jamiu Abdullahi", + "fid": 1148280, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f38dd6f4-b8bd-4c1a-c0d5-a17026263700/original", + "followers": 591, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe62708cb962588b355e6e98d6180914585e22d43", + "etherscanUrl": "https://etherscan.io/address/0xe62708cb962588b355e6e98d6180914585e22d43", + "xHandle": "one_greatguy", + "xUrl": "https://twitter.com/one_greatguy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1162646", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "temss", + "displayName": "Tems_baddie", + "fid": 1162646, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1758102783/image_uploads/47598216-fd72-4c12-a743-77ae6e67a2c8.jpg", + "followers": 589, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5488e9a651f949ba45aff489820279dd7fff7ece", + "etherscanUrl": "https://etherscan.io/address/0x5488e9a651f949ba45aff489820279dd7fff7ece", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_495027", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nomadd", + "displayName": "Nomad (base.eth)", + "fid": 495027, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73811058-e776-42b4-0816-abc745d5d000/rectcrop3", + "followers": 586, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc77744e31fa59fbc245e835ecd913ffbf99e1f5", + "etherscanUrl": "https://etherscan.io/address/0xdc77744e31fa59fbc245e835ecd913ffbf99e1f5", + "xHandle": "nomad29794994", + "xUrl": "https://twitter.com/nomad29794994", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1174898", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mahiya", + "displayName": "Noor Hidayah", + "fid": 1174898, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60d57710-92cc-4272-d899-70b2c8f0e500/original", + "followers": 585, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a9c407f6cd820f3ce107fcda2b21bd5875f5f7c", + "etherscanUrl": "https://etherscan.io/address/0x9a9c407f6cd820f3ce107fcda2b21bd5875f5f7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_299126", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "belsh", + "displayName": "Mavryk", + "fid": 299126, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e5c46d1-8f8d-4879-53ca-631c2a586700/rectcrop3", + "followers": 584, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2b425fbff04eabfdd21a6b9a77f6a6c53cd9cf79", + "etherscanUrl": "https://etherscan.io/address/0x2b425fbff04eabfdd21a6b9a77f6a6c53cd9cf79", + "xHandle": "eze_e87885827", + "xUrl": "https://twitter.com/eze_e87885827", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140128", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rokhsi", + "displayName": "rokhsi", + "fid": 1140128, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40814025-3b58-42d4-917b-6d17eb6abb00/original", + "followers": 562, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a50a789dfcd40e43e6d3cdbe351efcf17129e39", + "etherscanUrl": "https://etherscan.io/address/0x5a50a789dfcd40e43e6d3cdbe351efcf17129e39", + "xHandle": "ozy_safu", + "xUrl": "https://twitter.com/ozy_safu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1101189", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "selyn831-", + "displayName": "S3LYNDiAz-", + "fid": 1101189, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/922b520d-e4ea-4163-3cc2-cf4cba4bcc00/original", + "followers": 561, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60f358747507be3df61c583c07b8c9ab3e3d9875", + "etherscanUrl": "https://etherscan.io/address/0x60f358747507be3df61c583c07b8c9ab3e3d9875", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1011400", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ohmdreams", + "displayName": "ohm.", + "fid": 1011400, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bba74b49-b569-4ac9-cd40-224621cd6f00/original", + "followers": 554, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c5d049a8edf8769fed8465f5710c77147c270b0", + "etherscanUrl": "https://etherscan.io/address/0x1c5d049a8edf8769fed8465f5710c77147c270b0", + "xHandle": "ohmdreams", + "xUrl": "https://twitter.com/ohmdreams", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_429656", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ghanei4030", + "displayName": "Reza Ghanei", + "fid": 429656, + "pfpUrl": "https://i.imgur.com/CIYQYU8.jpg", + "followers": 532, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41a537dee1e6eaf40345486e0f9018ba1bddf2b4", + "etherscanUrl": "https://etherscan.io/address/0x41a537dee1e6eaf40345486e0f9018ba1bddf2b4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1350093", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nounsbot", + "displayName": "nounsbot", + "fid": 1350093, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58f57a10-f589-447d-24e4-01063f2c7100/original", + "followers": 528, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ea701436c19ebcf1bd4e491c6ad55d7f35afb0b", + "etherscanUrl": "https://etherscan.io/address/0x9ea701436c19ebcf1bd4e491c6ad55d7f35afb0b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1228091", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "talkless", + "displayName": "ScottIY", + "fid": 1228091, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/df0759aa-3a2a-4ef6-867d-5f24fa4ff900/rectcrop3", + "followers": 520, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d0dd3b4372690314c406d5848fa5a9c0b9b3d6b", + "etherscanUrl": "https://etherscan.io/address/0x2d0dd3b4372690314c406d5848fa5a9c0b9b3d6b", + "xHandle": "iyobosascott", + "xUrl": "https://twitter.com/iyobosascott", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1119208", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wiszzy", + "displayName": "Wiszzy", + "fid": 1119208, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/bc122d64-66cc-4950-d822-5be384a3fb00/public", + "followers": 515, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e3895607e70abbf634d2fab263dd278c007948e", + "etherscanUrl": "https://etherscan.io/address/0x7e3895607e70abbf634d2fab263dd278c007948e", + "xHandle": "johnjuwee24698", + "xUrl": "https://twitter.com/johnjuwee24698", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605515", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onlin", + "displayName": "Onlin", + "fid": 605515, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60df10eb-71d6-4a8a-c358-c60f7a4f5900/original", + "followers": 511, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc923d13a029b14ff581ed15d90a678a14ad9d596", + "etherscanUrl": "https://etherscan.io/address/0xc923d13a029b14ff581ed15d90a678a14ad9d596", + "xHandle": "online1198416", + "xUrl": "https://twitter.com/online1198416", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_538697", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "artdante", + "displayName": "artdante", + "fid": 538697, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f60a270-c80c-4aa8-99ae-7c0c537ba200/original", + "followers": 506, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ced244d275c08ac77f6cf2d7c40db648903428a", + "etherscanUrl": "https://etherscan.io/address/0x8ced244d275c08ac77f6cf2d7c40db648903428a", + "xHandle": "ardi83094483", + "xUrl": "https://twitter.com/ardi83094483", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_427955", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "charina", + "displayName": "Charina Follow", + "fid": 427955, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96cf0080-1cfd-4ca1-5d1d-97cc36451400/original", + "followers": 488, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe67b4d49d638e6d6357d8529fa5d890621c5716", + "etherscanUrl": "https://etherscan.io/address/0xbe67b4d49d638e6d6357d8529fa5d890621c5716", + "xHandle": "cryptocha07", + "xUrl": "https://twitter.com/cryptocha07", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309961", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "poluchi", + "displayName": "June2", + "fid": 309961, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5aeb7aa2-d8e5-4f0c-6201-5a643e415a00/original", + "followers": 483, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58e18631ee31a0b190ca2249bc82c48d571129aa", + "etherscanUrl": "https://etherscan.io/address/0x58e18631ee31a0b190ca2249bc82c48d571129aa", + "xHandle": "talkingset", + "xUrl": "https://twitter.com/talkingset", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_448511", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yosandi26", + "displayName": "Leon.base.eth", + "fid": 448511, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75b74ffc-8480-4215-6f57-2d819af78600/original", + "followers": 469, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59509bcee105038d14e2f023a48908221423bcca", + "etherscanUrl": "https://etherscan.io/address/0x59509bcee105038d14e2f023a48908221423bcca", + "xHandle": "chiguykansas", + "xUrl": "https://twitter.com/chiguykansas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130958", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chinedu34", + "displayName": "Chinedu Micheal", + "fid": 1130958, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762809571/2abf1b52-49e0-4370-8420-27a10648dc44.jpg", + "followers": 467, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x441950c5ba32b2c0840954d90f76af57d6f6065b", + "etherscanUrl": "https://etherscan.io/address/0x441950c5ba32b2c0840954d90f76af57d6f6065b", + "xHandle": "cmichael55188", + "xUrl": "https://twitter.com/cmichael55188", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_879770", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crisnguyen99", + "displayName": "0xCris", + "fid": 879770, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5834c7ab-dd0a-42a1-e840-3a1f0ea45d00/rectcrop3", + "followers": 438, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ae41f29127ee6302da67f3b9ff108590b666bd3", + "etherscanUrl": "https://etherscan.io/address/0x0ae41f29127ee6302da67f3b9ff108590b666bd3", + "xHandle": "0xcris_builder", + "xUrl": "https://twitter.com/0xcris_builder", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_393871", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mukhlis-absart", + "displayName": "Mukhlis ABSart ⌐◨-◨", + "fid": 393871, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762471451/02e89702-0939-4058-8f66-c177188fffad.jpg.jpg", + "followers": 432, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12058fce8c1d1d316a377b554595e22613c3bce2", + "etherscanUrl": "https://etherscan.io/address/0x12058fce8c1d1d316a377b554595e22613c3bce2", + "xHandle": "absart6", + "xUrl": "https://twitter.com/absart6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1343363", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lady22", + "displayName": "lady22", + "fid": 1343363, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a54232b-bcb6-40f9-d746-0f33c1b87800/original", + "followers": 429, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x692d86620d62cf69a58ab5d94a37985a969a6ff1", + "etherscanUrl": "https://etherscan.io/address/0x692d86620d62cf69a58ab5d94a37985a969a6ff1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_452876", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "urs793", + "displayName": "Ursulescu Adelin🎩 ", + "fid": 452876, + "pfpUrl": "https://i.imgur.com/YXNVVLk.jpg", + "followers": 427, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8784119cc46b01ca6d42485ebcc6c71444daba1c", + "etherscanUrl": "https://etherscan.io/address/0x8784119cc46b01ca6d42485ebcc6c71444daba1c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1351150", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gatesyasar", + "displayName": "GATES YASAR", + "fid": 1351150, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/247f4da1-392c-4896-82b0-6ec36cebdd00/original", + "followers": 412, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4498c52f0ad6b6ab1fc787a21c2a19566980f70f", + "etherscanUrl": "https://etherscan.io/address/0x4498c52f0ad6b6ab1fc787a21c2a19566980f70f", + "xHandle": "gatesyasar", + "xUrl": "https://twitter.com/gatesyasar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_528280", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blueswing", + "displayName": "Warpcaster.base.eth", + "fid": 528280, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37921001-b3b4-485a-c122-0047dc094f00/original", + "followers": 410, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbab39750886377dc446a196c562171ec1e370881", + "etherscanUrl": "https://etherscan.io/address/0xbab39750886377dc446a196c562171ec1e370881", + "xHandle": "blueswinggg", + "xUrl": "https://twitter.com/blueswinggg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9290", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chrismeetworld", + "displayName": "Chris Martin", + "fid": 9290, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/de415a8f-a17f-4ace-1e20-9c3286891600/original", + "followers": 406, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80212d1d03cb6a12b61cf5e98ca98d30c293127c", + "etherscanUrl": "https://etherscan.io/address/0x80212d1d03cb6a12b61cf5e98ca98d30c293127c", + "xHandle": "chrismeetworld", + "xUrl": "https://twitter.com/chrismeetworld", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1158421", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arairayden", + "displayName": "Arai Rayden", + "fid": 1158421, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4914a7c9-9132-45e2-1e8f-4e0618a2dd00/original", + "followers": 401, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2aa74c038be285c7fa184eac5f919602538e04f9", + "etherscanUrl": "https://etherscan.io/address/0x2aa74c038be285c7fa184eac5f919602538e04f9", + "xHandle": "arai_rayden", + "xUrl": "https://twitter.com/arai_rayden", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_649242", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ivannalen", + "displayName": "Ivanna", + "fid": 649242, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmbHtnP6koEGY9QQcTV2uNRAJNSqTYkh9ipS7vwaERLUuR?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3349f432dadc327d8b8a6234d8ed43bc0109c01b", + "etherscanUrl": "https://etherscan.io/address/0x3349f432dadc327d8b8a6234d8ed43bc0109c01b", + "xHandle": "ivannalen_la", + "xUrl": "https://twitter.com/ivannalen_la", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_278099", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "glozzy", + "displayName": "Glozzy", + "fid": 278099, + "pfpUrl": "https://i.imgur.com/YuuU0ki.jpg", + "followers": 399, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d2138a87c686eb11b7c81811c715ac4f4b8247e", + "etherscanUrl": "https://etherscan.io/address/0x0d2138a87c686eb11b7c81811c715ac4f4b8247e", + "xHandle": "juliwhite85", + "xUrl": "https://twitter.com/juliwhite85", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_345410", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "loverain", + "displayName": "Ann Gie", + "fid": 345410, + "pfpUrl": "https://i.imgur.com/b8jSNP6.jpg", + "followers": 391, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x474e107835c80722ce27a676dbc3b4d3e91c0cc8", + "etherscanUrl": "https://etherscan.io/address/0x474e107835c80722ce27a676dbc3b4d3e91c0cc8", + "xHandle": "loverain2994", + "xUrl": "https://twitter.com/loverain2994", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143909", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "muntahaqueen", + "displayName": "Mun_Taha", + "fid": 1143909, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4f9ced55-68f1-4d52-9c4e-9722f1207000/original", + "followers": 389, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77001d1c26c9bc4d27163078ad6e688f2e1539a2", + "etherscanUrl": "https://etherscan.io/address/0x77001d1c26c9bc4d27163078ad6e688f2e1539a2", + "xHandle": "mun__taha", + "xUrl": "https://twitter.com/mun__taha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1051665", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tinnycerda", + "displayName": "TinnyCedar", + "fid": 1051665, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/675657dd-594a-4120-6386-462351a3e500/rectcrop3", + "followers": 382, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d0ce00b381f596e332287f888206cc090b05dbd", + "etherscanUrl": "https://etherscan.io/address/0x6d0ce00b381f596e332287f888206cc090b05dbd", + "xHandle": "0xmonk1", + "xUrl": "https://twitter.com/0xmonk1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_310929", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tyrelle", + "displayName": "Ty", + "fid": 310929, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9ff52bd-0293-4902-c0b2-255891493300/original", + "followers": 381, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32ee40a6fc477d5b20b60387ed6e57fc13714db9", + "etherscanUrl": "https://etherscan.io/address/0x32ee40a6fc477d5b20b60387ed6e57fc13714db9", + "xHandle": "tyrelle_adams", + "xUrl": "https://twitter.com/tyrelle_adams", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1078302", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alary-creates", + "displayName": "Real Soul", + "fid": 1078302, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16902bbf-fdde-475f-77f7-b1f13a3d9000/original", + "followers": 372, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5da5b333e10a5271b673d01defad9e272446e45f", + "etherscanUrl": "https://etherscan.io/address/0x5da5b333e10a5271b673d01defad9e272446e45f", + "xHandle": "infant_cthulhu", + "xUrl": "https://twitter.com/infant_cthulhu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1041009", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tiktokzora", + "displayName": "TiktokZora 🧬", + "fid": 1041009, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/dfc684d0-adfb-459d-eb0c-b220a011da00/public", + "followers": 367, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x013f19b54b1ff458e2b22c1a795c803224ec29a8", + "etherscanUrl": "https://etherscan.io/address/0x013f19b54b1ff458e2b22c1a795c803224ec29a8", + "xHandle": "_baseddao_", + "xUrl": "https://twitter.com/_baseddao_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_340596", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "realist", + "displayName": "CHIEF DADDY🎭🐱", + "fid": 340596, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28d9855e-1e4a-4cae-11f2-fd3fabdf7900/original", + "followers": 367, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14d7fa64c6059b32622e1484577c8ed5521d580b", + "etherscanUrl": "https://etherscan.io/address/0x14d7fa64c6059b32622e1484577c8ed5521d580b", + "xHandle": "faslightlight", + "xUrl": "https://twitter.com/faslightlight", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1358560", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zippocu", + "displayName": "zippocu.base.eth", + "fid": 1358560, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fe4373a-2af4-4b29-4c0d-a4dbf42b3800/original", + "followers": 366, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27f15e71b8461a32576daf0528efaba87ac06759", + "etherscanUrl": "https://etherscan.io/address/0x27f15e71b8461a32576daf0528efaba87ac06759", + "xHandle": "airdrop_kai", + "xUrl": "https://twitter.com/airdrop_kai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_867789", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ammor", + "displayName": "ammor", + "fid": 867789, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f540cc6b-c418-4414-0d74-2e358ab5a900/rectcrop3", + "followers": 360, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb62183c2994b40e267716fa7635c875538913fe3", + "etherscanUrl": "https://etherscan.io/address/0xb62183c2994b40e267716fa7635c875538913fe3", + "xHandle": "0xammor", + "xUrl": "https://twitter.com/0xammor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_886379", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arepa", + "displayName": "Arepa", + "fid": 886379, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a5e2a70-0b79-4b28-3b01-f6febdb10c00/original", + "followers": 359, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf507c281ee8f5aa74b14177ae8ce4a19f4ea605", + "etherscanUrl": "https://etherscan.io/address/0xaf507c281ee8f5aa74b14177ae8ce4a19f4ea605", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1015552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tmfa", + "displayName": "Matty Mo", + "fid": 1015552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16c671e6-ecf7-4032-fb81-edb450ad2100/rectcrop3", + "followers": 357, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb22433e5914d4685779755c183d7c16f82e449c3", + "etherscanUrl": "https://etherscan.io/address/0xb22433e5914d4685779755c183d7c16f82e449c3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115959", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamo", + "displayName": "Mamo", + "fid": 1115959, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/29127853-1c88-42b2-d35e-2314575de200/original", + "followers": 357, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebe49f6e1f8ed962d997cbdb55e1ccbfbccdc93f", + "etherscanUrl": "https://etherscan.io/address/0xebe49f6e1f8ed962d997cbdb55e1ccbfbccdc93f", + "xHandle": "mamo_agent", + "xUrl": "https://twitter.com/mamo_agent", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20558", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "w-g", + "displayName": "w-g", + "fid": 20558, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1f85fe9-9d7b-4bb1-f4af-c8f92af7e500/rectcrop3", + "followers": 353, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b6a3712c8afc0d9cb6316aea5838708c89567bb", + "etherscanUrl": "https://etherscan.io/address/0x7b6a3712c8afc0d9cb6316aea5838708c89567bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486040", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "robertpo4p", + "displayName": "Ro₿ertPo4p.farcaster.eth", + "fid": 486040, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35be2513-5731-4df9-943c-391facc58600/rectcrop3", + "followers": 351, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6bdecf5c8af563e4f63a32dabc10f833a748e2ba", + "etherscanUrl": "https://etherscan.io/address/0x6bdecf5c8af563e4f63a32dabc10f833a748e2ba", + "xHandle": "roberto66617522", + "xUrl": "https://twitter.com/roberto66617522", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_374867", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xaprilia", + "displayName": "Aprlz", + "fid": 374867, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/156cb89f-fad6-45aa-8fdc-74b044f12100/original", + "followers": 349, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b3c81ecb179fbf3bd64b69418a6f3968c3d5482", + "etherscanUrl": "https://etherscan.io/address/0x6b3c81ecb179fbf3bd64b69418a6f3968c3d5482", + "xHandle": "0xaprilia", + "xUrl": "https://twitter.com/0xaprilia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1268211", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "farmfiguru", + "displayName": "Farmfiguru", + "fid": 1268211, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a787ec83-0582-4a03-0b53-c6a2bced2e00/original", + "followers": 349, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x474d464af37d9c6d689bc52e1543c20f105005e4", + "etherscanUrl": "https://etherscan.io/address/0x474d464af37d9c6d689bc52e1543c20f105005e4", + "xHandle": "farmfiguru1", + "xUrl": "https://twitter.com/farmfiguru1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263443", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wongslebor", + "displayName": "WongSlebor", + "fid": 263443, + "pfpUrl": "https://i.imgur.com/5LYepJ1.jpg", + "followers": 348, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32158b897e99796d5655524e42826a8d863e06e7", + "etherscanUrl": "https://etherscan.io/address/0x32158b897e99796d5655524e42826a8d863e06e7", + "xHandle": "ifirash", + "xUrl": "https://twitter.com/ifirash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_327321", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juanpez", + "displayName": "Juan Pez 🎩", + "fid": 327321, + "pfpUrl": "https://i.imgur.com/LH7TRs2.jpg", + "followers": 340, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6230cdba562cc7d0222242a67a5ea93505ff5ef0", + "etherscanUrl": "https://etherscan.io/address/0x6230cdba562cc7d0222242a67a5ea93505ff5ef0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128325", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adaliwolf1", + "displayName": "Adaliwolf", + "fid": 1128325, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e10573c-d001-45f1-002c-8ff1c5ee3200/original", + "followers": 339, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3c8a1945c03a0ccef1b36aa93dbf6774073cab3", + "etherscanUrl": "https://etherscan.io/address/0xd3c8a1945c03a0ccef1b36aa93dbf6774073cab3", + "xHandle": "lordadaliwolf1", + "xUrl": "https://twitter.com/lordadaliwolf1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_787949", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "s0mye", + "displayName": "Alma WIN", + "fid": 787949, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a10a6e84-1c08-45ee-b0d9-3a10627e8600/original", + "followers": 337, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9354551511df7d48c9995f83b5594d606c3c2ef", + "etherscanUrl": "https://etherscan.io/address/0xa9354551511df7d48c9995f83b5594d606c3c2ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263943", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xyezh", + "displayName": "Yezh", + "fid": 263943, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd0a66d2-9f6a-4d0e-9755-47d55a0bd800/original", + "followers": 336, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f478dd3eed940c7af5c8967bc7a9e510f707254", + "etherscanUrl": "https://etherscan.io/address/0x4f478dd3eed940c7af5c8967bc7a9e510f707254", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146559", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "grinluxury", + "displayName": "Yakubu Yunusa", + "fid": 1146559, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17a2ca8d-52d4-4012-60db-5d119cba8700/original", + "followers": 336, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30df66fc5651ba799d471d8a7287a1639ef4d68c", + "etherscanUrl": "https://etherscan.io/address/0x30df66fc5651ba799d471d8a7287a1639ef4d68c", + "xHandle": "grincurrencey", + "xUrl": "https://twitter.com/grincurrencey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_352089", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ganesh1515", + "displayName": "Ganesh🦉", + "fid": 352089, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6277f41a-c0de-4290-d91b-cff3424eb400/original", + "followers": 326, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbee0f68a54a8c450aee759b01278940c2968907b", + "etherscanUrl": "https://etherscan.io/address/0xbee0f68a54a8c450aee759b01278940c2968907b", + "xHandle": "ganeshrk15", + "xUrl": "https://twitter.com/ganeshrk15", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_806151", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "04k", + "displayName": "Longlost Capital", + "fid": 806151, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/68b5884b-744f-4988-af60-d8169c792900/original", + "followers": 324, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe280067df7f9becf219ebb604a46854788ed3631", + "etherscanUrl": "https://etherscan.io/address/0xe280067df7f9becf219ebb604a46854788ed3631", + "xHandle": "drbasedarthouse", + "xUrl": "https://twitter.com/drbasedarthouse", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_956498", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shirollsasaki", + "displayName": "shirollsasaki", + "fid": 956498, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b2ec6f79-34cc-420d-92fc-6e927f366f00/original", + "followers": 317, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bb984b95a644f7a099ae5725e0a819520cc3cb3", + "etherscanUrl": "https://etherscan.io/address/0x4bb984b95a644f7a099ae5725e0a819520cc3cb3", + "xHandle": "shirollsasaki", + "xUrl": "https://twitter.com/shirollsasaki", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1345753", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fatemehg", + "displayName": "fatima", + "fid": 1345753, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d311ea1d-177e-4afc-df9f-8b2e60775800/original", + "followers": 316, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1f4669862ab7894587c7a93b4f9450948be3b7c", + "etherscanUrl": "https://etherscan.io/address/0xb1f4669862ab7894587c7a93b4f9450948be3b7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1369291", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uchemary", + "displayName": "uchemary", + "fid": 1369291, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 314, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27d4b7e43be3160bb2d71475cdf1300552bca7ce", + "etherscanUrl": "https://etherscan.io/address/0x27d4b7e43be3160bb2d71475cdf1300552bca7ce", + "xHandle": "adedami_xx", + "xUrl": "https://twitter.com/adedami_xx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1154175", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "perfectpie", + "displayName": "PERFECT PIE", + "fid": 1154175, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/803e0955-20a2-4b74-220a-d2e5cb4f2e00/original", + "followers": 310, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x401817fe202219e327d6ab3985ddd20bacb7a8d3", + "etherscanUrl": "https://etherscan.io/address/0x401817fe202219e327d6ab3985ddd20bacb7a8d3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1161941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fazzysolos", + "displayName": "Fazzy", + "fid": 1161941, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1760284667/image_uploads/fd76e407-91ac-4ee2-908d-684e8708beb1.webp", + "followers": 308, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa17f6b9531ae04ef03d4fa82b19fb630e54e4723", + "etherscanUrl": "https://etherscan.io/address/0xa17f6b9531ae04ef03d4fa82b19fb630e54e4723", + "xHandle": "fazzy5533", + "xUrl": "https://twitter.com/fazzy5533", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486993", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "platohedro", + "displayName": "PlatohedroBoss", + "fid": 486993, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7576f0e2-26b3-4b69-2370-55e20bd50b00/original", + "followers": 306, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b0eb5adad75ca1feebf34a1d4e3e9cb353bf2fd", + "etherscanUrl": "https://etherscan.io/address/0x4b0eb5adad75ca1feebf34a1d4e3e9cb353bf2fd", + "xHandle": "alexrubeola", + "xUrl": "https://twitter.com/alexrubeola", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_244186", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adamparish.eth", + "displayName": "Adam Parish", + "fid": 244186, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/525c5fec-a756-43a6-bc03-1305909d1400/original", + "followers": 301, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ae16f176561c5139b7c74bed56cd05db21dc283", + "etherscanUrl": "https://etherscan.io/address/0x5ae16f176561c5139b7c74bed56cd05db21dc283", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_328277", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mithun58", + "displayName": "mmithun.base.eth", + "fid": 328277, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bdf19a27-f7b1-49e8-c67c-033f3e9c1a00/rectcrop3", + "followers": 299, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb95599fec0c9e4ccbb19185c9dcf0923ef180950", + "etherscanUrl": "https://etherscan.io/address/0xb95599fec0c9e4ccbb19185c9dcf0923ef180950", + "xHandle": "mistrymit85630", + "xUrl": "https://twitter.com/mistrymit85630", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063022", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jodians", + "displayName": "jodians.base.eth", + "fid": 1063022, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4abbfc9-4c28-47ed-de66-edec7be31800/original", + "followers": 293, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x697d6a17db4251ad859dd115193b21d034f14e30", + "etherscanUrl": "https://etherscan.io/address/0x697d6a17db4251ad859dd115193b21d034f14e30", + "xHandle": "jodi1618", + "xUrl": "https://twitter.com/jodi1618", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_563427", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "azarartistnft", + "displayName": "Azarartistnft😺👾🎩🔵", + "fid": 563427, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bff0c3c-2add-450e-42cc-185f2699f400/rectcrop3", + "followers": 291, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2b761013188f55d0ef6612071cecd151fd96c9d", + "etherscanUrl": "https://etherscan.io/address/0xf2b761013188f55d0ef6612071cecd151fd96c9d", + "xHandle": "azarartistnft", + "xUrl": "https://twitter.com/azarartistnft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_644057", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pixelverse", + "displayName": "Pixelverse_xyz 🟣 ", + "fid": 644057, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd756e13-3294-457d-6a81-280e62cd5300/rectcrop3", + "followers": 291, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8d7ccdcd23770f5a9e3649a46546632314eb310", + "etherscanUrl": "https://etherscan.io/address/0xe8d7ccdcd23770f5a9e3649a46546632314eb310", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_847444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wispich", + "displayName": "Andrew Wispich", + "fid": 847444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43df4a54-dc17-4070-8895-db45359f9400/rectcrop3", + "followers": 288, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3588630369c342bcbb74e6600dc9c52524207dda", + "etherscanUrl": "https://etherscan.io/address/0x3588630369c342bcbb74e6600dc9c52524207dda", + "xHandle": "austim44", + "xUrl": "https://twitter.com/austim44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921962", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xdusk", + "displayName": "0xdusk", + "fid": 921962, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bd2440d-c0fa-4869-f4ad-e8b485d84200/rectcrop3", + "followers": 280, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xea9f330528bc6065a4c1919028d7419dbbcc8a1e", + "etherscanUrl": "https://etherscan.io/address/0xea9f330528bc6065a4c1919028d7419dbbcc8a1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1112512", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hemanthpnft", + "displayName": "Hemanthpnft", + "fid": 1112512, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762066304/1000013518.jpg.jpg", + "followers": 273, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f5fa842c65a110e77dacb729cc04cf4952d6a50", + "etherscanUrl": "https://etherscan.io/address/0x9f5fa842c65a110e77dacb729cc04cf4952d6a50", + "xHandle": "hemanthp_nft", + "xUrl": "https://twitter.com/hemanthp_nft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189359", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "checo", + "displayName": "Checo", + "fid": 189359, + "pfpUrl": "https://i.imgur.com/pLn7JfU.jpg", + "followers": 273, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d30f753bfbf658d0d107c78f432b08fb222b363", + "etherscanUrl": "https://etherscan.io/address/0x6d30f753bfbf658d0d107c78f432b08fb222b363", + "xHandle": "pvoff", + "xUrl": "https://twitter.com/pvoff", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_637139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gabriellagomusic", + "displayName": "gabriellago.music.eth", + "fid": 637139, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1b5c6eb2-399f-4ef5-d0df-dfe962f5b100/original", + "followers": 267, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x697c7720dc08f1eb1fde54420432efc6ad594244", + "etherscanUrl": "https://etherscan.io/address/0x697c7720dc08f1eb1fde54420432efc6ad594244", + "xHandle": "gabriellago94", + "xUrl": "https://twitter.com/gabriellago94", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_832015", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theyirs", + "displayName": "Yirs", + "fid": 832015, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7241dba1-a029-491e-1cd4-cf52bc481300/rectcrop3", + "followers": 264, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfde349334fd92934b706ab1c7fac5c086789e4b9", + "etherscanUrl": "https://etherscan.io/address/0xfde349334fd92934b706ab1c7fac5c086789e4b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_893596", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hoatranit", + "displayName": "RomRom | base.eth", + "fid": 893596, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1e62ed8-d9df-4717-834a-b840e7b78400/original", + "followers": 261, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7fe694a5f7ef358db37525802e63751432e0d5af", + "etherscanUrl": "https://etherscan.io/address/0x7fe694a5f7ef358db37525802e63751432e0d5af", + "xHandle": "hoatranrom", + "xUrl": "https://twitter.com/hoatranrom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_477919", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "menta", + "displayName": "Menta.⌐◨-◨", + "fid": 477919, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/812b3548-60d6-4952-0b6e-f434f945ab00/original", + "followers": 260, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b3872501908f12bccaa56c48f57370c3b1871b4", + "etherscanUrl": "https://etherscan.io/address/0x0b3872501908f12bccaa56c48f57370c3b1871b4", + "xHandle": "mentajengibre2", + "xUrl": "https://twitter.com/mentajengibre2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1075360", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kualta.eth", + "displayName": "kualta", + "fid": 1075360, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e98d3a2e-68f3-4d50-138c-dc6465823800/original", + "followers": 259, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdead010d1c8f9b463f5de853902761cdbac53fb7", + "etherscanUrl": "https://etherscan.io/address/0xdead010d1c8f9b463f5de853902761cdbac53fb7", + "xHandle": "kualts", + "xUrl": "https://twitter.com/kualts", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1064067", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sutejo", + "displayName": "SeJe", + "fid": 1064067, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff6e5338-0f7c-4825-1e9f-cb078fa66300/original", + "followers": 257, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x025cf6a35e07488d3300477f752cc2c7b56a8468", + "etherscanUrl": "https://etherscan.io/address/0x025cf6a35e07488d3300477f752cc2c7b56a8468", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135271", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mainboss", + "displayName": "MainBoss", + "fid": 1135271, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/408a13c8-30e7-4079-fcae-68fa67002d00/rectcrop3", + "followers": 257, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb83e1819802304f91797dfe87b7c70ea58ce781f", + "etherscanUrl": "https://etherscan.io/address/0xb83e1819802304f91797dfe87b7c70ea58ce781f", + "xHandle": "officialmainbos", + "xUrl": "https://twitter.com/officialmainbos", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138231", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "omjay", + "displayName": "Omijay.base.eth", + "fid": 1138231, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b0dc6c9-dabd-4e3c-162c-0f36c491c200/original", + "followers": 256, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3219d7605e6880d995ec105f8cd47e5075a9df62", + "etherscanUrl": "https://etherscan.io/address/0x3219d7605e6880d995ec105f8cd47e5075a9df62", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_273123", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xttc16", + "displayName": "XT16", + "fid": 273123, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1758867881/image_uploads/13f9a1f0-35fa-449d-a693-5b949722edd0.jpg", + "followers": 253, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d39afd3631ce5015225c2a7152a8f415eb41dd3", + "etherscanUrl": "https://etherscan.io/address/0x3d39afd3631ce5015225c2a7152a8f415eb41dd3", + "xHandle": "ajaatc", + "xUrl": "https://twitter.com/ajaatc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_350314", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bure", + "displayName": "Bure", + "fid": 350314, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f17de5c-d9b2-491f-c0fd-28747e9b9500/original", + "followers": 245, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6c5b63fdfc6296defb4b250ce0edd28b2e76227", + "etherscanUrl": "https://etherscan.io/address/0xc6c5b63fdfc6296defb4b250ce0edd28b2e76227", + "xHandle": "bureeth", + "xUrl": "https://twitter.com/bureeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_853058", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emilyfoxy", + "displayName": "miladyonchain.base.eth🍋", + "fid": 853058, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69a19d91-e247-4ed6-20ab-5f9fca64c700/original", + "followers": 245, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa96dbbb3951db1a2ea8634aafa4006390402e409", + "etherscanUrl": "https://etherscan.io/address/0xa96dbbb3951db1a2ea8634aafa4006390402e409", + "xHandle": "pilotmew", + "xUrl": "https://twitter.com/pilotmew", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143161", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nikkiwordsmith", + "displayName": "Nikki Wordsmith", + "fid": 1143161, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e0382cc6-f459-4f6f-f36d-859b5d1a9200/original", + "followers": 245, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b3ea00b357a7abcf99f8c63fc21884e29fc7df0", + "etherscanUrl": "https://etherscan.io/address/0x9b3ea00b357a7abcf99f8c63fc21884e29fc7df0", + "xHandle": "nikkiwordsmith", + "xUrl": "https://twitter.com/nikkiwordsmith", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328330", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "experss", + "displayName": "Express", + "fid": 1328330, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f45a250-b6e7-484b-733a-c2a7bdf7d500/original", + "followers": 237, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x918033863f15577f5ad6a58452ff99ef6c783a73", + "etherscanUrl": "https://etherscan.io/address/0x918033863f15577f5ad6a58452ff99ef6c783a73", + "xHandle": "sizhe_bitcat", + "xUrl": "https://twitter.com/sizhe_bitcat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_524995", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hackenturkey", + "displayName": "Hackenturkey", + "fid": 524995, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/688b9b59-e1ef-4731-4529-83737a054200/rectcrop3", + "followers": 234, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2740edc58d2a9a80e806ced27664b92d44ce4f1", + "etherscanUrl": "https://etherscan.io/address/0xa2740edc58d2a9a80e806ced27664b92d44ce4f1", + "xHandle": "nazimkaraalp", + "xUrl": "https://twitter.com/nazimkaraalp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115742", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oxlerworld", + "displayName": "Hopelessly Dude", + "fid": 1115742, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28a8d216-a2d5-442b-25b8-7ed0d0b9ae00/original", + "followers": 229, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa7280f8cec1538034d67707ad317973f4c87c4e9", + "etherscanUrl": "https://etherscan.io/address/0xa7280f8cec1538034d67707ad317973f4c87c4e9", + "xHandle": "oxlerworld", + "xUrl": "https://twitter.com/oxlerworld", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044545", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "swarthyhatter", + "displayName": "SwarthyHatter", + "fid": 1044545, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7f1aa2f-bef0-4e59-0b69-97125a1e6000/original", + "followers": 227, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8463387dfbf40b8c487e24e015b291b3b75a2f89", + "etherscanUrl": "https://etherscan.io/address/0x8463387dfbf40b8c487e24e015b291b3b75a2f89", + "xHandle": "swarthyhatter", + "xUrl": "https://twitter.com/swarthyhatter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_494069", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nenx", + "displayName": "NENX", + "fid": 494069, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f6e6b12-400a-4d75-22c4-841a739ff400/rectcrop3", + "followers": 226, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9ee64d752c9b7b502d24c200858966813482d76", + "etherscanUrl": "https://etherscan.io/address/0xf9ee64d752c9b7b502d24c200858966813482d76", + "xHandle": "n_e_n_x", + "xUrl": "https://twitter.com/n_e_n_x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140321", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "godplans", + "displayName": "Cute Gemini", + "fid": 1140321, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/276f3d18-5ae9-4d11-634a-185b95518200/original", + "followers": 225, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd12259c2aa567daf42bd28ff5ea313abb2502753", + "etherscanUrl": "https://etherscan.io/address/0xd12259c2aa567daf42bd28ff5ea313abb2502753", + "xHandle": "cutegemini9", + "xUrl": "https://twitter.com/cutegemini9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_735487", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "in3gan", + "displayName": "Garry", + "fid": 735487, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fbd16db1-3319-4622-24ae-eb0795326100/original", + "followers": 225, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc448750bfef91f8aebe65893e81df2f88c60cdee", + "etherscanUrl": "https://etherscan.io/address/0xc448750bfef91f8aebe65893e81df2f88c60cdee", + "xHandle": "garry50plus", + "xUrl": "https://twitter.com/garry50plus", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_403173", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rubleonacorn", + "displayName": "E.A", + "fid": 403173, + "pfpUrl": "https://i.imgur.com/t6iJeS2.jpg", + "followers": 223, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe31402888c283689f91f6bd2caffe21c0d1c45bb", + "etherscanUrl": "https://etherscan.io/address/0xe31402888c283689f91f6bd2caffe21c0d1c45bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_451051", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "corvuz", + "displayName": "Crvuz", + "fid": 451051, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5eafffab-8512-4ed3-7613-f61b5b256600/rectcrop3", + "followers": 223, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c59b75333ecec0575b056fa65e2061c56e7392b", + "etherscanUrl": "https://etherscan.io/address/0x2c59b75333ecec0575b056fa65e2061c56e7392b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_807484", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "limpezadepraias", + "displayName": "Limpeza de Praias", + "fid": 807484, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c7cd406-11d8-4446-14be-c243cbc75d00/rectcrop3", + "followers": 220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2aa5769eb74eb35c3f1aa3685674ad9a1d6f61ac", + "etherscanUrl": "https://etherscan.io/address/0x2aa5769eb74eb35c3f1aa3685674ad9a1d6f61ac", + "xHandle": "limpezadepraias", + "xUrl": "https://twitter.com/limpezadepraias", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_374886", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kimmydeuk", + "displayName": "Kimmy", + "fid": 374886, + "pfpUrl": "https://i.imgur.com/KXJCxkZ.jpg", + "followers": 220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72d4e991040e3b65fddbe5f340f65cf03c506e6f", + "etherscanUrl": "https://etherscan.io/address/0x72d4e991040e3b65fddbe5f340f65cf03c506e6f", + "xHandle": "kimmydeuk", + "xUrl": "https://twitter.com/kimmydeuk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1314556", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptoqueen52", + "displayName": "Crytoqueen", + "fid": 1314556, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b56ed17-fa72-437e-6fe9-8046f1433e00/original", + "followers": 220, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x618137ca39146302ca63bd6317832b446ffccdb8", + "etherscanUrl": "https://etherscan.io/address/0x618137ca39146302ca63bd6317832b446ffccdb8", + "xHandle": "happiness51207", + "xUrl": "https://twitter.com/happiness51207", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_366456", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thisdayinmusic", + "displayName": "Music Heals", + "fid": 366456, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55927bb0-ea8d-422d-61bd-613df905e600/original", + "followers": 219, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03baf34105740d0d77ee51e09116a76b5aeb56cd", + "etherscanUrl": "https://etherscan.io/address/0x03baf34105740d0d77ee51e09116a76b5aeb56cd", + "xHandle": "thisdayinmusic_", + "xUrl": "https://twitter.com/thisdayinmusic_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_914793", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "willywarrior", + "displayName": "Willycodexwarrior🧬", + "fid": 914793, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84c853bb-1a0b-4a4f-08ce-873b88127e00/original", + "followers": 216, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdeacde6ec27fd0cd972c1232c4f0d4171dda2357", + "etherscanUrl": "https://etherscan.io/address/0xdeacde6ec27fd0cd972c1232c4f0d4171dda2357", + "xHandle": "willycodexwar", + "xUrl": "https://twitter.com/willycodexwar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1042939", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quynguyen", + "displayName": "Nguyenquy", + "fid": 1042939, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51472bd4-6321-4391-003c-9bc0a1da9b00/rectcrop3", + "followers": 215, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19e3e8da74361487106a7449fda1327b46170708", + "etherscanUrl": "https://etherscan.io/address/0x19e3e8da74361487106a7449fda1327b46170708", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136161", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "toles", + "displayName": "Toles.", + "fid": 1136161, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2589bcf0-05e2-47f1-ac88-52efdd650300/original", + "followers": 215, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9cdc067a57de31ac583465ae0c53321495ec694", + "etherscanUrl": "https://etherscan.io/address/0xa9cdc067a57de31ac583465ae0c53321495ec694", + "xHandle": "toles_cand99143", + "xUrl": "https://twitter.com/toles_cand99143", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212001", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "steambeer", + "displayName": "steambeer.eth", + "fid": 212001, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9967c694-1c2e-4db2-bd0c-92db7c653500/original", + "followers": 214, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x632a05fd67944b709fcec1b40cc5e3d3ac45cfac", + "etherscanUrl": "https://etherscan.io/address/0x632a05fd67944b709fcec1b40cc5e3d3ac45cfac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_543971", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mantis1900", + "displayName": "Mantis1900", + "fid": 543971, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35c1941e-4c35-452f-b739-cc4ddf043700/rectcrop3", + "followers": 212, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1d26ee566a9836b3ad0a64d32880dbe7974ae323", + "etherscanUrl": "https://etherscan.io/address/0x1d26ee566a9836b3ad0a64d32880dbe7974ae323", + "xHandle": "mantis0021", + "xUrl": "https://twitter.com/mantis0021", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_419517", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "temi511", + "displayName": "Temi", + "fid": 419517, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd161038-165a-4b5a-e76c-7d2ec9330300/rectcrop3", + "followers": 211, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcdcf9f3ce3d2cada59d41989cefc694783bae64a", + "etherscanUrl": "https://etherscan.io/address/0xcdcf9f3ce3d2cada59d41989cefc694783bae64a", + "xHandle": "temi_511", + "xUrl": "https://twitter.com/temi_511", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_823872", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nogglesboard", + "displayName": "nogglesboard ⌐◨-◨", + "fid": 823872, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1f8447d-98d9-40de-adc2-63e10f237200/original", + "followers": 210, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x826aedfee3afc8ea216600fe2ded0231821726b4", + "etherscanUrl": "https://etherscan.io/address/0x826aedfee3afc8ea216600fe2ded0231821726b4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_256806", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ber4mins", + "displayName": "ber4mins.base.eth", + "fid": 256806, + "pfpUrl": "https://i.imgur.com/3nyN9jz.jpg", + "followers": 210, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc76b7f5bc0fded34c035f4df38a8a771e4feb87a", + "etherscanUrl": "https://etherscan.io/address/0xc76b7f5bc0fded34c035f4df38a8a771e4feb87a", + "xHandle": "ber4meth", + "xUrl": "https://twitter.com/ber4meth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1165089", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tracy101", + "displayName": "Tee.eth", + "fid": 1165089, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1757953482/image_uploads/557ccde1-d2d8-42e9-b529-96a1e5b65f60.jpg", + "followers": 209, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa0f45cced5ccfa7653c537f7969f58cfd649abe", + "etherscanUrl": "https://etherscan.io/address/0xfa0f45cced5ccfa7653c537f7969f58cfd649abe", + "xHandle": "tracy_ua", + "xUrl": "https://twitter.com/tracy_ua", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1100524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blackitem", + "displayName": "Black Item", + "fid": 1100524, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762425892/930dab1d-bcdb-47c6-a188-ce0f0fa9dc4e.jpg.jpg", + "followers": 208, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53bb438d5a92c85cc48f49fedafb47ae9eb1b725", + "etherscanUrl": "https://etherscan.io/address/0x53bb438d5a92c85cc48f49fedafb47ae9eb1b725", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1319883", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wykin", + "displayName": "Oluwole Durowoju", + "fid": 1319883, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/917e2343-0d56-4f50-2c98-f612f2cf5200/original", + "followers": 208, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x34e5ed4bf31fdfaca6aede83799b661cee5dd88a", + "etherscanUrl": "https://etherscan.io/address/0x34e5ed4bf31fdfaca6aede83799b661cee5dd88a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_334192", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meowdream", + "displayName": "Mia", + "fid": 334192, + "pfpUrl": "https://i.imgur.com/rKG7LjW.jpg", + "followers": 207, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab7b83b5cde0c27f25108f0464d4db446081c084", + "etherscanUrl": "https://etherscan.io/address/0xab7b83b5cde0c27f25108f0464d4db446081c084", + "xHandle": "nessiops", + "xUrl": "https://twitter.com/nessiops", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_448304", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "febysukma", + "displayName": "Febysukma", + "fid": 448304, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2bc8a1ef-7be3-491a-e158-2f3f1df79e00/rectcrop3", + "followers": 203, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdcafaeda824f2dfa6cfe597c1981e71cfdedc02f", + "etherscanUrl": "https://etherscan.io/address/0xdcafaeda824f2dfa6cfe597c1981e71cfdedc02f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_523443", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pandril", + "displayName": "andry.base.eth", + "fid": 523443, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c7e8f2bf-09cd-43d5-0c17-20886da6d300/rectcrop3", + "followers": 202, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x740a94ed944f8b64683731cd8bf27ec737b50197", + "etherscanUrl": "https://etherscan.io/address/0x740a94ed944f8b64683731cd8bf27ec737b50197", + "xHandle": "airdropsmas", + "xUrl": "https://twitter.com/airdropsmas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sonoflasg", + "displayName": "SonOfLasG.⌐◨-◨", + "fid": 5761, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc119567-4ee9-415d-0381-5515bdfd6800/original", + "followers": 199, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0340022ade8cace695458aa81bbda56a623fceb6", + "etherscanUrl": "https://etherscan.io/address/0x0340022ade8cace695458aa81bbda56a623fceb6", + "xHandle": "sonoflasg", + "xUrl": "https://twitter.com/sonoflasg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_431273", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deepsilence", + "displayName": "Deepsilence.base.eth", + "fid": 431273, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/5e48d26f-16b0-47f6-1da4-e5d5b3ebe700/public", + "followers": 199, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9542a321a101407616b9c8731391a7833471d4f", + "etherscanUrl": "https://etherscan.io/address/0xa9542a321a101407616b9c8731391a7833471d4f", + "xHandle": "hakanbuekmez", + "xUrl": "https://twitter.com/hakanbuekmez", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_355585", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "feru0x.eth", + "displayName": "feru.⌐◨-◨", + "fid": 355585, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmXaQH3WRYPfj1UsSEr3GQmiSzYtp26RkvVC6qiRTtkJxV?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 198, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3e0f956a4ed82e26ca33248a3646f4b08aee684", + "etherscanUrl": "https://etherscan.io/address/0xf3e0f956a4ed82e26ca33248a3646f4b08aee684", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1260042", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "signitt", + "displayName": "Signit Jim", + "fid": 1260042, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f048efe3-5e02-4e43-873d-b865a9c15500/original", + "followers": 198, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32191bf14fb6b973897a654b5a0e6bed89e2afa5", + "etherscanUrl": "https://etherscan.io/address/0x32191bf14fb6b973897a654b5a0e6bed89e2afa5", + "xHandle": "signnitt", + "xUrl": "https://twitter.com/signnitt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_472793", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jgonzalezferrer", + "displayName": "Javi🥥.eth", + "fid": 472793, + "pfpUrl": "https://i.imgur.com/tmEERdR.jpg", + "followers": 194, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fff14a4467602bdd88f67458e8e5d50ace42aa2", + "etherscanUrl": "https://etherscan.io/address/0x9fff14a4467602bdd88f67458e8e5d50ace42aa2", + "xHandle": "jgonzalezferrer", + "xUrl": "https://twitter.com/jgonzalezferrer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1065549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nursandy", + "displayName": "AuraSync $DRAW", + "fid": 1065549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0414e77d-27cc-42d5-bbf9-48a365639700/original", + "followers": 190, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ab6039055dcad6b1a369e41a7b8b0e3a800b2ec", + "etherscanUrl": "https://etherscan.io/address/0x4ab6039055dcad6b1a369e41a7b8b0e3a800b2ec", + "xHandle": "nursandy_12", + "xUrl": "https://twitter.com/nursandy_12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_714863", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zingoffic", + "displayName": "zingo", + "fid": 714863, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74656406-05ec-4f72-6308-f236219a2300/original", + "followers": 186, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80bbb3d85c9ebfc6a3b93fc41b636d558693383b", + "etherscanUrl": "https://etherscan.io/address/0x80bbb3d85c9ebfc6a3b93fc41b636d558693383b", + "xHandle": "dinuznidid", + "xUrl": "https://twitter.com/dinuznidid", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1316018", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oterra", + "displayName": "oterra", + "fid": 1316018, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f17f14a-59cd-4837-9876-8657fac6e800/original", + "followers": 185, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58b4b98feaf40452ca58203660b422fc1e5e2798", + "etherscanUrl": "https://etherscan.io/address/0x58b4b98feaf40452ca58203660b422fc1e5e2798", + "xHandle": "oterraxyz", + "xUrl": "https://twitter.com/oterraxyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_803105", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamiqra", + "displayName": "BATOOL", + "fid": 803105, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/65a1bea0-468a-4126-228d-83f16d3db000/original", + "followers": 185, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda477f4e215c17960d37d2ca7cda41918fe0670e", + "etherscanUrl": "https://etherscan.io/address/0xda477f4e215c17960d37d2ca7cda41918fe0670e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1370364", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "digital-alchy", + "displayName": "digital-alchy", + "fid": 1370364, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebcce2bc-f2cf-4095-195d-f9843a3d0d00/original", + "followers": 183, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e67d5cbd49f0764ccba9a8dd0def5de3b2d8794", + "etherscanUrl": "https://etherscan.io/address/0x6e67d5cbd49f0764ccba9a8dd0def5de3b2d8794", + "xHandle": "philipp36533206", + "xUrl": "https://twitter.com/philipp36533206", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1040680", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cookiecam", + "displayName": "CookieCam", + "fid": 1040680, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a05ee18-96fc-4964-f055-537f62e90300/rectcrop3", + "followers": 180, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56fdb45818e617e3ee43d254ef327d8ade26216a", + "etherscanUrl": "https://etherscan.io/address/0x56fdb45818e617e3ee43d254ef327d8ade26216a", + "xHandle": "0xcookiecam", + "xUrl": "https://twitter.com/0xcookiecam", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_861824", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "indeus", + "displayName": "Indeus.eth", + "fid": 861824, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c127ad39-01c4-4b78-09f0-9a6be039e600/original", + "followers": 180, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4851acd8f5162c510737247ecaaef73e895fd74", + "etherscanUrl": "https://etherscan.io/address/0xc4851acd8f5162c510737247ecaaef73e895fd74", + "xHandle": "indeus777", + "xUrl": "https://twitter.com/indeus777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1067156", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "muhalfatiha", + "displayName": "muhalfatiha.base.eth", + "fid": 1067156, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae4db84f-75b2-45fe-94af-375e9c7eb300/original", + "followers": 179, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc45879e03ffada63b2468c3b5560ac8e5859a8b5", + "etherscanUrl": "https://etherscan.io/address/0xc45879e03ffada63b2468c3b5560ac8e5859a8b5", + "xHandle": "malfatiha453", + "xUrl": "https://twitter.com/malfatiha453", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_518189", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sitiostudio.eth", + "displayName": "SITIO", + "fid": 518189, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d9decc9-58db-4ca5-4333-d05846522b00/original", + "followers": 176, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a33c2c4c49b1e9ba6a2410f7bc349511a23bab7", + "etherscanUrl": "https://etherscan.io/address/0x9a33c2c4c49b1e9ba6a2410f7bc349511a23bab7", + "xHandle": "sitiostudio_eth", + "xUrl": "https://twitter.com/sitiostudio_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_854118", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eanounish", + "displayName": "ESCUELA DE ARTE NOUNISH", + "fid": 854118, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f4fc5b2-b344-4eaa-27f3-6910708e5200/rectcrop3", + "followers": 174, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc19f77dd0781605b2f551cfbfb3161ff2d7e93c8", + "etherscanUrl": "https://etherscan.io/address/0xc19f77dd0781605b2f551cfbfb3161ff2d7e93c8", + "xHandle": "eanounish", + "xUrl": "https://twitter.com/eanounish", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1308463", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "agung040987", + "displayName": "Agung", + "fid": 1308463, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 171, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x411e603868fa0e52a48d278059fca53e776cfa91", + "etherscanUrl": "https://etherscan.io/address/0x411e603868fa0e52a48d278059fca53e776cfa91", + "xHandle": "fakhri040987", + "xUrl": "https://twitter.com/fakhri040987", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1120135", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "roton007", + "displayName": "Roton", + "fid": 1120135, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26826afc-7809-4884-88c4-13cdde1e2400/original", + "followers": 171, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c1b16d396115af0c891ddea36eaa3b03de54bcf", + "etherscanUrl": "https://etherscan.io/address/0x2c1b16d396115af0c891ddea36eaa3b03de54bcf", + "xHandle": "mdrajibhos16180", + "xUrl": "https://twitter.com/mdrajibhos16180", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_848467", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alicemack", + "displayName": "Alice Mack", + "fid": 848467, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dcff25e7-26d6-4481-d4ba-480fdc648c00/rectcrop3", + "followers": 171, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa29450ab326e6bdd4a8b82660b1ea0bd15046f21", + "etherscanUrl": "https://etherscan.io/address/0xa29450ab326e6bdd4a8b82660b1ea0bd15046f21", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_604574", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crypto0", + "displayName": "Crypto", + "fid": 604574, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2dc259a7-ae3a-4250-d9b0-58b03031b600/rectcrop3", + "followers": 170, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9142650103fa8ff5e9320769419adbd733fc300", + "etherscanUrl": "https://etherscan.io/address/0xb9142650103fa8ff5e9320769419adbd733fc300", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_452951", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iamdurov.base.eth", + "displayName": "Lizard 🦎", + "fid": 452951, + "pfpUrl": "https://i.imgur.com/t81d4v5.jpg", + "followers": 169, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e3a9314a2e89b264eb66b259cc89e710dfa911f", + "etherscanUrl": "https://etherscan.io/address/0x3e3a9314a2e89b264eb66b259cc89e710dfa911f", + "xHandle": "ton_of_voice", + "xUrl": "https://twitter.com/ton_of_voice", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_878272", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vidaverde.eth", + "displayName": "VidaVerde", + "fid": 878272, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fce0c3f9-a7b4-4afe-e080-07dfef397600/original", + "followers": 167, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05c73ecef963fd68a414e713f4b28d9e792c73bd", + "etherscanUrl": "https://etherscan.io/address/0x05c73ecef963fd68a414e713f4b28d9e792c73bd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098733", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trainweek", + "displayName": "trainweek", + "fid": 1098733, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762295663/1000064802.jpg.jpg", + "followers": 167, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x677a4283a5c2c3df3e371fe6b32fa80912fc9482", + "etherscanUrl": "https://etherscan.io/address/0x677a4283a5c2c3df3e371fe6b32fa80912fc9482", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098759", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "starsystem", + "displayName": "Starsystem.eth", + "fid": 1098759, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/446693cb-3af3-49c0-18b3-9354c7b1ff00/original", + "followers": 166, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42e1183cc5e3302c067f790efe432e2e42de6679", + "etherscanUrl": "https://etherscan.io/address/0x42e1183cc5e3302c067f790efe432e2e42de6679", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_451031", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "clawclawclaw.eth", + "displayName": "claw", + "fid": 451031, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9db1a58-1416-4049-1a82-5a3d58b33900/original", + "followers": 165, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe60696852e0e505f7d0c6742b19a2923ad6d6e66", + "etherscanUrl": "https://etherscan.io/address/0xe60696852e0e505f7d0c6742b19a2923ad6d6e66", + "xHandle": "mmsolig", + "xUrl": "https://twitter.com/mmsolig", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1162855", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "honeydrop", + "displayName": "Honey Scarlets", + "fid": 1162855, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6315c08-87e0-459d-5649-5d21a117ed00/original", + "followers": 165, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67ad927350208ce5258b21bb030a379c185408c7", + "etherscanUrl": "https://etherscan.io/address/0x67ad927350208ce5258b21bb030a379c185408c7", + "xHandle": "shawntrigo7", + "xUrl": "https://twitter.com/shawntrigo7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_560434", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "haynedon", + "displayName": "Haynedon", + "fid": 560434, + "pfpUrl": "https://arweave.net/WIfI3JSAWiMh0-fgoP9OxycKAjWdQWAAvkkjoXt4zhw/", + "followers": 164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ffe1f5323d5866e730d452addabc115adbcbb55", + "etherscanUrl": "https://etherscan.io/address/0x9ffe1f5323d5866e730d452addabc115adbcbb55", + "xHandle": "haenodon", + "xUrl": "https://twitter.com/haenodon", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1101314", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "megure", + "displayName": "Megure", + "fid": 1101314, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ec086e0-6c06-43cd-9015-046f63a56400/original", + "followers": 164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec129a8071c202455103640c5b8f17f6e6bd248d", + "etherscanUrl": "https://etherscan.io/address/0xec129a8071c202455103640c5b8f17f6e6bd248d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103027", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "miltonmondal", + "displayName": "Milton Mondal", + "fid": 1103027, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9d480d5c-93b5-41d2-13fb-bdb2a6cd8a00/original", + "followers": 164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58eac185c7dae8c09d965ce3680dde9f11c1b2de", + "etherscanUrl": "https://etherscan.io/address/0x58eac185c7dae8c09d965ce3680dde9f11c1b2de", + "xHandle": "miltonm13391981", + "xUrl": "https://twitter.com/miltonm13391981", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135767", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nodnod", + "displayName": "Nodnod", + "fid": 1135767, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3f30151-c721-4803-3693-bd6d86960800/original", + "followers": 164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a2a8452dac2ef6174d4572083c090fe826d9b96", + "etherscanUrl": "https://etherscan.io/address/0x1a2a8452dac2ef6174d4572083c090fe826d9b96", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_512271", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babooun", + "displayName": "Babooun", + "fid": 512271, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ef90db5-1e0b-4d28-ba05-4cddf6ee6800/original", + "followers": 164, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e58109c8cfd97ab45191ea32d6897f1fe2507a7", + "etherscanUrl": "https://etherscan.io/address/0x6e58109c8cfd97ab45191ea32d6897f1fe2507a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1105677", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "casanputih", + "displayName": "casanputih", + "fid": 1105677, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0342db40-bda6-4f9b-5684-bd485c595d00/original", + "followers": 163, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec2780213936cf9a3189a7b6fdb5fb5c545685e0", + "etherscanUrl": "https://etherscan.io/address/0xec2780213936cf9a3189a7b6fdb5fb5c545685e0", + "xHandle": "x_055k4ei1q", + "xUrl": "https://twitter.com/x_055k4ei1q", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129155", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shamim76x", + "displayName": "shamim hosen", + "fid": 1129155, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dcfe4a1e-95ae-42cc-02b4-54f64b614d00/original", + "followers": 162, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ac877df8f1696841abaabfe9578ad83d8f8aab6", + "etherscanUrl": "https://etherscan.io/address/0x2ac877df8f1696841abaabfe9578ad83d8f8aab6", + "xHandle": "shamim767676", + "xUrl": "https://twitter.com/shamim767676", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_522496", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danishgod", + "displayName": "Tuna Khara", + "fid": 522496, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c44a30af-0a8d-40e9-bf7d-156df7c2a500/rectcrop3", + "followers": 159, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x118570978a08137cdedd2fa8e383a890e831314a", + "etherscanUrl": "https://etherscan.io/address/0x118570978a08137cdedd2fa8e383a890e831314a", + "xHandle": "s3025186", + "xUrl": "https://twitter.com/s3025186", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_413970", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "verror09", + "displayName": "Verror09", + "fid": 413970, + "pfpUrl": "https://i.imgur.com/tasQC87.jpg", + "followers": 157, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x382ee4f4ece82659f032c3373cdcfb5ef9697bd0", + "etherscanUrl": "https://etherscan.io/address/0x382ee4f4ece82659f032c3373cdcfb5ef9697bd0", + "xHandle": "verror09", + "xUrl": "https://twitter.com/verror09", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_241555", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deguma", + "displayName": "Deguma", + "fid": 241555, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b88a93b9-7a91-4157-bdb3-f29228bf4200/rectcrop3", + "followers": 156, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2320b6b6e7486b1743d6d0cfc62ad5cfc23f86e", + "etherscanUrl": "https://etherscan.io/address/0xc2320b6b6e7486b1743d6d0cfc62ad5cfc23f86e", + "xHandle": "degudhadharma", + "xUrl": "https://twitter.com/degudhadharma", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1068954", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nader1000", + "displayName": "arnold", + "fid": 1068954, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmTqhyXQTWgYby9waax4N81KbwGPtDb4p4bcxSiYEdMza1?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "followers": 155, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ac2d6aa0cb69926a0222018008aae5f58d462a9", + "etherscanUrl": "https://etherscan.io/address/0x4ac2d6aa0cb69926a0222018008aae5f58d462a9", + "xHandle": "nader10000228", + "xUrl": "https://twitter.com/nader10000228", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1277961", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "beautyblinks202", + "displayName": "Beautyblinks", + "fid": 1277961, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 155, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d11dfa219ed6eee4e8ce08cf7036113880b7877", + "etherscanUrl": "https://etherscan.io/address/0x5d11dfa219ed6eee4e8ce08cf7036113880b7877", + "xHandle": "rosefunmilola", + "xUrl": "https://twitter.com/rosefunmilola", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_616387", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joycecoffey", + "displayName": "JoyceCoffey", + "fid": 616387, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f40ff869-d270-4e03-3354-11fe33875300/rectcrop3", + "followers": 154, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e90d962c39563ece6ea2161c817a23238083a12", + "etherscanUrl": "https://etherscan.io/address/0x1e90d962c39563ece6ea2161c817a23238083a12", + "xHandle": "sparrow9sm", + "xUrl": "https://twitter.com/sparrow9sm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1121855", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iamadeshoular", + "displayName": "Iamadeshoular", + "fid": 1121855, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26db27e0-20e3-446e-af0a-0a8bd1f6b700/original", + "followers": 153, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0dfb3acd42dc97c15765334075cd26bcf2f2c362", + "etherscanUrl": "https://etherscan.io/address/0x0dfb3acd42dc97c15765334075cd26bcf2f2c362", + "xHandle": "jhurstinar", + "xUrl": "https://twitter.com/jhurstinar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115623", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "goalgetter2", + "displayName": "Goalgetter| community mod| write", + "fid": 1115623, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bbb7a993-47c2-4579-c178-6007cd496400/original", + "followers": 153, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x488d1c93e01c82623f9a54436adb4800f2a1fef9", + "etherscanUrl": "https://etherscan.io/address/0x488d1c93e01c82623f9a54436adb4800f2a1fef9", + "xHandle": "abugideon57", + "xUrl": "https://twitter.com/abugideon57", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142631", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cialin", + "displayName": "Cia Lin", + "fid": 1142631, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13215a65-0e12-46b6-2ed1-1c97fdbaeb00/original", + "followers": 152, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc847fcd86c4439ff0317701db13e240b262cfe19", + "etherscanUrl": "https://etherscan.io/address/0xc847fcd86c4439ff0317701db13e240b262cfe19", + "xHandle": "beautypeaces", + "xUrl": "https://twitter.com/beautypeaces", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1369241", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ogmancer", + "displayName": "ogmancer.base.eth", + "fid": 1369241, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41e8f3f1-cbd4-4e03-755d-679bbf9a3800/original", + "followers": 150, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda64bcb12b9406badbae5d11eabda55106fb7716", + "etherscanUrl": "https://etherscan.io/address/0xda64bcb12b9406badbae5d11eabda55106fb7716", + "xHandle": "ogmancer", + "xUrl": "https://twitter.com/ogmancer", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1350193", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "caribefred", + "displayName": "caribefred", + "fid": 1350193, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/148e2947-dbc2-41d3-00fa-67bcbe40e200/original", + "followers": 150, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5abd3f9e801a7e4cce347a6955db04348fb16a0e", + "etherscanUrl": "https://etherscan.io/address/0x5abd3f9e801a7e4cce347a6955db04348fb16a0e", + "xHandle": "freddiecol63994", + "xUrl": "https://twitter.com/freddiecol63994", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1149403", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "larxzy", + "displayName": "Larxzy's🧬", + "fid": 1149403, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d321e160-aa99-4981-fab4-a114b2dbcb00/original", + "followers": 150, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3542fbf2063fe397932ad3d35f3ae7ee9a4e7e1", + "etherscanUrl": "https://etherscan.io/address/0xf3542fbf2063fe397932ad3d35f3ae7ee9a4e7e1", + "xHandle": "gentapalapaa", + "xUrl": "https://twitter.com/gentapalapaa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1021805", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juliyantoary", + "displayName": "juliyantoary", + "fid": 1021805, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f00c4ea7-9a5d-4320-54fc-9f91adf95100/rectcrop3", + "followers": 150, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf841068db072f36c3451371b17b8b037598048b5", + "etherscanUrl": "https://etherscan.io/address/0xf841068db072f36c3451371b17b8b037598048b5", + "xHandle": "juliyanto_ary", + "xUrl": "https://twitter.com/juliyanto_ary", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11745", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "benedictvs.eth", + "displayName": "benedictvs", + "fid": 11745, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7387ea34-3520-410a-2935-16946d21e600/original", + "followers": 148, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ecd708a42e59a38fb0a37f53c7b58a91b11a332", + "etherscanUrl": "https://etherscan.io/address/0x3ecd708a42e59a38fb0a37f53c7b58a91b11a332", + "xHandle": "b3nedictvs", + "xUrl": "https://twitter.com/b3nedictvs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danart100", + "displayName": "Dan - Monarch Gallery 🦋", + "fid": 1129941, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/452eb319-742f-4645-1b0f-d5888902a100/original", + "followers": 148, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a3a2616f54fa5d56222206ecb866f9a71c06d5d", + "etherscanUrl": "https://etherscan.io/address/0x6a3a2616f54fa5d56222206ecb866f9a71c06d5d", + "xHandle": "dan_art100", + "xUrl": "https://twitter.com/dan_art100", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309386", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bobbydigital", + "displayName": "Chris Catalano", + "fid": 309386, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f0e98be-5089-4677-b1ee-d4dfd7976700/original", + "followers": 147, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb5639867b0807ce38e1eb534651380ebb09b2c0e", + "etherscanUrl": "https://etherscan.io/address/0xb5639867b0807ce38e1eb534651380ebb09b2c0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_694800", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lvnerlxve", + "displayName": "Mark", + "fid": 694800, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ff16ba2-0189-4830-375d-0afa55a00200/rectcrop3", + "followers": 146, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x428bcbdf962125e5ba0fe21f15d0949d61b24bd8", + "etherscanUrl": "https://etherscan.io/address/0x428bcbdf962125e5ba0fe21f15d0949d61b24bd8", + "xHandle": "lxnerlxve", + "xUrl": "https://twitter.com/lxnerlxve", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_310556", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ariyoosu", + "displayName": "Eyo", + "fid": 310556, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c941ca0-c134-4f3a-de91-3c0b65f4bf00/original", + "followers": 144, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f6cb631b35f9e9c3caeeb509599ac1882488301", + "etherscanUrl": "https://etherscan.io/address/0x8f6cb631b35f9e9c3caeeb509599ac1882488301", + "xHandle": "ariyoosuo15160", + "xUrl": "https://twitter.com/ariyoosuo15160", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074923", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "linnsett", + "displayName": "Linnsett", + "fid": 1074923, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/580ed7a9-c6c5-41e5-b259-4d8ab202dd00/original", + "followers": 143, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6996f48ba203ac6df5c9f4926eae81ed932e944", + "etherscanUrl": "https://etherscan.io/address/0xa6996f48ba203ac6df5c9f4926eae81ed932e944", + "xHandle": "thormasjack", + "xUrl": "https://twitter.com/thormasjack", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1024565", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptononim", + "displayName": "Cryptononim", + "fid": 1024565, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1845b0f0-429c-49fd-4279-889d8ee9ed00/original", + "followers": 142, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6dbaf51142beeef2143c5c013726ff252de66d2", + "etherscanUrl": "https://etherscan.io/address/0xf6dbaf51142beeef2143c5c013726ff252de66d2", + "xHandle": "qwerty165542", + "xUrl": "https://twitter.com/qwerty165542", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anischy", + "displayName": "Anis Chy", + "fid": 1050549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf772b5c-79a2-4989-df87-c1ec2095df00/rectcrop3", + "followers": 142, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2928e2b95ec08883196596eb13467bf398e87ae", + "etherscanUrl": "https://etherscan.io/address/0xc2928e2b95ec08883196596eb13467bf398e87ae", + "xHandle": "skyanis77", + "xUrl": "https://twitter.com/skyanis77", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_981399", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nickhaaz", + "displayName": "Nick Haaz", + "fid": 981399, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c33e795-9ed2-4f27-134a-0c58ccaac200/rectcrop3", + "followers": 140, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a7d5182d7376e41a2244297f7a8acd6e5beb5d6", + "etherscanUrl": "https://etherscan.io/address/0x6a7d5182d7376e41a2244297f7a8acd6e5beb5d6", + "xHandle": "founssss", + "xUrl": "https://twitter.com/founssss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135749", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amelianal", + "displayName": "Amelianal", + "fid": 1135749, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ab97ed8-daf0-4e4c-2300-d672c315a400/original", + "followers": 140, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ac43aaf5611de07ebaca4bb7c5eb7999e210c32", + "etherscanUrl": "https://etherscan.io/address/0x4ac43aaf5611de07ebaca4bb7c5eb7999e210c32", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1114094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yourself", + "displayName": "yourself", + "fid": 1114094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/abeced11-688e-4a48-9370-af7ebbe8c700/rectcrop3", + "followers": 139, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8c91285c2422a27f98947fa2b545b9dbbe913cc", + "etherscanUrl": "https://etherscan.io/address/0xc8c91285c2422a27f98947fa2b545b9dbbe913cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_807378", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xcourvorsier.eth", + "displayName": "DaWeb3SecurityGuy", + "fid": 807378, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/772e29e0-2fe0-44d2-c47a-6e5b76134400/original", + "followers": 139, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3013e1b9af83ed5b88e90b4365766a5199f21ee", + "etherscanUrl": "https://etherscan.io/address/0xd3013e1b9af83ed5b88e90b4365766a5199f21ee", + "xHandle": "0xb4ssl1n3r", + "xUrl": "https://twitter.com/0xb4ssl1n3r", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328783", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "solfunmeme", + "displayName": "Mike Dupont SOLFUNMEME ZOS", + "fid": 1328783, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64e09e17-07cd-4e04-c5af-4c214f644900/original", + "followers": 137, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab10aa7dde60f697c08bb1b7fb2c825490d52316", + "etherscanUrl": "https://etherscan.io/address/0xab10aa7dde60f697c08bb1b7fb2c825490d52316", + "xHandle": "introsp3ctor", + "xUrl": "https://twitter.com/introsp3ctor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1332232", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dorathy", + "displayName": "Dorathy", + "fid": 1332232, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17a1fdab-90e3-47d4-1c43-2d6f6ef2b200/original", + "followers": 137, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x45583c97fb88f04e8a7d3cf639d562877f79bef1", + "etherscanUrl": "https://etherscan.io/address/0x45583c97fb88f04e8a7d3cf639d562877f79bef1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309308", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lowbrow", + "displayName": "Lowbrow", + "fid": 309308, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f99a0896-a7a3-4c61-f2de-896011dcaf00/rectcrop3", + "followers": 135, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26628d06dd9b02c68e1977e343751fa928c61ac7", + "etherscanUrl": "https://etherscan.io/address/0x26628d06dd9b02c68e1977e343751fa928c61ac7", + "xHandle": "low__brow", + "xUrl": "https://twitter.com/low__brow", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1312829", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maskman771", + "displayName": "MaskMan 🧬🎩", + "fid": 1312829, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/590a9394-ec84-426c-9bcd-adec896e3c00/original", + "followers": 135, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x102c353094dbc7bcd474f5bfb8286bf01e69cd3d", + "etherscanUrl": "https://etherscan.io/address/0x102c353094dbc7bcd474f5bfb8286bf01e69cd3d", + "xHandle": "maskman771", + "xUrl": "https://twitter.com/maskman771", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_548041", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pabloesco", + "displayName": "Pabloesco", + "fid": 548041, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8788b249-6c34-4a44-66f6-8af596f6a400/rectcrop3", + "followers": 134, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c883c1e4ff1bc136c43880e7b1a4bd58e2e7d08", + "etherscanUrl": "https://etherscan.io/address/0x5c883c1e4ff1bc136c43880e7b1a4bd58e2e7d08", + "xHandle": "bashuhao", + "xUrl": "https://twitter.com/bashuhao", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_440201", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kangjahir", + "displayName": "KhangJey ✈️ 🔄🎩", + "fid": 440201, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdb1779c-1380-4bfe-feac-34152196af00/rectcrop3", + "followers": 134, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23c346e9309e0dffcedf9e7bc11e5cc474b714d4", + "etherscanUrl": "https://etherscan.io/address/0x23c346e9309e0dffcedf9e7bc11e5cc474b714d4", + "xHandle": "jahir_abdu90403", + "xUrl": "https://twitter.com/jahir_abdu90403", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1151211", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dirtyd82", + "displayName": "Dustin Bright", + "fid": 1151211, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/245da6c4-dde6-4ee2-d5c1-1ad6f9e00400/original", + "followers": 133, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcfa815a8d7a7d55bd38a77b8d0af39b9b28cd51b", + "etherscanUrl": "https://etherscan.io/address/0xcfa815a8d7a7d55bd38a77b8d0af39b9b28cd51b", + "xHandle": "dustinbrig58104", + "xUrl": "https://twitter.com/dustinbrig58104", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130426", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meeradevi", + "displayName": "Meera Devi", + "fid": 1130426, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9025dab1-a546-4030-6810-87b78308e100/original", + "followers": 132, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4a1b84bb0be67e959d5deade1f1794e916c433a", + "etherscanUrl": "https://etherscan.io/address/0xe4a1b84bb0be67e959d5deade1f1794e916c433a", + "xHandle": "soryn_eth_", + "xUrl": "https://twitter.com/soryn_eth_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1317949", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "borntoconquer999", + "displayName": "Seed Altar", + "fid": 1317949, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fda85a0-fcbb-426b-e118-06350cccef00/original", + "followers": 131, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7eb7652a42608863a14044e218925c0e0c350220", + "etherscanUrl": "https://etherscan.io/address/0x7eb7652a42608863a14044e218925c0e0c350220", + "xHandle": "seedaltar", + "xUrl": "https://twitter.com/seedaltar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1371548", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "galibsha994", + "displayName": "galibsha994", + "fid": 1371548, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 130, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbeb29d3e33d74d7131482aa00eb5d0da5f9467bb", + "etherscanUrl": "https://etherscan.io/address/0xbeb29d3e33d74d7131482aa00eb5d0da5f9467bb", + "xHandle": "galibsha5556", + "xUrl": "https://twitter.com/galibsha5556", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1162107", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bunny003", + "displayName": "@bunny🐰🍀bdunny.base.eth", + "fid": 1162107, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05357b03-8f6d-40b8-5689-028ee7b39300/original", + "followers": 130, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10796e308082498df1cb179f2172466abc60ba32", + "etherscanUrl": "https://etherscan.io/address/0x10796e308082498df1cb179f2172466abc60ba32", + "xHandle": "oarowogesin", + "xUrl": "https://twitter.com/oarowogesin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135730", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andina", + "displayName": "Andina", + "fid": 1135730, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24a034f9-2dd4-402d-e956-29ef2417a300/original", + "followers": 130, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c362c7382ffbab9aeb5ab579eba08fbc7726410", + "etherscanUrl": "https://etherscan.io/address/0x7c362c7382ffbab9aeb5ab579eba08fbc7726410", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_656467", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jaker420", + "displayName": "Jaker One ", + "fid": 656467, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26e17c57-ba3c-42ba-9119-e1eacb3e4900/rectcrop3", + "followers": 129, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd0a7c62fd8fdcdd3b60d2e3ae98dfec62c9353e9", + "etherscanUrl": "https://etherscan.io/address/0xd0a7c62fd8fdcdd3b60d2e3ae98dfec62c9353e9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1327681", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jackforall", + "displayName": "💎 Jack-For-All 💎", + "fid": 1327681, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/31ed96f5-8baf-4ce2-a432-7aac9554e800/original", + "followers": 129, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78bcdaebc87c31a4e2ed2c9b8a8cf5efd3379605", + "etherscanUrl": "https://etherscan.io/address/0x78bcdaebc87c31a4e2ed2c9b8a8cf5efd3379605", + "xHandle": "jack_for_all_", + "xUrl": "https://twitter.com/jack_for_all_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135300", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ewah", + "displayName": "Ewah", + "fid": 1135300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c30933e3-6bf4-4824-0d13-54c8e3c03e00/original", + "followers": 129, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c21884bc8d9b7dfa4d3e3ac4547f4cf0deb635a", + "etherscanUrl": "https://etherscan.io/address/0x9c21884bc8d9b7dfa4d3e3ac4547f4cf0deb635a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_521070", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anis1", + "displayName": "Syed Mohammad Anis Anowar ", + "fid": 521070, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f06133c-067d-44e4-00c1-8b14faf00200/rectcrop3", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fb2836c72142aff78432c7505fdced71e66459b", + "etherscanUrl": "https://etherscan.io/address/0x3fb2836c72142aff78432c7505fdced71e66459b", + "xHandle": "babu5876234", + "xUrl": "https://twitter.com/babu5876234", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141738", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fanfam", + "displayName": "Astrid", + "fid": 1141738, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c3e3dc5-8fb3-4dd4-3e4e-5743a365b000/original", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd73c71e1752978a12cb72503fea25e4ca02cac82", + "etherscanUrl": "https://etherscan.io/address/0xd73c71e1752978a12cb72503fea25e4ca02cac82", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115450", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jerrycrypto", + "displayName": "kwah_ jeremiah", + "fid": 1115450, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aad36a70-e947-429d-a4d3-dcc4e432f900/original", + "followers": 128, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd74e99327a8b9cc389638d7a2d999e37ab81c59d", + "etherscanUrl": "https://etherscan.io/address/0xd74e99327a8b9cc389638d7a2d999e37ab81c59d", + "xHandle": "kwahjeremiah", + "xUrl": "https://twitter.com/kwahjeremiah", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_476576", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rueby", + "displayName": "Rueby", + "fid": 476576, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fe112261-fa69-4d63-7e45-d022b4abc400/original", + "followers": 126, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4987ead9a1b50d223c14a65dc976bd63751bf484", + "etherscanUrl": "https://etherscan.io/address/0x4987ead9a1b50d223c14a65dc976bd63751bf484", + "xHandle": "ruebyix", + "xUrl": "https://twitter.com/ruebyix", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135330", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eyi", + "displayName": "Eyi", + "fid": 1135330, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e19f0d1f-f6ec-40d9-8481-849de571c800/original", + "followers": 126, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x922c7378d9139cbb3a44293005149c8ebcbb69fa", + "etherscanUrl": "https://etherscan.io/address/0x922c7378d9139cbb3a44293005149c8ebcbb69fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138218", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yanieth", + "displayName": "yanieth", + "fid": 1138218, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762745683/492aa53a-ae17-4d49-a58d-879ef37db708.jpg", + "followers": 126, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53769e47151b178c88a1df44e2f4445fa5790d84", + "etherscanUrl": "https://etherscan.io/address/0x53769e47151b178c88a1df44e2f4445fa5790d84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1310549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vincentini", + "displayName": "vincentini", + "fid": 1310549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2eb2f095-d55b-43d3-aea1-cbf7ee3e0b00/original", + "followers": 125, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb69d7fe51140d5581519f2c0c5162e6a8f27d7c", + "etherscanUrl": "https://etherscan.io/address/0xdb69d7fe51140d5581519f2c0c5162e6a8f27d7c", + "xHandle": "whaddapuk", + "xUrl": "https://twitter.com/whaddapuk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132497", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basefunai", + "displayName": "BASEFUN", + "fid": 1132497, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16a436a5-6cba-4f50-7156-bd95771a6100/original", + "followers": 125, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2219994d3296fdaded354274d5e00ec3cf55cf17", + "etherscanUrl": "https://etherscan.io/address/0x2219994d3296fdaded354274d5e00ec3cf55cf17", + "xHandle": "basefunai", + "xUrl": "https://twitter.com/basefunai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1110349", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ghostbird", + "displayName": "ghostbird 👻 🐦🦉", + "fid": 1110349, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71a8585b-e304-47f9-67d3-e06b2c9b1700/rectcrop3", + "followers": 122, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73ce665720aaf2844f83bf2a12439c9f069d376d", + "etherscanUrl": "https://etherscan.io/address/0x73ce665720aaf2844f83bf2a12439c9f069d376d", + "xHandle": "ghostbird1369", + "xUrl": "https://twitter.com/ghostbird1369", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1434052", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ben12", + "displayName": "Ben10", + "fid": 1434052, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d13812f4-5fe7-4b5b-bbfc-82166dfaf800/original", + "followers": 120, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdac8a04637521dc7fd639618f7570fd4679cbd52", + "etherscanUrl": "https://etherscan.io/address/0xdac8a04637521dc7fd639618f7570fd4679cbd52", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1324658", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ieli9", + "displayName": "JOKERALo", + "fid": 1324658, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08d1294d-2b33-41fe-7c01-d55d52a4a000/original", + "followers": 119, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x831414dad7276a26443afe43d34118836e92fb15", + "etherscanUrl": "https://etherscan.io/address/0x831414dad7276a26443afe43d34118836e92fb15", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_573768", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khalidhameed", + "displayName": "Sheikh Rahil", + "fid": 573768, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/65fae53a-9832-4672-25c3-15827053b000/rectcrop3", + "followers": 117, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x34833f6f8d0414b4d4db26b4de04f758924aafea", + "etherscanUrl": "https://etherscan.io/address/0x34833f6f8d0414b4d4db26b4de04f758924aafea", + "xHandle": "sheikhrahil483", + "xUrl": "https://twitter.com/sheikhrahil483", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_773657", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "samchalom", + "displayName": "samchalom .⌐◨-◨", + "fid": 773657, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/38d8ed47-0c52-417b-86c4-57b6b31dfd00/rectcrop3", + "followers": 116, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5221a80d4edc9f848b318bc0a2abd4d41a5b471e", + "etherscanUrl": "https://etherscan.io/address/0x5221a80d4edc9f848b318bc0a2abd4d41a5b471e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625861", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lambertlily", + "displayName": "LambertLily", + "fid": 625861, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1c36614-511a-4559-e63d-2991ca687100/rectcrop3", + "followers": 116, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdff3b8e07500c66b164afa6598160096173b338e", + "etherscanUrl": "https://etherscan.io/address/0xdff3b8e07500c66b164afa6598160096173b338e", + "xHandle": "nicole_alyssa92", + "xUrl": "https://twitter.com/nicole_alyssa92", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1423715", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "unknowngirl", + "displayName": "Girls 🧚", + "fid": 1423715, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d7f8f26-18c1-4241-9800-4bd713e3b900/original", + "followers": 115, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xccca213c09169d6a986d2f735e203715ac986cfa", + "etherscanUrl": "https://etherscan.io/address/0xccca213c09169d6a986d2f735e203715ac986cfa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148659", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptocouple69", + "displayName": "Tokyo", + "fid": 1148659, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f0ee692-241d-42ac-c409-cb9ac9bce200/original", + "followers": 115, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x136f33fb941e3a3ba8180c186a8d6e7e1d09595b", + "etherscanUrl": "https://etherscan.io/address/0x136f33fb941e3a3ba8180c186a8d6e7e1d09595b", + "xHandle": "spiritofdetcoin", + "xUrl": "https://twitter.com/spiritofdetcoin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kerinzo", + "displayName": "Kerinzo", + "fid": 1106941, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18a568f2-7ee9-4431-00d8-730c2806d500/original", + "followers": 115, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a9819addd59126ae657b5a37af1e1d48892d95e", + "etherscanUrl": "https://etherscan.io/address/0x2a9819addd59126ae657b5a37af1e1d48892d95e", + "xHandle": "lirjumrusyhoss", + "xUrl": "https://twitter.com/lirjumrusyhoss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_915831", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "naim1133", + "displayName": "Naim Hossain", + "fid": 915831, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e810cfc-d10e-4bab-e859-4f5b59a34000/rectcrop3", + "followers": 114, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8651850cabd31328b16ef75d22c47d2a5f251b41", + "etherscanUrl": "https://etherscan.io/address/0x8651850cabd31328b16ef75d22c47d2a5f251b41", + "xHandle": "naimhos93384159", + "xUrl": "https://twitter.com/naimhos93384159", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1248984", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "printmediaisb", + "displayName": "Asif Mehmood", + "fid": 1248984, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/111288cd-29e1-4365-c561-4f8053cc9700/original", + "followers": 113, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa22d472a1a4f65c6987d26cb9c7139eb7f27c65d", + "etherscanUrl": "https://etherscan.io/address/0xa22d472a1a4f65c6987d26cb9c7139eb7f27c65d", + "xHandle": "printmediaisb", + "xUrl": "https://twitter.com/printmediaisb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_510298", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "step-by-steph", + "displayName": "Steph Ferrera", + "fid": 510298, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/669a0651-7439-41e8-e2ed-038239141400/rectcrop3", + "followers": 113, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x025bb0cbc226eddf3ca81463434140a4763d814c", + "etherscanUrl": "https://etherscan.io/address/0x025bb0cbc226eddf3ca81463434140a4763d814c", + "xHandle": "ferrerasteph", + "xUrl": "https://twitter.com/ferrerasteph", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_716094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gabsworld", + "displayName": "Gabriell", + "fid": 716094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77037d83-43f6-4251-7c63-e5e40a995700/original", + "followers": 111, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3eafa03c5975d5e7888783b934abdb4520546bb0", + "etherscanUrl": "https://etherscan.io/address/0x3eafa03c5975d5e7888783b934abdb4520546bb0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196104", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lordkeklol", + "displayName": "lordkek", + "fid": 196104, + "pfpUrl": "https://i.imgur.com/vFZVd4a.jpg", + "followers": 110, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf3155897cba051b692276b4fc7ce26980370479", + "etherscanUrl": "https://etherscan.io/address/0xaf3155897cba051b692276b4fc7ce26980370479", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_463096", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pablos-innit", + "displayName": "Pablos", + "fid": 463096, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a373fc91-d72f-4562-b02a-364d7b650c00/original", + "followers": 109, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe2afacffad97ab37b46e9653d146a13353f8ef34", + "etherscanUrl": "https://etherscan.io/address/0xe2afacffad97ab37b46e9653d146a13353f8ef34", + "xHandle": "pablos_innit", + "xUrl": "https://twitter.com/pablos_innit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140193", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptohuntereth", + "displayName": "cryptohuntereth", + "fid": 1140193, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e336c52-acb7-44ff-43c5-9709dc07e400/original", + "followers": 109, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb02d9415ab76dbc35fa81ae47e1f4614a84c0f2", + "etherscanUrl": "https://etherscan.io/address/0xcb02d9415ab76dbc35fa81ae47e1f4614a84c0f2", + "xHandle": "cryptohunt2025", + "xUrl": "https://twitter.com/cryptohunt2025", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146815", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "slimtilted", + "displayName": "Boogi", + "fid": 1146815, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 109, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c45d1a1254863e02770470e2e2d86bdb6ad4313", + "etherscanUrl": "https://etherscan.io/address/0x7c45d1a1254863e02770470e2e2d86bdb6ad4313", + "xHandle": "onesungod", + "xUrl": "https://twitter.com/onesungod", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106889", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ziaozu", + "displayName": "우윤주", + "fid": 1106889, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a1ba25a8-446e-401c-d526-4060744ebc00/original", + "followers": 109, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x164ec83960397cf25b1b439d9ad7700d184bb914", + "etherscanUrl": "https://etherscan.io/address/0x164ec83960397cf25b1b439d9ad7700d184bb914", + "xHandle": "jqbcgljxfoyigb", + "xUrl": "https://twitter.com/jqbcgljxfoyigb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_886061", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cvnuitter", + "displayName": "Vicky Nuitter", + "fid": 886061, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dcecd5ef-cd22-413f-d71a-5981791cf300/original", + "followers": 108, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x853090a078a55f592828cbfe4b223c6a9625a809", + "etherscanUrl": "https://etherscan.io/address/0x853090a078a55f592828cbfe4b223c6a9625a809", + "xHandle": "cvnuitter", + "xUrl": "https://twitter.com/cvnuitter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_405607", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suavemusic", + "displayName": "Suave", + "fid": 405607, + "pfpUrl": "https://i.imgur.com/RMc8TeQ.jpg", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc766c0a6819b67ca4293241286ad3a6c41eaae82", + "etherscanUrl": "https://etherscan.io/address/0xc766c0a6819b67ca4293241286ad3a6c41eaae82", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109441", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hookings", + "displayName": "Hook King", + "fid": 1109441, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1760742908/1000058777.jpg.jpg", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b803461fd5a3e85766c4c7016cedc56a580c742", + "etherscanUrl": "https://etherscan.io/address/0x9b803461fd5a3e85766c4c7016cedc56a580c742", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_531976", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jahangir97", + "displayName": "Md Jahangir Alom ", + "fid": 531976, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ed71fba-78ce-4417-929a-7851b6310b00/rectcrop3", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94161d4dd9fba5a8b467776f7dc1c37ef38c006a", + "etherscanUrl": "https://etherscan.io/address/0x94161d4dd9fba5a8b467776f7dc1c37ef38c006a", + "xHandle": "mdjahan21162509", + "xUrl": "https://twitter.com/mdjahan21162509", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_769426", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "1tatyana", + "displayName": "Tatiana«base.eth»", + "fid": 769426, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dd86536-42f7-4fbe-2749-97102cb60a00/rectcrop3", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbbd27623dbc7ce7fe7a044e06f3dae3c4f2cd51", + "etherscanUrl": "https://etherscan.io/address/0xfbbd27623dbc7ce7fe7a044e06f3dae3c4f2cd51", + "xHandle": "tom614380695432", + "xUrl": "https://twitter.com/tom614380695432", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anjayaaa", + "displayName": "서귀영", + "fid": 1106946, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c2bf9ea9-4c65-45f3-c98c-e8edf369a100/original", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6f3bdf4d3cc79c154bcf2a68ef1b2c5cb5f9205", + "etherscanUrl": "https://etherscan.io/address/0xb6f3bdf4d3cc79c154bcf2a68ef1b2c5cb5f9205", + "xHandle": "wddkmokweasjku", + "xUrl": "https://twitter.com/wddkmokweasjku", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106955", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ronzoo", + "displayName": "Rp Ronzooo", + "fid": 1106955, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a44344c-15b9-4e79-9fff-f3ce0d06ee00/original", + "followers": 107, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e894cdeafb8b394804fb35fd540a6ef6072b645", + "etherscanUrl": "https://etherscan.io/address/0x3e894cdeafb8b394804fb35fd540a6ef6072b645", + "xHandle": "odlueolgvabacu", + "xUrl": "https://twitter.com/odlueolgvabacu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20692", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bxpana", + "displayName": "Bxpana", + "fid": 20692, + "pfpUrl": "https://i.imgur.com/Upjshbc.jpg", + "followers": 106, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc95a6d60b83e4205ce724e84ac8f77ffcc44606a", + "etherscanUrl": "https://etherscan.io/address/0xc95a6d60b83e4205ce724e84ac8f77ffcc44606a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141555", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xaraya", + "displayName": "ArayaAray™️", + "fid": 1141555, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762307292/1000090349.jpg.jpg", + "followers": 106, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1d4e85cab5336274ec0837f1a73162255e58c5f", + "etherscanUrl": "https://etherscan.io/address/0xa1d4e85cab5336274ec0837f1a73162255e58c5f", + "xHandle": "0xaraya", + "xUrl": "https://twitter.com/0xaraya", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1376778", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "way4out", + "displayName": "way4out", + "fid": 1376778, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4298032-b647-47b6-ad32-1b163344b700/original", + "followers": 105, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x777f1e528dc857adb9f7f83e454032752e5cb640", + "etherscanUrl": "https://etherscan.io/address/0x777f1e528dc857adb9f7f83e454032752e5cb640", + "xHandle": "way4outt", + "xUrl": "https://twitter.com/way4outt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1395297", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "snap-rebel-club", + "displayName": "Snap Rebel Club", + "fid": 1395297, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e5b2a6b-adcf-4cfc-f476-93a48ca5be00/original", + "followers": 103, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96178aac91252c273675145367cfbde74b45e923", + "etherscanUrl": "https://etherscan.io/address/0x96178aac91252c273675145367cfbde74b45e923", + "xHandle": "snaprebelclub", + "xUrl": "https://twitter.com/snaprebelclub", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_798889", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "backtest", + "displayName": "Duyen", + "fid": 798889, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a251df3-2522-4b0a-4710-469766347c00/rectcrop3", + "followers": 103, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22bb118f5d9b955abaa6c719d7e5d3b19321b439", + "etherscanUrl": "https://etherscan.io/address/0x22bb118f5d9b955abaa6c719d7e5d3b19321b439", + "xHandle": "discipline2902", + "xUrl": "https://twitter.com/discipline2902", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_867458", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ibrahim750", + "displayName": "Ibrahim", + "fid": 867458, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/551bafec-8c83-4888-7b77-12e3d61f9c00/rectcrop3", + "followers": 103, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6eb2b38750780bd66438fbb9996c616519c5dc62", + "etherscanUrl": "https://etherscan.io/address/0x6eb2b38750780bd66438fbb9996c616519c5dc62", + "xHandle": "ibrahim27470890", + "xUrl": "https://twitter.com/ibrahim27470890", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_871912", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "icedflame", + "displayName": "Icedflame", + "fid": 871912, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b381f29-3a50-4910-5f9b-392c2a2e9000/rectcrop3", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9fa9af8ccaa437f0b6c57fb5ead03d40a0f84ab", + "etherscanUrl": "https://etherscan.io/address/0xc9fa9af8ccaa437f0b6c57fb5ead03d40a0f84ab", + "xHandle": "icyfire57635693", + "xUrl": "https://twitter.com/icyfire57635693", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1119707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "janunnally", + "displayName": "Nelly", + "fid": 1119707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a9b67eca-6390-4241-3280-057a9abeff00/original", + "followers": 102, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb1433081823cff653d98dda06dbd0793c007428", + "etherscanUrl": "https://etherscan.io/address/0xeb1433081823cff653d98dda06dbd0793c007428", + "xHandle": "janellenunnally", + "xUrl": "https://twitter.com/janellenunnally", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1315093", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alexsmartg21771", + "displayName": "artbull", + "fid": 1315093, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/017c9caa-758a-4a04-3a9b-808b30284400/original", + "followers": 101, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02d12af23804d744775aa4ec83e1dcd3887379b8", + "etherscanUrl": "https://etherscan.io/address/0x02d12af23804d744775aa4ec83e1dcd3887379b8", + "xHandle": "alexsmartg21771", + "xUrl": "https://twitter.com/alexsmartg21771", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4577", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kupehrod.eth", + "displayName": "kupehrod.eth", + "fid": 4577, + "pfpUrl": "https://i.seadn.io/gae/kG0ruoEYu7DJVQPZhB9hveUxn2X9k1pIasxWYJhCJtVyaipgYjd1EjF0j0k2v0Rl4LJFUSHb-S3TbEMhW0H8TaguFSz7SBY7N5GTtQ?w=500&auto=format", + "followers": 100, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x606231f4c18442d0c75303180895a87224255980", + "etherscanUrl": "https://etherscan.io/address/0x606231f4c18442d0c75303180895a87224255980", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1237696", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "skuycrot.base.eth", + "displayName": "Wick", + "fid": 1237696, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763335315/744e044a-3fc8-4e3e-ba2c-cbee73486a5e.png", + "followers": 99, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d0fc312d1a3cb6c0caa1dae1d774bc0ae9a71f9", + "etherscanUrl": "https://etherscan.io/address/0x5d0fc312d1a3cb6c0caa1dae1d774bc0ae9a71f9", + "xHandle": "wicky_wey", + "xUrl": "https://twitter.com/wicky_wey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1039818", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sumaira2", + "displayName": "Hassan King", + "fid": 1039818, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4ce3364-9ce8-437b-1560-7de76f6dd700/original", + "followers": 98, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72a6102c0fc9ec704cb9b6018b9bf4e0420f38ef", + "etherscanUrl": "https://etherscan.io/address/0x72a6102c0fc9ec704cb9b6018b9bf4e0420f38ef", + "xHandle": "hassana52534", + "xUrl": "https://twitter.com/hassana52534", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146799", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "davinvest", + "displayName": "Gorillas", + "fid": 1146799, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67a9d770-1f23-4a53-f6ab-5f5861539500/original", + "followers": 98, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7151ef3d4f7985717764bc066f4ec1b3296b081a", + "etherscanUrl": "https://etherscan.io/address/0x7151ef3d4f7985717764bc066f4ec1b3296b081a", + "xHandle": "erislaniocoleta", + "xUrl": "https://twitter.com/erislaniocoleta", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_305844", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "potujnuy", + "displayName": "CrowdVibe", + "fid": 305844, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/838e1e96-0abd-4605-0a4f-9103d205f300/original", + "followers": 98, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9770f37729363ef1588c5fd368abf18b87390c9", + "etherscanUrl": "https://etherscan.io/address/0xe9770f37729363ef1588c5fd368abf18b87390c9", + "xHandle": "pashapasshaa", + "xUrl": "https://twitter.com/pashapasshaa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_859139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "garciarodrigues", + "displayName": "Gnarcia", + "fid": 859139, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16c8db84-ccdb-4c31-33d9-5fa7c9057000/rectcrop3", + "followers": 97, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8898cd90f5b2021973a342c8e9343b00cacdaafa", + "etherscanUrl": "https://etherscan.io/address/0x8898cd90f5b2021973a342c8e9343b00cacdaafa", + "xHandle": "garciaskate1", + "xUrl": "https://twitter.com/garciaskate1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1085061", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sazsi", + "displayName": "Saz", + "fid": 1085061, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a54328e3-cf27-4515-5a08-3e5f8cc96000/rectcrop3", + "followers": 97, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f4b3a6f15992df36d65b4f5e79ef1922fc1cfeb", + "etherscanUrl": "https://etherscan.io/address/0x4f4b3a6f15992df36d65b4f5e79ef1922fc1cfeb", + "xHandle": "comlang777", + "xUrl": "https://twitter.com/comlang777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135151", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khosbujess", + "displayName": "Khosbujess", + "fid": 1135151, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/652af1f1-2d82-42c9-105f-8883e1a2c400/rectcrop3", + "followers": 97, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a63c1a34e0fea3c01b5b0e05c0b6c4d2b719241", + "etherscanUrl": "https://etherscan.io/address/0x6a63c1a34e0fea3c01b5b0e05c0b6c4d2b719241", + "xHandle": "khosbujess", + "xUrl": "https://twitter.com/khosbujess", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1209424", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rez99", + "displayName": "Loohhh.base.eth", + "fid": 1209424, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb554269-87f6-4d0c-3797-be32a1f8ad00/original", + "followers": 96, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa8bc1b0b2149bee206ff13435c0777d3ad83103d", + "etherscanUrl": "https://etherscan.io/address/0xa8bc1b0b2149bee206ff13435c0777d3ad83103d", + "xHandle": "rezk_93i", + "xUrl": "https://twitter.com/rezk_93i", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_610982", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aldrichparker", + "displayName": "AldrichParker", + "fid": 610982, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02df01b2-f56f-4bc0-c47f-b4929c67b600/rectcrop3", + "followers": 96, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04921056f004d90ff0f108ba71cf1b60d0a10362", + "etherscanUrl": "https://etherscan.io/address/0x04921056f004d90ff0f108ba71cf1b60d0a10362", + "xHandle": "utakaboy4lyf", + "xUrl": "https://twitter.com/utakaboy4lyf", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106872", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xiaoyann", + "displayName": "Xiaoyann", + "fid": 1106872, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eac74b18-1e1e-4b9a-398d-bddf88674300/original", + "followers": 96, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5942009be5f2414b8fb191fbac4ddfd7ab669e49", + "etherscanUrl": "https://etherscan.io/address/0x5942009be5f2414b8fb191fbac4ddfd7ab669e49", + "xHandle": "xlqnwvhreaxemt", + "xUrl": "https://twitter.com/xlqnwvhreaxemt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_911707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lunaticanto", + "displayName": "Luna 🌛", + "fid": 911707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d682bd6-d9b6-44b4-6ca8-6bab7c7ee500/rectcrop3", + "followers": 94, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b86bfa3418fa35df46bf3e020536ad08e109896", + "etherscanUrl": "https://etherscan.io/address/0x7b86bfa3418fa35df46bf3e020536ad08e109896", + "xHandle": "lunaticanto", + "xUrl": "https://twitter.com/lunaticanto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_998568", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yazumiiart", + "displayName": "YazumiiArt", + "fid": 998568, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bbe1d8d-a945-4fd1-c72c-512e7e70e300/original", + "followers": 94, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a3de524f153282d66150c46cd5191d24a6aedc1", + "etherscanUrl": "https://etherscan.io/address/0x8a3de524f153282d66150c46cd5191d24a6aedc1", + "xHandle": "yazumiiart", + "xUrl": "https://twitter.com/yazumiiart", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1150153", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dijhexy01", + "displayName": "Adedeji Abioye", + "fid": 1150153, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 94, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0341c936168d2dad58ccaa66a1ca177fb7636625", + "etherscanUrl": "https://etherscan.io/address/0x0341c936168d2dad58ccaa66a1ca177fb7636625", + "xHandle": "dijhexy", + "xUrl": "https://twitter.com/dijhexy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1194585", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mola01", + "displayName": "Mola01", + "fid": 1194585, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dce57855-04aa-42da-2656-3fb2e9de9b00/rectcrop3", + "followers": 93, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07b71d2d660721820ccb5d33596c31266cb638fb", + "etherscanUrl": "https://etherscan.io/address/0x07b71d2d660721820ccb5d33596c31266cb638fb", + "xHandle": "praiseika", + "xUrl": "https://twitter.com/praiseika", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_728686", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nicokarolla", + "displayName": "NicoKarolla . ⌐◨-◨", + "fid": 728686, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee85654-b775-4bb9-6fcc-7313cb08bd00/rectcrop3", + "followers": 91, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7906df8b37893499e1c785c02b8e6f72f0bbaced", + "etherscanUrl": "https://etherscan.io/address/0x7906df8b37893499e1c785c02b8e6f72f0bbaced", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1116212", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "doktor1509", + "displayName": "doktor1509", + "fid": 1116212, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74fc95dc-679f-4459-106e-327c0b879000/rectcrop3", + "followers": 91, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x995462fe4067f68ccbfa2197bb3d45067da0cba1", + "etherscanUrl": "https://etherscan.io/address/0x995462fe4067f68ccbfa2197bb3d45067da0cba1", + "xHandle": "diyana_nana", + "xUrl": "https://twitter.com/diyana_nana", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1322163", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sage-1000", + "displayName": "V I C 🐐", + "fid": 1322163, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82826afe-cb38-466f-671c-a440adb1c300/original", + "followers": 88, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec36541af1cf7db8a6168d62caa638c33169c709", + "etherscanUrl": "https://etherscan.io/address/0xec36541af1cf7db8a6168d62caa638c33169c709", + "xHandle": "victorander16", + "xUrl": "https://twitter.com/victorander16", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_548252", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khidhr", + "displayName": "khidhrafzal.base.eth", + "fid": 548252, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b98935-e59d-4555-fa91-df161420dc00/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b83f1393508667d9eada8abd02617b249860903", + "etherscanUrl": "https://etherscan.io/address/0x3b83f1393508667d9eada8abd02617b249860903", + "xHandle": "khidhrafzal", + "xUrl": "https://twitter.com/khidhrafzal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1327682", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cabbarlinihat5", + "displayName": "Nihat Cabbarli I 🦣", + "fid": 1327682, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92d1c17e-7255-40b0-20b7-ad652a022700/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd5b19cac41d9fb06ce44fb424bc596b6c77b0163", + "etherscanUrl": "https://etherscan.io/address/0xd5b19cac41d9fb06ce44fb424bc596b6c77b0163", + "xHandle": "cabbarlinihat5", + "xUrl": "https://twitter.com/cabbarlinihat5", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_898170", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "romands", + "displayName": "romands.base.eth", + "fid": 898170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebde434e-8356-409f-17f0-4d4f87323d00/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x969464f044b54432b0aa8ba74934cd19d92f43f9", + "etherscanUrl": "https://etherscan.io/address/0x969464f044b54432b0aa8ba74934cd19d92f43f9", + "xHandle": "nstwn29163", + "xUrl": "https://twitter.com/nstwn29163", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "obytex39", + "displayName": "Oby", + "fid": 1129707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f506022-14ea-451b-f580-463be9e2c400/original", + "followers": 87, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50c87092834f671ddaa2422b6486ef74f447b07d", + "etherscanUrl": "https://etherscan.io/address/0x50c87092834f671ddaa2422b6486ef74f447b07d", + "xHandle": "obytex44", + "xUrl": "https://twitter.com/obytex44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_821513", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "darkronan4251", + "displayName": "ThunderThief", + "fid": 821513, + "pfpUrl": "https://avatars.steamstatic.com/94ae43926cdf73dc1a4d0a99819e5ce173ffc335_full.jpg", + "followers": 86, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce7fb1e606ff4dbc3e07793675a4911e32fde563", + "etherscanUrl": "https://etherscan.io/address/0xce7fb1e606ff4dbc3e07793675a4911e32fde563", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1407932", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dario1234", + "displayName": "dario1234", + "fid": 1407932, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1050d55f-cd27-4809-6d02-3c8786acaa00/original", + "followers": 85, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04c1c7a0e0264a1300d3bde17659c51997866a52", + "etherscanUrl": "https://etherscan.io/address/0x04c1c7a0e0264a1300d3bde17659c51997866a52", + "xHandle": "dariora94299734", + "xUrl": "https://twitter.com/dariora94299734", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131249", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "strikee", + "displayName": "Strike 2025", + "fid": 1131249, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1fc34fc-50e3-4403-dad2-123f34a47800/original", + "followers": 85, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6e78dacbad2979335f7a8addae890db67cd09932", + "etherscanUrl": "https://etherscan.io/address/0x6e78dacbad2979335f7a8addae890db67cd09932", + "xHandle": "vlad12323566846", + "xUrl": "https://twitter.com/vlad12323566846", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_880434", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dnlherd", + "displayName": "DANIELHERD", + "fid": 880434, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a67dff70-1d6d-4627-821f-7ac9da633d00/original", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb1a72e9357dd602656d0e07b51d0597218dca06", + "etherscanUrl": "https://etherscan.io/address/0xbb1a72e9357dd602656d0e07b51d0597218dca06", + "xHandle": "danielherdianto", + "xUrl": "https://twitter.com/danielherdianto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_507251", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hexsite", + "displayName": "heXsite.base.eth", + "fid": 507251, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14857ea9-048e-48ed-3e13-33e43ca50300/rectcrop3", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3ca037d1abcd4076177bb6ba8baf4c20fdb607d", + "etherscanUrl": "https://etherscan.io/address/0xd3ca037d1abcd4076177bb6ba8baf4c20fdb607d", + "xHandle": "vince_luansing", + "xUrl": "https://twitter.com/vince_luansing", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1281578", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoragalleria", + "displayName": "CZXzbt", + "fid": 1281578, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b364ce0d-03a6-42af-2ab3-6daaabb0c800/original", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd10565a7216f63829bc9b3ebbb90244d0471013e", + "etherscanUrl": "https://etherscan.io/address/0xd10565a7216f63829bc9b3ebbb90244d0471013e", + "xHandle": "zoragalleria", + "xUrl": "https://twitter.com/zoragalleria", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_265243", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abhishek2005", + "displayName": "Abhishek2", + "fid": 265243, + "pfpUrl": "https://i.imgur.com/HwDq2Bo.jpg", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66da2362e33980e6c3c5ed2d1d32dd5491301ca2", + "etherscanUrl": "https://etherscan.io/address/0x66da2362e33980e6c3c5ed2d1d32dd5491301ca2", + "xHandle": "abhi876543", + "xUrl": "https://twitter.com/abhi876543", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_923932", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ci19822024", + "displayName": "SunnyWaveFit", + "fid": 923932, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ed185f6-96ae-426a-9621-a0712e925b00/original", + "followers": 84, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59e3740d52f0904e8d22628f04dbc9db6d2f9499", + "etherscanUrl": "https://etherscan.io/address/0x59e3740d52f0904e8d22628f04dbc9db6d2f9499", + "xHandle": "cridi97691189", + "xUrl": "https://twitter.com/cridi97691189", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_433957", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "actualgene", + "displayName": "ActualGene", + "fid": 433957, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ff1e58-a085-4ce8-6641-cf4e92d57000/original", + "followers": 83, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f923f1c3e7ec8a4bba29794426a4da0c4473374", + "etherscanUrl": "https://etherscan.io/address/0x6f923f1c3e7ec8a4bba29794426a4da0c4473374", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148133", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abdilah", + "displayName": "abdilah", + "fid": 1148133, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/70261364-452c-4a96-810c-319895636e00/original", + "followers": 82, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fbe255d2ba5f3f8fcad44f30f1d81150240a0b9", + "etherscanUrl": "https://etherscan.io/address/0x0fbe255d2ba5f3f8fcad44f30f1d81150240a0b9", + "xHandle": "abdillahfc04", + "xUrl": "https://twitter.com/abdillahfc04", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1104819", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jogechi", + "displayName": "jogechi", + "fid": 1104819, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 81, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0407d3b0f4447ade17599cb34e0bc641119cf90", + "etherscanUrl": "https://etherscan.io/address/0xc0407d3b0f4447ade17599cb34e0bc641119cf90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ubayah", + "displayName": "Ubayah", + "fid": 1135702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/213b30e5-e2c1-4e9a-49b4-3ef5e9579900/original", + "followers": 81, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49d8c0025a8b363da1588ea4b465fed24ac1075d", + "etherscanUrl": "https://etherscan.io/address/0x49d8c0025a8b363da1588ea4b465fed24ac1075d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1123160", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "primejoseph001", + "displayName": "PRIME1", + "fid": 1123160, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c5bc832-97e4-4ba2-c7b7-d5b7523bc400/original", + "followers": 81, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x805ec4d667d1d99c179f1085fd8c098aec45ceda", + "etherscanUrl": "https://etherscan.io/address/0x805ec4d667d1d99c179f1085fd8c098aec45ceda", + "xHandle": "j_joepete", + "xUrl": "https://twitter.com/j_joepete", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072998", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kudduskp", + "displayName": "md kuddus 🍊,💊", + "fid": 1072998, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7a9b8f9-3e2d-4859-130d-fe45b3e05b00/original", + "followers": 79, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60622fe4c2424d1249097e23dff2bcfae4fb0a35", + "etherscanUrl": "https://etherscan.io/address/0x60622fe4c2424d1249097e23dff2bcfae4fb0a35", + "xHandle": "mdkuddus463159", + "xUrl": "https://twitter.com/mdkuddus463159", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140337", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptogrannyno5", + "displayName": "CryptoGrannyNo5", + "fid": 1140337, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f54e022c-cd0c-4a3d-7424-4285993e1c00/original", + "followers": 78, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9baf506adb67061754aed812e052ed1e57d70b45", + "etherscanUrl": "https://etherscan.io/address/0x9baf506adb67061754aed812e052ed1e57d70b45", + "xHandle": "cryptogrannyno5", + "xUrl": "https://twitter.com/cryptogrannyno5", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_624372", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "christineevans", + "displayName": "ChristineEvans", + "fid": 624372, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b27c0eed-9d6a-49c5-89e5-0b7fccaf8100/rectcrop3", + "followers": 77, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4709e1cd895ecb042ddb10838bcb63cfb8540d21", + "etherscanUrl": "https://etherscan.io/address/0x4709e1cd895ecb042ddb10838bcb63cfb8540d21", + "xHandle": "baizesibanda", + "xUrl": "https://twitter.com/baizesibanda", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044020", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "durjoy147", + "displayName": "Lotika", + "fid": 1044020, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f84485cd-b628-46c9-1576-9795b7e58300/original", + "followers": 76, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0cc913aac12f350e9371263df38a1524edb83724", + "etherscanUrl": "https://etherscan.io/address/0x0cc913aac12f350e9371263df38a1524edb83724", + "xHandle": "megho1741059", + "xUrl": "https://twitter.com/megho1741059", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117520", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soundmind9978", + "displayName": "John Samuel Somtochukwu", + "fid": 1117520, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 76, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50af2a8e4ffdc25bbcc4898999304fc43ecb46d9", + "etherscanUrl": "https://etherscan.io/address/0x50af2a8e4ffdc25bbcc4898999304fc43ecb46d9", + "xHandle": "ogahmonday2", + "xUrl": "https://twitter.com/ogahmonday2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103752", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "baddiebwoy", + "displayName": "Ralph🐉", + "fid": 1103752, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb7f37f3-87e1-4207-1f06-daacdd26ed00/original", + "followers": 75, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x192fc5f7409823cdbd361630bf44ef554ca79f5a", + "etherscanUrl": "https://etherscan.io/address/0x192fc5f7409823cdbd361630bf44ef554ca79f5a", + "xHandle": "ralph_banigo", + "xUrl": "https://twitter.com/ralph_banigo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1206946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vladdydaddy", + "displayName": "Vlad Dracula", + "fid": 1206946, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7b14afe-3905-4f03-33d0-7b32d6f4bf00/original", + "followers": 75, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18654dafedd89e4b4e9e2125da5f28897853daf0", + "etherscanUrl": "https://etherscan.io/address/0x18654dafedd89e4b4e9e2125da5f28897853daf0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1058702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "samexcrypt", + "displayName": "SΛMΞX", + "fid": 1058702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baef04d3-1111-4c1a-1b2d-932fcea8ff00/original", + "followers": 74, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabb6c15a48049b2e4c60e15366c3c57a53aa314b", + "etherscanUrl": "https://etherscan.io/address/0xabb6c15a48049b2e4c60e15366c3c57a53aa314b", + "xHandle": "samexcrypt", + "xUrl": "https://twitter.com/samexcrypt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625623", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "robertaellis", + "displayName": "RobertaEllis", + "fid": 625623, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec21fea4-e1db-43bf-5f77-6809993a3d00/rectcrop3", + "followers": 73, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7745d2ea6012073aa9a0fcd7897961e08e111351", + "etherscanUrl": "https://etherscan.io/address/0x7745d2ea6012073aa9a0fcd7897961e08e111351", + "xHandle": "adeoyeomolekan", + "xUrl": "https://twitter.com/adeoyeomolekan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1252720", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pinchain", + "displayName": "pinchain15.base.Eth", + "fid": 1252720, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1757990982/image_uploads/6c99f413-8970-4561-95fe-da63562ef21d.png", + "followers": 71, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1af09d07393e4ede3dd3977f6fbd39042d6d5c2a", + "etherscanUrl": "https://etherscan.io/address/0x1af09d07393e4ede3dd3977f6fbd39042d6d5c2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1121094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crocky", + "displayName": "Crocky", + "fid": 1121094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5dccabf9-a8d4-451d-050a-7985a4cb2900/rectcrop3", + "followers": 71, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9680f1448a0748089acc0df4c4874777476ac4c", + "etherscanUrl": "https://etherscan.io/address/0xa9680f1448a0748089acc0df4c4874777476ac4c", + "xHandle": "offical_crocky", + "xUrl": "https://twitter.com/offical_crocky", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1114031", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uniair", + "displayName": "UNIAIR", + "fid": 1114031, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6f920c9-070d-4465-be41-bffe664eff00/original", + "followers": 70, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41f25a83827f24498e98ce84261d8164d526fd42", + "etherscanUrl": "https://etherscan.io/address/0x41f25a83827f24498e98ce84261d8164d526fd42", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142456", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tuniex01", + "displayName": "Babstuniex.eth.base", + "fid": 1142456, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/017246d8-2111-47f7-3154-254f1f088200/original", + "followers": 69, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a30e2c675867cc49d93bed41b362208d98d6c79", + "etherscanUrl": "https://etherscan.io/address/0x8a30e2c675867cc49d93bed41b362208d98d6c79", + "xHandle": "babatun34586112", + "xUrl": "https://twitter.com/babatun34586112", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_809708", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bonifacyfanta", + "displayName": "bonifacyfanta", + "fid": 809708, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e6489a69-4d8a-45e9-5e1e-44f5a8571c00/rectcrop3", + "followers": 69, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a5aa063561fb5d720094153e604c05853f51aac", + "etherscanUrl": "https://etherscan.io/address/0x4a5aa063561fb5d720094153e604c05853f51aac", + "xHandle": "cdayle59393", + "xUrl": "https://twitter.com/cdayle59393", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1096779", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joeyvee", + "displayName": "Ali. Cid", + "fid": 1096779, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4dc864b5-483e-4230-3d37-08f4c2642900/original", + "followers": 69, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3670788ed9ac17f3b40cdd585def527eed1021a6", + "etherscanUrl": "https://etherscan.io/address/0x3670788ed9ac17f3b40cdd585def527eed1021a6", + "xHandle": "joevgamerwi", + "xUrl": "https://twitter.com/joevgamerwi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143564", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "puppyfun", + "displayName": "Puppyfun", + "fid": 1143564, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac90c3ba-2dac-41e9-4bbb-116b83709d00/original", + "followers": 68, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe31df3e50668cb25fcf7ecf2a216f68ef81a2058", + "etherscanUrl": "https://etherscan.io/address/0xe31df3e50668cb25fcf7ecf2a216f68ef81a2058", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1019588", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bibly", + "displayName": "Joriv", + "fid": 1019588, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/143f0f11-4fc0-4904-45e0-4775c431fc00/original", + "followers": 68, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd47e69c1936e8cb56b09fd5b3cd5cc34ef895004", + "etherscanUrl": "https://etherscan.io/address/0xd47e69c1936e8cb56b09fd5b3cd5cc34ef895004", + "xHandle": "birkenroll56138", + "xUrl": "https://twitter.com/birkenroll56138", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_849019", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marinioac", + "displayName": "Mari", + "fid": 849019, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a3a9bbea-7130-4975-615a-b9882c7f0e00/rectcrop3", + "followers": 67, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b5f934da25c33f130efc5df47c91af1375baa30", + "etherscanUrl": "https://etherscan.io/address/0x4b5f934da25c33f130efc5df47c91af1375baa30", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_887330", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "captanugi", + "displayName": "Captanugi", + "fid": 887330, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3866209-9da5-495c-9397-810be456a400/rectcrop3", + "followers": 67, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x311fec404a0f3b58084ddbe1f4cf2e8f654db026", + "etherscanUrl": "https://etherscan.io/address/0x311fec404a0f3b58084ddbe1f4cf2e8f654db026", + "xHandle": "ulasyldz11", + "xUrl": "https://twitter.com/ulasyldz11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1168904", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamasya", + "displayName": "Mamasya", + "fid": 1168904, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/465c457d-b47c-4d53-f857-55a1e0576000/original", + "followers": 67, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70a426da0d087ee9f30aa99991fd92f73fb954ab", + "etherscanUrl": "https://etherscan.io/address/0x70a426da0d087ee9f30aa99991fd92f73fb954ab", + "xHandle": "mamasya14", + "xUrl": "https://twitter.com/mamasya14", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625167", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "armandtrevelyan", + "displayName": "ArmandTrevelyan", + "fid": 625167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7795c028-2698-4fb9-0ca7-17636c2cd100/rectcrop3", + "followers": 65, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04d2ac26af73854640b3546d37db7311243dd7ea", + "etherscanUrl": "https://etherscan.io/address/0x04d2ac26af73854640b3546d37db7311243dd7ea", + "xHandle": "davidwenas21", + "xUrl": "https://twitter.com/davidwenas21", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1372926", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rahmabello", + "displayName": "rahmabello", + "fid": 1372926, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a7adb06-9443-479e-3574-022eab6c6600/original", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f1f7031330ae5e33dfd655fd8f91f272af0161e", + "etherscanUrl": "https://etherscan.io/address/0x1f1f7031330ae5e33dfd655fd8f91f272af0161e", + "xHandle": "yahayamasa", + "xUrl": "https://twitter.com/yahayamasa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_485158", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rockmuzzo", + "displayName": "Rockmuzzo ", + "fid": 485158, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/020ad742-c54c-41d0-c526-cc511a5d3c00/rectcrop3", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc994ab7854596dfabb1c2cbdd63cc3a99018530c", + "etherscanUrl": "https://etherscan.io/address/0xc994ab7854596dfabb1c2cbdd63cc3a99018530c", + "xHandle": "muzammilkhateeb", + "xUrl": "https://twitter.com/muzammilkhateeb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1187309", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "w3mahi", + "displayName": "w3mahi", + "fid": 1187309, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4bc372e0-830d-4412-06b6-bc8965a37900/original", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8207fdc269e8eecde88569a7bbbdc8f38aaafce1", + "etherscanUrl": "https://etherscan.io/address/0x8207fdc269e8eecde88569a7bbbdc8f38aaafce1", + "xHandle": "w3_mahi", + "xUrl": "https://twitter.com/w3_mahi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1102858", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrhoki", + "displayName": "mrhoki.base.eth", + "fid": 1102858, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4747508d-6b91-4ea1-dfcb-4903daa28500/original", + "followers": 64, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6416d253230b952d0b5f77ce2a4473512fbafb11", + "etherscanUrl": "https://etherscan.io/address/0x6416d253230b952d0b5f77ce2a4473512fbafb11", + "xHandle": "thedokter27", + "xUrl": "https://twitter.com/thedokter27", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_715518", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sa3yed", + "displayName": "Saeed Alamoudi", + "fid": 715518, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/347f86c7-612c-40c4-c408-c98ad58dc600/original", + "followers": 63, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1d127301772e20b676c3c0d63a4931618459b1a5", + "etherscanUrl": "https://etherscan.io/address/0x1d127301772e20b676c3c0d63a4931618459b1a5", + "xHandle": "sa3yedalamoudi", + "xUrl": "https://twitter.com/sa3yedalamoudi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1079083", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0x45", + "displayName": "0x.prosperity", + "fid": 1079083, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e6d335f0-6916-4274-3573-c08a74cd0100/original", + "followers": 63, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96d821b36768a4e8dbc1b66b721221fd91f7f936", + "etherscanUrl": "https://etherscan.io/address/0x96d821b36768a4e8dbc1b66b721221fd91f7f936", + "xHandle": "0x45__", + "xUrl": "https://twitter.com/0x45__", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625059", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "griseldalaurie", + "displayName": "GriseldaLaurie", + "fid": 625059, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4aab0db9-bcb6-4380-b3c1-ce4149e59700/rectcrop3", + "followers": 63, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9ea8444e014c5e962e99465459fad2d889941d8", + "etherscanUrl": "https://etherscan.io/address/0xa9ea8444e014c5e962e99465459fad2d889941d8", + "xHandle": "pksbecoolboy", + "xUrl": "https://twitter.com/pksbecoolboy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_299381", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ranz", + "displayName": "Ranzz.Xyz", + "fid": 299381, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e81b8356-8ef8-4f36-ea2e-55a6c7412700/original", + "followers": 62, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0772d8ad918b631668a167c966196b2b2ac5ac5d", + "etherscanUrl": "https://etherscan.io/address/0x0772d8ad918b631668a167c966196b2b2ac5ac5d", + "xHandle": "baseesilver", + "xUrl": "https://twitter.com/baseesilver", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1162313", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ramadan90", + "displayName": "Ramcee", + "fid": 1162313, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 62, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66c84364e3a0bfe776bf9e04b54336e2cd167569", + "etherscanUrl": "https://etherscan.io/address/0x66c84364e3a0bfe776bf9e04b54336e2cd167569", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_854060", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "schmeez", + "displayName": "Schmeez", + "fid": 854060, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73a309b8-406e-40de-d611-8ee503f07900/rectcrop3", + "followers": 61, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x751a9c857be781f08853506ea12c9a795ed09d24", + "etherscanUrl": "https://etherscan.io/address/0x751a9c857be781f08853506ea12c9a795ed09d24", + "xHandle": "schmeez__", + "xUrl": "https://twitter.com/schmeez__", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1228088", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chiwelife", + "displayName": "Chinwendu Michael", + "fid": 1228088, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acdfbb9c-8aee-417e-a046-5355a6252700/original", + "followers": 61, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a6b94045a260c73625696a1b25518a69d17723b", + "etherscanUrl": "https://etherscan.io/address/0x2a6b94045a260c73625696a1b25518a69d17723b", + "xHandle": "chiwelifem", + "xUrl": "https://twitter.com/chiwelifem", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1158381", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ztaylor231", + "displayName": "PulseZac🐕🧦🧩", + "fid": 1158381, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf071882-aa99-49ea-570a-d774406f3b00/original", + "followers": 61, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a488153314e879f670846a2d235606c097ade7b", + "etherscanUrl": "https://etherscan.io/address/0x1a488153314e879f670846a2d235606c097ade7b", + "xHandle": "ztaylor231", + "xUrl": "https://twitter.com/ztaylor231", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_312382", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "britt", + "displayName": "Britt", + "fid": 312382, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5c6b463-d8af-4930-7813-f7ded23d4b00/original", + "followers": 61, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfcf7893eeb6da31ab398d2150e5f1066cd5f420e", + "etherscanUrl": "https://etherscan.io/address/0xfcf7893eeb6da31ab398d2150e5f1066cd5f420e", + "xHandle": "brittanymadruga", + "xUrl": "https://twitter.com/brittanymadruga", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20424", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "slagathor", + "displayName": "Pete", + "fid": 20424, + "pfpUrl": "https://i.imgur.com/BVC3xi1.jpg", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa6ed43b8be909eacf348ae33ea5cd428a407808", + "etherscanUrl": "https://etherscan.io/address/0xfa6ed43b8be909eacf348ae33ea5cd428a407808", + "xHandle": "pgee13", + "xUrl": "https://twitter.com/pgee13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1360144", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "egar", + "displayName": "Exynos🇲🇨", + "fid": 1360144, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/739ac093-0b41-4cd4-ecd2-32f33d718e00/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf076d4bdcf2a8138508812fbc6c2ff82ecf3eb07", + "etherscanUrl": "https://etherscan.io/address/0xf076d4bdcf2a8138508812fbc6c2ff82ecf3eb07", + "xHandle": "egar60436384", + "xUrl": "https://twitter.com/egar60436384", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1340791", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abdullahwriters", + "displayName": "Abdullah Writers 🧬", + "fid": 1340791, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d86ecfe-9959-4317-a571-95da07a71300/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76074e8a48bf7d819cbf8d26addb591e001f3e3a", + "etherscanUrl": "https://etherscan.io/address/0x76074e8a48bf7d819cbf8d26addb591e001f3e3a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148315", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "coolest-star", + "displayName": "Coolest Star Trading", + "fid": 1148315, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcffa88b-44a9-45c5-2386-cde901678300/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca587c8aa37891cc9dc3880ca65f190e1abb713c", + "etherscanUrl": "https://etherscan.io/address/0xca587c8aa37891cc9dc3880ca65f190e1abb713c", + "xHandle": "engin_akyurek28", + "xUrl": "https://twitter.com/engin_akyurek28", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082301", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "masudparvez12", + "displayName": "Md. Masud Parvez", + "fid": 1082301, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/198ffe2c-1ed4-436e-e43f-188d0fcbb600/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa5456e5f1b019abe2620f49b181e4ad007338ee", + "etherscanUrl": "https://etherscan.io/address/0xfa5456e5f1b019abe2620f49b181e4ad007338ee", + "xHandle": "mdmasud317", + "xUrl": "https://twitter.com/mdmasud317", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_964164", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "remylordski", + "displayName": "RemyLordSki", + "fid": 964164, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb95790d-5fc7-454d-89f4-1278f7a06d00/original", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd289f288ad626b30711a42ca42fc26875bd1f823", + "etherscanUrl": "https://etherscan.io/address/0xd289f288ad626b30711a42ca42fc26875bd1f823", + "xHandle": "remylordski", + "xUrl": "https://twitter.com/remylordski", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_624822", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iraford", + "displayName": "IraFord", + "fid": 624822, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ba2f135a-cd38-45b8-a6f3-ecb41572f200/rectcrop3", + "followers": 60, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70b9abd985f4ed1778d599d06e92f3324463404e", + "etherscanUrl": "https://etherscan.io/address/0x70b9abd985f4ed1778d599d06e92f3324463404e", + "xHandle": "caballero602", + "xUrl": "https://twitter.com/caballero602", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1337425", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arayyye.base.eth", + "displayName": "Raye", + "fid": 1337425, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761350790/IMG_1199.jpg.jpg", + "followers": 59, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fa52a33aec867b698efb118caae95d4b282afb8", + "etherscanUrl": "https://etherscan.io/address/0x3fa52a33aec867b698efb118caae95d4b282afb8", + "xHandle": "arayyye", + "xUrl": "https://twitter.com/arayyye", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1276579", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "smurfbase", + "displayName": "🐇smurf", + "fid": 1276579, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6cfa3193-9ffa-4e4a-27cc-686e67acee00/original", + "followers": 59, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x113165a3cf14bb7a31ec48751f01d7cb78a2682e", + "etherscanUrl": "https://etherscan.io/address/0x113165a3cf14bb7a31ec48751f01d7cb78a2682e", + "xHandle": "smurfbase", + "xUrl": "https://twitter.com/smurfbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_819015", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "akarice", + "displayName": "RainReckoner", + "fid": 819015, + "pfpUrl": "https://avatars.steamstatic.com/b0f58c49bf69c1f7885dda5b2c66d442cc80a1ba_full.jpg", + "followers": 58, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce9f46dd82a84905d0d8225fb8b947d90c145a6e", + "etherscanUrl": "https://etherscan.io/address/0xce9f46dd82a84905d0d8225fb8b947d90c145a6e", + "xHandle": "leonora296885", + "xUrl": "https://twitter.com/leonora296885", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1355296", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmadi1464", + "displayName": "ahmadi1464", + "fid": 1355296, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 58, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe79874781a4d4c8e3d1743a412656de109418b64", + "etherscanUrl": "https://etherscan.io/address/0xe79874781a4d4c8e3d1743a412656de109418b64", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1077674", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rockinem", + "displayName": "Rockinem", + "fid": 1077674, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd7b05b1-247c-4445-1855-ed6f4d159400/original", + "followers": 58, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30ddbe8c8717355cf8736d18804ff02fe8c10e46", + "etherscanUrl": "https://etherscan.io/address/0x30ddbe8c8717355cf8736d18804ff02fe8c10e46", + "xHandle": "r0ck1n3m", + "xUrl": "https://twitter.com/r0ck1n3m", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1014401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hesterr", + "displayName": "0xterr", + "fid": 1014401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/430819b6-8e8a-4fad-2056-1dd15ef8e300/original", + "followers": 58, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2fb190704a144886ee2328831a5b3beefe9df96a", + "etherscanUrl": "https://etherscan.io/address/0x2fb190704a144886ee2328831a5b3beefe9df96a", + "xHandle": "mr_exu", + "xUrl": "https://twitter.com/mr_exu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1432650", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "torahpanda", + "displayName": "torahpanda", + "fid": 1432650, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/775d8d6a-4bf6-49ed-dde7-93413a2aed00/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fc90841dc1ff9a56be01b3db05b1fecb98a6f6a", + "etherscanUrl": "https://etherscan.io/address/0x5fc90841dc1ff9a56be01b3db05b1fecb98a6f6a", + "xHandle": "jordanande56790", + "xUrl": "https://twitter.com/jordanande56790", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138475", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xlinu", + "displayName": "⚡🐣⚡", + "fid": 1138475, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a0546dc-e494-4aac-e9cd-4f55df6ce700/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29008aea548b9ae2dce11e719a9213dd4fb13ca2", + "etherscanUrl": "https://etherscan.io/address/0x29008aea548b9ae2dce11e719a9213dd4fb13ca2", + "xHandle": "0xlinu", + "xUrl": "https://twitter.com/0xlinu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_576810", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qasair", + "displayName": "Qaisargorcha", + "fid": 576810, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/68e77cd4-699b-49ff-3f5b-5dfaae5bf100/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6014404677d4cd426694fa2b0147f049684c395a", + "etherscanUrl": "https://etherscan.io/address/0x6014404677d4cd426694fa2b0147f049684c395a", + "xHandle": "gorchaqais87660", + "xUrl": "https://twitter.com/gorchaqais87660", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145032", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmadmukafi", + "displayName": "Ahmadmukafi", + "fid": 1145032, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ad6ba84-15c5-45e4-1e67-075c53c99800/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6b8ec820a54cb909150ca270156096767ded5a7", + "etherscanUrl": "https://etherscan.io/address/0xa6b8ec820a54cb909150ca270156096767ded5a7", + "xHandle": "yzzzz54", + "xUrl": "https://twitter.com/yzzzz54", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_665512", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mynamejeff", + "displayName": "MyNamejeff.base.eth", + "fid": 665512, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9a4d70b-3336-42f6-c5fd-147a85bc8d00/original", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe2371695066ba41ab3a295de9bd7b167127ead7", + "etherscanUrl": "https://etherscan.io/address/0xfe2371695066ba41ab3a295de9bd7b167127ead7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_620774", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "normanvogt", + "displayName": "NormanVogt", + "fid": 620774, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0cee50f9-e17b-42a1-8476-09940f945800/rectcrop3", + "followers": 57, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd39cc5c14f8144a2a351bd272487f084f3df217e", + "etherscanUrl": "https://etherscan.io/address/0xd39cc5c14f8144a2a351bd272487f084f3df217e", + "xHandle": "mnasser7450", + "xUrl": "https://twitter.com/mnasser7450", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108826", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lisa-iu", + "displayName": "nature", + "fid": 1108826, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b220c34-cea6-489c-8e55-b30bab176800/original", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x570eed7c099f7270b322cc638ab926e7c7b14c93", + "etherscanUrl": "https://etherscan.io/address/0x570eed7c099f7270b322cc638ab926e7c7b14c93", + "xHandle": "natthaw73936561", + "xUrl": "https://twitter.com/natthaw73936561", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_749832", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "enigma3", + "displayName": "Enigma3", + "fid": 749832, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3f0c80f-12ef-43e4-e882-97d343e86d00/original", + "followers": 56, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6edfdaaff0737b1677d7d1bfc8640a2834f20a2d", + "etherscanUrl": "https://etherscan.io/address/0x6edfdaaff0737b1677d7d1bfc8640a2834f20a2d", + "xHandle": "586782951d", + "xUrl": "https://twitter.com/586782951d", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_742917", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ledisturbio", + "displayName": "DISTURBIO", + "fid": 742917, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4cee817-f89d-4bb8-6585-5827595bfd00/rectcrop3", + "followers": 55, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74dafd12cff5ba3bb0f9594b860069df961bab02", + "etherscanUrl": "https://etherscan.io/address/0x74dafd12cff5ba3bb0f9594b860069df961bab02", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1061940", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ehsan68bad", + "displayName": "ehsan68bad.base.eth", + "fid": 1061940, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cd3189e-f7be-4292-64e8-a5205e18db00/original", + "followers": 55, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf93024091e567b98b264e80decabcad5e8dcdf87", + "etherscanUrl": "https://etherscan.io/address/0xf93024091e567b98b264e80decabcad5e8dcdf87", + "xHandle": "ehsantop173031", + "xUrl": "https://twitter.com/ehsantop173031", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_620175", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "angelojoel", + "displayName": "AngeloJoel", + "fid": 620175, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8fb946f0-15b1-408f-1544-fce820ecc100/rectcrop3", + "followers": 55, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c2250ead53496eba93459f3c010908a1fad90a1", + "etherscanUrl": "https://etherscan.io/address/0x2c2250ead53496eba93459f3c010908a1fad90a1", + "xHandle": "purvanbomel", + "xUrl": "https://twitter.com/purvanbomel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1068462", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mahfuz999", + "displayName": "Mahfuz", + "fid": 1068462, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4de950f-1131-4ab8-b018-819a2f842100/original", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb771d866c91b5556f4b77d6274c19f3062de8c48", + "etherscanUrl": "https://etherscan.io/address/0xb771d866c91b5556f4b77d6274c19f3062de8c48", + "xHandle": "mahfuz76317753", + "xUrl": "https://twitter.com/mahfuz76317753", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_860384", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sushiwill", + "displayName": "William Drakus", + "fid": 860384, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec5b8cc5-c438-4d88-435c-b5380e431500/original", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca533cf30ecc970ccab4fb4f3d11780f938ccf8a", + "etherscanUrl": "https://etherscan.io/address/0xca533cf30ecc970ccab4fb4f3d11780f938ccf8a", + "xHandle": "sushiwill25", + "xUrl": "https://twitter.com/sushiwill25", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1301115", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "riimo", + "displayName": "ليليا♥️", + "fid": 1301115, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac73224c-3767-4ba3-0c60-e9c5579fb900/original", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1478f390c6feed64b6a5bf7d1fe7085a50f36d9", + "etherscanUrl": "https://etherscan.io/address/0xb1478f390c6feed64b6a5bf7d1fe7085a50f36d9", + "xHandle": "ali7121350254", + "xUrl": "https://twitter.com/ali7121350254", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_431458", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "garib7", + "displayName": "Garib Garib", + "fid": 431458, + "pfpUrl": "https://i.imgur.com/1uDUWks.jpg", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e624e0b6a404fb076625f3141e4f6d9ef4c8b4c", + "etherscanUrl": "https://etherscan.io/address/0x3e624e0b6a404fb076625f3141e4f6d9ef4c8b4c", + "xHandle": "rrutelya", + "xUrl": "https://twitter.com/rrutelya", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131425", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "itachi171", + "displayName": "Itachi", + "fid": 1131425, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/70e4e92b-c95e-4999-ac04-feb438c1bb00/original", + "followers": 54, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x685dca20c64b787b64f89765fe3fd158aafca5d4", + "etherscanUrl": "https://etherscan.io/address/0x685dca20c64b787b64f89765fe3fd158aafca5d4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1345188", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "loba2406", + "displayName": "Lóbà 👑🤍✨", + "fid": 1345188, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99af39b0-52ea-452a-e3fc-e811b84abf00/original", + "followers": 53, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3191d14acc02901343661ccaa6178b21b53c06d", + "etherscanUrl": "https://etherscan.io/address/0xf3191d14acc02901343661ccaa6178b21b53c06d", + "xHandle": "pelejogun88466", + "xUrl": "https://twitter.com/pelejogun88466", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128903", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kgf7777", + "displayName": "Kgf7777 Kgf 🍊,💊", + "fid": 1128903, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ade3d127-4554-4b3e-aa62-96b21710ec00/original", + "followers": 52, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x856fdbedd56585e6ead9d9c8adec1fc6e9d99cce", + "etherscanUrl": "https://etherscan.io/address/0x856fdbedd56585e6ead9d9c8adec1fc6e9d99cce", + "xHandle": "kgf7777k5918", + "xUrl": "https://twitter.com/kgf7777k5918", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1343570", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nounstrategy", + "displayName": "NounStrategy", + "fid": 1343570, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a0d5027-94ed-4be3-3ee5-7a66b41f7b00/original", + "followers": 51, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5403a481a31b0d1f6ad157ef10d12e6692928acf", + "etherscanUrl": "https://etherscan.io/address/0x5403a481a31b0d1f6ad157ef10d12e6692928acf", + "xHandle": "nounstrategy", + "xUrl": "https://twitter.com/nounstrategy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1229384", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xsingha", + "displayName": "🦁0xsingha", + "fid": 1229384, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c615cee0-4b89-4341-b6a6-1e95321dfa00/original", + "followers": 51, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62579021addb1de6075138f5c08ac21edfec36fc", + "etherscanUrl": "https://etherscan.io/address/0x62579021addb1de6075138f5c08ac21edfec36fc", + "xHandle": "0xsingha", + "xUrl": "https://twitter.com/0xsingha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1082435", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maruf9929", + "displayName": "Abdullah Al Maruf", + "fid": 1082435, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fb34083-26ea-4379-93f3-da47c6f84e00/original", + "followers": 51, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55a2bd76e35509220c26e74939a6aaa27816b67d", + "etherscanUrl": "https://etherscan.io/address/0x55a2bd76e35509220c26e74939a6aaa27816b67d", + "xHandle": "maruf9929", + "xUrl": "https://twitter.com/maruf9929", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_573119", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gemmas", + "displayName": "Genma", + "fid": 573119, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5339e2a9-0cd4-4aa7-ddba-d70f11b31600/rectcrop3", + "followers": 51, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x53dfbe93d71cb474efbcab2bd407cd966103d648", + "etherscanUrl": "https://etherscan.io/address/0x53dfbe93d71cb474efbcab2bd407cd966103d648", + "xHandle": "martagarciamg", + "xUrl": "https://twitter.com/martagarciamg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1278620", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pemankord19", + "displayName": "PL", + "fid": 1278620, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9538137-b9f6-47d1-ff31-45ba092ef000/original", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36a495148467ea239484e475a94759dc82c8b147", + "etherscanUrl": "https://etherscan.io/address/0x36a495148467ea239484e475a94759dc82c8b147", + "xHandle": "lorstanipeman", + "xUrl": "https://twitter.com/lorstanipeman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605109", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wallis", + "displayName": "wallis", + "fid": 605109, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1238f7ea-e340-4c0c-d4d0-25ad063cbe00/rectcrop3", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xddad8a677a3be875b6800a5af317bbe08d90e120", + "etherscanUrl": "https://etherscan.io/address/0xddad8a677a3be875b6800a5af317bbe08d90e120", + "xHandle": "pakolatopasqua1", + "xUrl": "https://twitter.com/pakolatopasqua1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_924837", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lsnl", + "displayName": "James", + "fid": 924837, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9e4592b-d70f-4f7d-4543-17bc0e95ab00/rectcrop3", + "followers": 50, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x309e5067fa449d508e95885bdbda2499f268b9d4", + "etherscanUrl": "https://etherscan.io/address/0x309e5067fa449d508e95885bdbda2499f268b9d4", + "xHandle": "sedelitsi174061", + "xUrl": "https://twitter.com/sedelitsi174061", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_854515", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "geovannyagustin", + "displayName": "Bboy llio ", + "fid": 854515, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f857bdf-4a99-43f0-346f-b34d050dbf00/rectcrop3", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfc54f681650c8799d5e00760bcf7d58c056864e6", + "etherscanUrl": "https://etherscan.io/address/0xfc54f681650c8799d5e00760bcf7d58c056864e6", + "xHandle": "bboyllio", + "xUrl": "https://twitter.com/bboyllio", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_885215", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kopmaster", + "displayName": "Sukhlal Mistry", + "fid": 885215, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f40e897a-8a95-428c-e833-550372993c00/rectcrop3", + "followers": 49, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x052d4999f10e3a587d0efc3492d5b2ab9a4bf371", + "etherscanUrl": "https://etherscan.io/address/0x052d4999f10e3a587d0efc3492d5b2ab9a4bf371", + "xHandle": "mithunm39376027", + "xUrl": "https://twitter.com/mithunm39376027", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1426210", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anya11", + "displayName": "anya Queen", + "fid": 1426210, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2533b8ad-8965-4b7b-06fa-3ec7b7fda800/original", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a10aad4419d28cb8eb46c444737d9cb9b9ced5d", + "etherscanUrl": "https://etherscan.io/address/0x3a10aad4419d28cb8eb46c444737d9cb9b9ced5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1066414", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shigatsu98", + "displayName": "Li Ang Thai base.eth", + "fid": 1066414, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f0435bc-86ad-4de9-0cf8-9ddef1d36400/original", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb5b2aeeeec69229c76868d1074648d85aa0da257", + "etherscanUrl": "https://etherscan.io/address/0xb5b2aeeeec69229c76868d1074648d85aa0da257", + "xHandle": "baharnaim_", + "xUrl": "https://twitter.com/baharnaim_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_755523", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "solstice76", + "displayName": "Solstice76", + "fid": 755523, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23b50dec-6bbc-4266-bb7c-0f422025db00/original", + "followers": 48, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf44db8fce8951dd2d1117993bc57e9add6024ea", + "etherscanUrl": "https://etherscan.io/address/0xdf44db8fce8951dd2d1117993bc57e9add6024ea", + "xHandle": "ratana942", + "xUrl": "https://twitter.com/ratana942", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1153941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ellone", + "displayName": "ellone.base.eth", + "fid": 1153941, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/238b496d-7c84-4263-a399-7a4c45810b00/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3975680e8db33a510aceb55ef68bff821bba2e0b", + "etherscanUrl": "https://etherscan.io/address/0x3975680e8db33a510aceb55ef68bff821bba2e0b", + "xHandle": "theinmyintthan", + "xUrl": "https://twitter.com/theinmyintthan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1134991", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "siimo7", + "displayName": "Siimo", + "fid": 1134991, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8f9ea39-ddbc-4fd8-fefd-963903b04400/original", + "followers": 47, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x63ffb706a9ebd3db05c856756f0cf06fc63c1131", + "etherscanUrl": "https://etherscan.io/address/0x63ffb706a9ebd3db05c856756f0cf06fc63c1131", + "xHandle": "namidien24662", + "xUrl": "https://twitter.com/namidien24662", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1386285", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "omowumi", + "displayName": "omowumi", + "fid": 1386285, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 46, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf6247109366a1ab5717f621e68a20212cd1ce52", + "etherscanUrl": "https://etherscan.io/address/0xbf6247109366a1ab5717f621e68a20212cd1ce52", + "xHandle": "kscent227248", + "xUrl": "https://twitter.com/kscent227248", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1384195", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "youda", + "displayName": "youda", + "fid": 1384195, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c28b0d8-2cd9-45ec-44f6-65ab70693300/original", + "followers": 46, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cf8692e37d4d479aec0faca2460b50c065759ee", + "etherscanUrl": "https://etherscan.io/address/0x2cf8692e37d4d479aec0faca2460b50c065759ee", + "xHandle": "gooaav1", + "xUrl": "https://twitter.com/gooaav1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615476", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lancenewman", + "displayName": "LanceNewman", + "fid": 615476, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93808071-75ad-42cd-48ec-56b91556a800/rectcrop3", + "followers": 46, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fe31c19b2aee0350acd7029b0850f631bffe151", + "etherscanUrl": "https://etherscan.io/address/0x9fe31c19b2aee0350acd7029b0850f631bffe151", + "xHandle": "byronkilson", + "xUrl": "https://twitter.com/byronkilson", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611789", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "medalyoumidnig", + "displayName": "Molly Nehemiah", + "fid": 611789, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f21815e-304d-41bc-dd71-8dd3bb125a00/rectcrop3", + "followers": 46, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x740e6318f4b0213499ea8aebfe2ba30aca1cc3d7", + "etherscanUrl": "https://etherscan.io/address/0x740e6318f4b0213499ea8aebfe2ba30aca1cc3d7", + "xHandle": "kamusoso", + "xUrl": "https://twitter.com/kamusoso", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_819483", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jtsquare2010", + "displayName": "PrecipPro", + "fid": 819483, + "pfpUrl": "https://avatars.steamstatic.com/fd31ad4839a86a8f54e2900230dd26ea966e9af7_full.jpg", + "followers": 45, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e28f3bdccc8a2b10f4ee9b61adac79e5212f914", + "etherscanUrl": "https://etherscan.io/address/0x4e28f3bdccc8a2b10f4ee9b61adac79e5212f914", + "xHandle": "oscar5152654097", + "xUrl": "https://twitter.com/oscar5152654097", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063633", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "keceboong", + "displayName": "FarAway", + "fid": 1063633, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/240832f9-b599-4ed1-a995-27ca0bacda00/rectcrop3", + "followers": 45, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91f74ea7778e39e5e7ddf21929863966e61d9039", + "etherscanUrl": "https://etherscan.io/address/0x91f74ea7778e39e5e7ddf21929863966e61d9039", + "xHandle": "lollipopbase", + "xUrl": "https://twitter.com/lollipopbase", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_624839", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "geraldinebuckle", + "displayName": "GeraldineBuckle", + "fid": 624839, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06c54f32-456e-48c9-4321-a6c978ca9400/rectcrop3", + "followers": 45, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x688acca573954e8c059ba28367b382a947a4b4b9", + "etherscanUrl": "https://etherscan.io/address/0x688acca573954e8c059ba28367b382a947a4b4b9", + "xHandle": "derryhaliem", + "xUrl": "https://twitter.com/derryhaliem", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_846790", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "evelynjosiah1", + "displayName": "Evelynjosiah1 ", + "fid": 846790, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6aadce41-bab7-4fe4-7477-a980c8534d00/rectcrop3", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ad08adfae8202ef63ccbfb48a02dd147730fe7f", + "etherscanUrl": "https://etherscan.io/address/0x8ad08adfae8202ef63ccbfb48a02dd147730fe7f", + "xHandle": "kester_udo", + "xUrl": "https://twitter.com/kester_udo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_442056", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sajan11", + "displayName": "Sajan", + "fid": 442056, + "pfpUrl": "https://i.imgur.com/Hk5nuyv.jpg", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9ab8a682a06ed910a7c8c8adca8f6c19d7b25a0", + "etherscanUrl": "https://etherscan.io/address/0xf9ab8a682a06ed910a7c8c8adca8f6c19d7b25a0", + "xHandle": "kajolka55978265", + "xUrl": "https://twitter.com/kajolka55978265", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_600757", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "riskygoat", + "displayName": "SYVEN", + "fid": 600757, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6826b5c9-3f2f-4910-dcc5-319c1a96d600/original", + "followers": 44, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1aa291b5ed92964ccf3ca2f6df5dcde6ed19b8cd", + "etherscanUrl": "https://etherscan.io/address/0x1aa291b5ed92964ccf3ca2f6df5dcde6ed19b8cd", + "xHandle": "iooinone", + "xUrl": "https://twitter.com/iooinone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_822994", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrwonder", + "displayName": "Mrwonder", + "fid": 822994, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99044c6b-35bd-4d86-7e83-245cdc2c3d00/rectcrop3", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfafd041ea7a52ef1c721aea632f5e11e515d6d9b", + "etherscanUrl": "https://etherscan.io/address/0xfafd041ea7a52ef1c721aea632f5e11e515d6d9b", + "xHandle": "isaiahopem08011", + "xUrl": "https://twitter.com/isaiahopem08011", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_548645", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "munchy", + "displayName": "Selena", + "fid": 548645, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24276eaa-f735-41cb-db05-f4c59de52400/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f5aa2467266b06efcb7e931a572537eb77de452", + "etherscanUrl": "https://etherscan.io/address/0x6f5aa2467266b06efcb7e931a572537eb77de452", + "xHandle": "nguytnguyn38336", + "xUrl": "https://twitter.com/nguytnguyn38336", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_821581", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sleepybreadmaker", + "displayName": "StormStrider", + "fid": 821581, + "pfpUrl": "https://avatars.steamstatic.com/d18ad94318562b32bb65ac78c722782128c2bf5e_full.jpg", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8bcd5161abc6f1a5cf557da977c67772348b51f8", + "etherscanUrl": "https://etherscan.io/address/0x8bcd5161abc6f1a5cf557da977c67772348b51f8", + "xHandle": "evan77617390497", + "xUrl": "https://twitter.com/evan77617390497", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1290249", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "slamsaint", + "displayName": "Slam Saint", + "fid": 1290249, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/473ae912-6aa1-4bcc-6143-013568c3f100/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb797b7c612456264f43de45fc59d1420564cb1f8", + "etherscanUrl": "https://etherscan.io/address/0xb797b7c612456264f43de45fc59d1420564cb1f8", + "xHandle": "slamsaint69", + "xUrl": "https://twitter.com/slamsaint69", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1191002", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trimegistus", + "displayName": "Mystic", + "fid": 1191002, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9d93f8c3-1815-4b60-ff80-00a9220c9400/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d439aa6280eb4f5c1d4b63313bafb70a0526aed", + "etherscanUrl": "https://etherscan.io/address/0x0d439aa6280eb4f5c1d4b63313bafb70a0526aed", + "xHandle": "cipherz23482", + "xUrl": "https://twitter.com/cipherz23482", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1144644", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nahiz97", + "displayName": "nahiz97", + "fid": 1144644, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b6744f1-7817-4f08-4895-b53fe5f8e600/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf1ab8d34d79aaa39076e0734c79ab29e78da6385", + "etherscanUrl": "https://etherscan.io/address/0xf1ab8d34d79aaa39076e0734c79ab29e78da6385", + "xHandle": "nahiz97", + "xUrl": "https://twitter.com/nahiz97", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141635", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nitroxbase", + "displayName": "Nitro On Base", + "fid": 1141635, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07abcb0d-1ae1-444f-4451-591f09a9f700/original", + "followers": 43, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5bd24ad9504aaf8d47c7b0af4636b26bbc2170aa", + "etherscanUrl": "https://etherscan.io/address/0x5bd24ad9504aaf8d47c7b0af4636b26bbc2170aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143837", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "megazeuz", + "displayName": "Zeuz", + "fid": 1143837, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59e4a725-02a0-423e-22b4-214d3b1be300/rectcrop3", + "followers": 42, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x089d7a8a728ab4658e8aa1cb6bb960e7b850fbe7", + "etherscanUrl": "https://etherscan.io/address/0x089d7a8a728ab4658e8aa1cb6bb960e7b850fbe7", + "xHandle": "livngh20", + "xUrl": "https://twitter.com/livngh20", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1119914", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "idsoon", + "displayName": "IDSoon", + "fid": 1119914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbf1ae4a-b55a-4a9a-de36-ffd710a8fe00/original", + "followers": 42, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb95206a0a85df59efddc1950b22266b2853e1c8f", + "etherscanUrl": "https://etherscan.io/address/0xb95206a0a85df59efddc1950b22266b2853e1c8f", + "xHandle": "soonce3", + "xUrl": "https://twitter.com/soonce3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_898149", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alexmurray", + "displayName": "Alex Murray", + "fid": 898149, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a1839402-79c4-4df2-be0f-86bc3fcbc900/rectcrop3", + "followers": 41, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x628045ef381cd3d335d4be8413a0af8ab066cd27", + "etherscanUrl": "https://etherscan.io/address/0x628045ef381cd3d335d4be8413a0af8ab066cd27", + "xHandle": "alex_m_murray", + "xUrl": "https://twitter.com/alex_m_murray", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1398695", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "buyoceantrash.eth", + "displayName": "buyoceantrash", + "fid": 1398695, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bfcc24e6-5a62-4cc6-97fd-15e836712600/original", + "followers": 41, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x664418e5e5a30c94a11b962dd245eb8071dde71b", + "etherscanUrl": "https://etherscan.io/address/0x664418e5e5a30c94a11b962dd245eb8071dde71b", + "xHandle": "buyoceantrash", + "xUrl": "https://twitter.com/buyoceantrash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1373157", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kante16", + "displayName": "kante16", + "fid": 1373157, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 41, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62e1cdc685277ac438965bd10df1cd5fb58609bc", + "etherscanUrl": "https://etherscan.io/address/0x62e1cdc685277ac438965bd10df1cd5fb58609bc", + "xHandle": "mohorretdashe16", + "xUrl": "https://twitter.com/mohorretdashe16", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1352704", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "achzuldaf", + "displayName": "Achzuldaf base.eth", + "fid": 1352704, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67696749-554e-4e25-b5d1-b52a544ae100/original", + "followers": 41, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf90f5f808e3d35a20087d97612e8452e2a9b5d88", + "etherscanUrl": "https://etherscan.io/address/0xf90f5f808e3d35a20087d97612e8452e2a9b5d88", + "xHandle": "achzuldaf", + "xUrl": "https://twitter.com/achzuldaf", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1161885", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amumeen", + "displayName": "SUBLIME", + "fid": 1161885, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c5fef132-8710-44af-8587-f3201d847200/original", + "followers": 41, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00c10eacfe4deb67d9440ad206f58107eb1b2aae", + "etherscanUrl": "https://etherscan.io/address/0x00c10eacfe4deb67d9440ad206f58107eb1b2aae", + "xHandle": "abdulmuminlawal", + "xUrl": "https://twitter.com/abdulmuminlawal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1327348", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nexusmedialab", + "displayName": "NΞXUS", + "fid": 1327348, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1b726536-9dc8-48d2-c599-fab503ecc600/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa61020f3d206d790b9cce6604dc2421a339932df", + "etherscanUrl": "https://etherscan.io/address/0xa61020f3d206d790b9cce6604dc2421a339932df", + "xHandle": "nexusmedialab", + "xUrl": "https://twitter.com/nexusmedialab", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_569198", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alarapit", + "displayName": "Alex Arapitsas ", + "fid": 569198, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd89a0a4-6a6c-4ec7-31b8-df93cee17700/rectcrop3", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c711141621c40f167f62df9e4f563cde744c2cb", + "etherscanUrl": "https://etherscan.io/address/0x4c711141621c40f167f62df9e4f563cde744c2cb", + "xHandle": "alexarapitsas", + "xUrl": "https://twitter.com/alexarapitsas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1090169", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bropat4jesus", + "displayName": "Mbachu Patrick IBE", + "fid": 1090169, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0abee77a-3329-422c-7f75-291946fd4a00/rectcrop3", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0ab225431009d17e938d9d5728079f768afa91a", + "etherscanUrl": "https://etherscan.io/address/0xb0ab225431009d17e938d9d5728079f768afa91a", + "xHandle": "patibe2", + "xUrl": "https://twitter.com/patibe2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1090748", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stormi", + "displayName": "Stormi", + "fid": 1090748, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ca8d3addad05fc2c08f4cadd913c0fd13c03f12", + "etherscanUrl": "https://etherscan.io/address/0x2ca8d3addad05fc2c08f4cadd913c0fd13c03f12", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1169878", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "norozzamal141", + "displayName": "Jahid Mia", + "fid": 1169878, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11cfc4ec-f807-4188-2923-e057075ec900/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3f3f42ff0688c7bd09d502ca1847de5b2f716a1", + "etherscanUrl": "https://etherscan.io/address/0xc3f3f42ff0688c7bd09d502ca1847de5b2f716a1", + "xHandle": "jmia4181", + "xUrl": "https://twitter.com/jmia4181", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132441", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gweigolf", + "displayName": "Gwei Golf", + "fid": 1132441, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc6a42ce-bd72-483e-25f4-f0bec8100e00/original", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46d7c701c3f60840c0ddc025cca953d9250b0a4a", + "etherscanUrl": "https://etherscan.io/address/0x46d7c701c3f60840c0ddc025cca953d9250b0a4a", + "xHandle": "gweigolf", + "xUrl": "https://twitter.com/gweigolf", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_603339", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jacksons", + "displayName": "Jackson", + "fid": 603339, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9bff504-f2b4-4285-adc0-cbf62c9cc500/rectcrop3", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec8db75768c70bb26c04adf51cd7e4d32401853d", + "etherscanUrl": "https://etherscan.io/address/0xec8db75768c70bb26c04adf51cd7e4d32401853d", + "xHandle": "drockyrascoe", + "xUrl": "https://twitter.com/drockyrascoe", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_343486", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shayaan", + "displayName": "Shayaan", + "fid": 343486, + "pfpUrl": "https://i.imgur.com/Xd24Id6.jpg", + "followers": 40, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf5129011e2b367e4724ef722da5fe65bd13fa66", + "etherscanUrl": "https://etherscan.io/address/0xdf5129011e2b367e4724ef722da5fe65bd13fa66", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_573378", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hutt", + "displayName": "Hutt", + "fid": 573378, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4dc32046-8437-411d-df1c-6a5b22cc9f00/rectcrop3", + "followers": 39, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c1f603b1f408ba56125773e2523da596526c41b", + "etherscanUrl": "https://etherscan.io/address/0x7c1f603b1f408ba56125773e2523da596526c41b", + "xHandle": "callistannebo", + "xUrl": "https://twitter.com/callistannebo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1134650", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "donwizzy", + "displayName": "abiola wisdom", + "fid": 1134650, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53456ee9-c40a-485b-fe7a-3619dfb55a00/original", + "followers": 39, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd60a287a8c5253122469e012f0e8766ae5d24a7", + "etherscanUrl": "https://etherscan.io/address/0xdd60a287a8c5253122469e012f0e8766ae5d24a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_604770", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chiccharm", + "displayName": "ChicCharm", + "fid": 604770, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88623ad7-3ab7-478e-5837-95e45e1da300/rectcrop3", + "followers": 39, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15eb037e83e9c19f6780fa5ddb76d9010b9f3c7c", + "etherscanUrl": "https://etherscan.io/address/0x15eb037e83e9c19f6780fa5ddb76d9010b9f3c7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605702", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "susanwoolf", + "displayName": "Susan Woolf", + "fid": 605702, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ca920ed-6468-4260-7e7b-73a5e1a91a00/rectcrop3", + "followers": 39, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e60045b288064b953557ad5c07482de78e2a329", + "etherscanUrl": "https://etherscan.io/address/0x9e60045b288064b953557ad5c07482de78e2a329", + "xHandle": "m_ariyadi", + "xUrl": "https://twitter.com/m_ariyadi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1000220", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sisisipin", + "displayName": "Aurora", + "fid": 1000220, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c49a2b3-72a5-4539-3b4d-7c69c56a0c00/original", + "followers": 38, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5868e528fae6fe432b61a5774cda54bd2193a9b1", + "etherscanUrl": "https://etherscan.io/address/0x5868e528fae6fe432b61a5774cda54bd2193a9b1", + "xHandle": "hoanganh1143605", + "xUrl": "https://twitter.com/hoanganh1143605", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_872604", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "defikongethbase", + "displayName": "DeFi K⭕ng", + "fid": 872604, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/319c00a5-8efe-4515-da76-afc3f8e56a00/rectcrop3", + "followers": 38, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafb65949b1dad86940480892a88a30b7d7831ee3", + "etherscanUrl": "https://etherscan.io/address/0xafb65949b1dad86940480892a88a30b7d7831ee3", + "xHandle": "chidex_andrew", + "xUrl": "https://twitter.com/chidex_andrew", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1353911", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdl.eth", + "displayName": "mdl.eth", + "fid": 1353911, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763239656/b77e4554-af0d-4c6b-bb8d-69bc3929a566.png", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68f1cfbc7847f706d823d2b956db8cc29b46fd4d", + "etherscanUrl": "https://etherscan.io/address/0x68f1cfbc7847f706d823d2b956db8cc29b46fd4d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1306191", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joyttt", + "displayName": "Joyttt", + "fid": 1306191, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54338218-90cc-46b4-e2a1-52b78416f300/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x744e2e4648e74dbcfb0185f3425abc333dafda11", + "etherscanUrl": "https://etherscan.io/address/0x744e2e4648e74dbcfb0185f3425abc333dafda11", + "xHandle": "joyroy73078401", + "xUrl": "https://twitter.com/joyroy73078401", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_358866", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brandoneth", + "displayName": "Glasseye", + "fid": 358866, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/9376b186-4b3d-4c88-c79e-9fe5a491fe00/public", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x548dd26615d860c12111a42234844f1467d359ce", + "etherscanUrl": "https://etherscan.io/address/0x548dd26615d860c12111a42234844f1467d359ce", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190838", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tahirr", + "displayName": "Tahir", + "fid": 1190838, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b32ecd7f-8561-45b4-66f8-97e74d0f6600/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f123c7f5fcae4f87163ea51af6dcbd19f4a217d", + "etherscanUrl": "https://etherscan.io/address/0x5f123c7f5fcae4f87163ea51af6dcbd19f4a217d", + "xHandle": "ariyani28778224", + "xUrl": "https://twitter.com/ariyani28778224", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615398", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bowennichol", + "displayName": "Bowen Nichol(s)", + "fid": 615398, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa9c6f67-e3fd-4fbe-8e1a-056dd1e86700/rectcrop3", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x510a714881c105f5a61beeaaa2e8115ef86bf674", + "etherscanUrl": "https://etherscan.io/address/0x510a714881c105f5a61beeaaa2e8115ef86bf674", + "xHandle": "willork", + "xUrl": "https://twitter.com/willork", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611923", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "webstermac-", + "displayName": "Webster Mac-", + "fid": 611923, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/977815cc-fdb4-40aa-93ac-a48cb91adc00/rectcrop3", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38e78d44ec5b5597bb588b60714d61056ec2c804", + "etherscanUrl": "https://etherscan.io/address/0x38e78d44ec5b5597bb588b60714d61056ec2c804", + "xHandle": "maruskasabato", + "xUrl": "https://twitter.com/maruskasabato", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1099076", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "seulseul112", + "displayName": "슬슬2", + "fid": 1099076, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4860aa7a-7fe3-4d53-f6b8-458641c38b00/original", + "followers": 37, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x642baff83f6927338e056e0b77702a236c9ab5bf", + "etherscanUrl": "https://etherscan.io/address/0x642baff83f6927338e056e0b77702a236c9ab5bf", + "xHandle": "seulseul112", + "xUrl": "https://twitter.com/seulseul112", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_821619", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sergiosantonio", + "displayName": "sparkygirl", + "fid": 821619, + "pfpUrl": "https://avatars.steamstatic.com/76dacfe8b092835aad68ddf1b77f9f290de7e5a8_full.jpg", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a33717d47bf7a0d9f8f393822d119bd35578a2b", + "etherscanUrl": "https://etherscan.io/address/0x7a33717d47bf7a0d9f8f393822d119bd35578a2b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1201858", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tradeos", + "displayName": "Trading Operating System", + "fid": 1201858, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e5378c1-992d-4c02-2e0a-c95f53883600/rectcrop3", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b80f783ff016afff40891d45bc8832f0c12d2f5", + "etherscanUrl": "https://etherscan.io/address/0x5b80f783ff016afff40891d45bc8832f0c12d2f5", + "xHandle": "yl8805178047861", + "xUrl": "https://twitter.com/yl8805178047861", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1219247", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "indyaa", + "displayName": "Indiara Serreiro", + "fid": 1219247, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/233ea9de-c0cc-46c4-7c3d-d1c55eaec300/original", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bcc895fea445c0295f61f506a0608b35b12a6cf", + "etherscanUrl": "https://etherscan.io/address/0x9bcc895fea445c0295f61f506a0608b35b12a6cf", + "xHandle": "indiaraserreiro", + "xUrl": "https://twitter.com/indiaraserreiro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1181618", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dirtoitaliano", + "displayName": "I'm the dirt o Italiano", + "fid": 1181618, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d69f0c38-c7f1-4139-a66a-875cf4975600/original", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55820d75252951c3f59548ccea09fd277f4757ab", + "etherscanUrl": "https://etherscan.io/address/0x55820d75252951c3f59548ccea09fd277f4757ab", + "xHandle": "mad_xplus_chem", + "xUrl": "https://twitter.com/mad_xplus_chem", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611921", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hildaoccam", + "displayName": "Hilda Occam", + "fid": 611921, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8c582aa-dbb0-4a7b-93b1-42cd7a64b800/rectcrop3", + "followers": 36, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02880f0accd6587fedcb972fd95d2fd50c258ec0", + "etherscanUrl": "https://etherscan.io/address/0x02880f0accd6587fedcb972fd95d2fd50c258ec0", + "xHandle": "foultzjasmine", + "xUrl": "https://twitter.com/foultzjasmine", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1320978", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thisisclemzy", + "displayName": "Aziakpono Clement", + "fid": 1320978, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761782092/1000468523.jpg.jpg", + "followers": 35, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05454ebe3c76042d3ec0d2ea03513e6a8537f41a", + "etherscanUrl": "https://etherscan.io/address/0x05454ebe3c76042d3ec0d2ea03513e6a8537f41a", + "xHandle": "thisisclemzyx", + "xUrl": "https://twitter.com/thisisclemzyx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_895875", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ingsun", + "displayName": "ingsun.base.eth 🇲🇨", + "fid": 895875, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/90fe2f42-87e1-430e-e180-6c3e3af4e100/original", + "followers": 35, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67faa039fc0a7022e6bc304455f9a48189403c53", + "etherscanUrl": "https://etherscan.io/address/0x67faa039fc0a7022e6bc304455f9a48189403c53", + "xHandle": "dapurcrypto_org", + "xUrl": "https://twitter.com/dapurcrypto_org", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611791", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "owenkellogg", + "displayName": "Owen Kellogg", + "fid": 611791, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b28d5041-6cfa-490e-909b-8c0083f49500/rectcrop3", + "followers": 35, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e1b05d484e1db372b19e74c732efb75c071e7cf", + "etherscanUrl": "https://etherscan.io/address/0x5e1b05d484e1db372b19e74c732efb75c071e7cf", + "xHandle": "salbiahesa", + "xUrl": "https://twitter.com/salbiahesa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_992006", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onact", + "displayName": "OnAct", + "fid": 992006, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5f02abe-e8f7-4874-cd74-6d42b772e900/original", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40b698bcebe887f2d57fdbf88639bece9991b308", + "etherscanUrl": "https://etherscan.io/address/0x40b698bcebe887f2d57fdbf88639bece9991b308", + "xHandle": "onactxyz", + "xUrl": "https://twitter.com/onactxyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rshamim143", + "displayName": "RS. Shamim ebi🍤", + "fid": 1140324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf898bf1-4990-473c-d538-91b7a6763700/original", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a8af05505d44f386e5ca0a0ac85da123e1ddfd7", + "etherscanUrl": "https://etherscan.io/address/0x9a8af05505d44f386e5ca0a0ac85da123e1ddfd7", + "xHandle": "rsshamim20", + "xUrl": "https://twitter.com/rsshamim20", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1108892", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uncoloredcrypto", + "displayName": "uncoloredcrypto.nad", + "fid": 1108892, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/514c5cba-fd38-4b2d-0630-2adaae81c600/original", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x343d28e352dc9cd05df983045b3ec582e41584c0", + "etherscanUrl": "https://etherscan.io/address/0x343d28e352dc9cd05df983045b3ec582e41584c0", + "xHandle": "uncoloredcrypto", + "xUrl": "https://twitter.com/uncoloredcrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_603215", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "velvetlustred1sf", + "displayName": "VelvetLustre", + "fid": 603215, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96bad8da-3614-422d-4dbb-5ac6346a7500/rectcrop3", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61cbbfbdd5567fc223c385b35bc9ff313cd60648", + "etherscanUrl": "https://etherscan.io/address/0x61cbbfbdd5567fc223c385b35bc9ff313cd60648", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615484", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cliffconstance", + "displayName": "Cliff Constance", + "fid": 615484, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81af1202-b778-4645-c270-10ad27a56900/rectcrop3", + "followers": 34, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8406159c8eaf7aa3fc761709d11c5710a229143d", + "etherscanUrl": "https://etherscan.io/address/0x8406159c8eaf7aa3fc761709d11c5710a229143d", + "xHandle": "jpt_jptorres", + "xUrl": "https://twitter.com/jpt_jptorres", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1371067", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kishore-1611", + "displayName": "Telugu Crypto Trader", + "fid": 1371067, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ee8d64c-245e-494a-66ba-67930f9a1800/original", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x961ac9cf896020a93c0438ceb1c73c11a51281ac", + "etherscanUrl": "https://etherscan.io/address/0x961ac9cf896020a93c0438ceb1c73c11a51281ac", + "xHandle": "roshan_35032", + "xUrl": "https://twitter.com/roshan_35032", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_789144", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meowsome", + "displayName": "meowsome", + "fid": 789144, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a9ecb972-744c-42c8-db4f-4ced5243ad00/original", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f4d249d9d4f43af3665a8e37e3dc94191579345", + "etherscanUrl": "https://etherscan.io/address/0x6f4d249d9d4f43af3665a8e37e3dc94191579345", + "xHandle": "hyraxmeowsome", + "xUrl": "https://twitter.com/hyraxmeowsome", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611787", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "legalmassdeal", + "displayName": "Leonard Warner", + "fid": 611787, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/211ce96c-3fde-4b26-56e7-06cc4bc1a100/rectcrop3", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca0174abbb003ba0ed96bd830a35763bd944c6d5", + "etherscanUrl": "https://etherscan.io/address/0xca0174abbb003ba0ed96bd830a35763bd944c6d5", + "xHandle": "nedalsalman1", + "xUrl": "https://twitter.com/nedalsalman1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611047", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blancherose", + "displayName": "Blanche Rose", + "fid": 611047, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/925481b6-e3b3-4a12-c4ac-85f2e2094100/rectcrop3", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32b90a8a4da7fbe002a5b1b81850433bc7568513", + "etherscanUrl": "https://etherscan.io/address/0x32b90a8a4da7fbe002a5b1b81850433bc7568513", + "xHandle": "esamalhory28", + "xUrl": "https://twitter.com/esamalhory28", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611051", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "teresajerry", + "displayName": "Teresa Jerry", + "fid": 611051, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d20554-7ea7-4d60-bfec-034075d56400/rectcrop3", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9eb1b699146333f6c5789351ccdf3fa94c8fd04e", + "etherscanUrl": "https://etherscan.io/address/0x9eb1b699146333f6c5789351ccdf3fa94c8fd04e", + "xHandle": "juergenpeschel", + "xUrl": "https://twitter.com/juergenpeschel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615396", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "carolinegray", + "displayName": "Caroline Gray", + "fid": 615396, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5569decd-cb63-419c-5542-116900870800/rectcrop3", + "followers": 33, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x491aca78f277b637443f4c2bb3f7d2ff39b1a35a", + "etherscanUrl": "https://etherscan.io/address/0x491aca78f277b637443f4c2bb3f7d2ff39b1a35a", + "xHandle": "naicaldas", + "xUrl": "https://twitter.com/naicaldas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_938012", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "miniom", + "displayName": "miniom", + "fid": 938012, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/baa49a11-cd55-449a-9a72-e31f33124f00/public", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb15acc09c28226c7b47918f14951a65a0671ef3d", + "etherscanUrl": "https://etherscan.io/address/0xb15acc09c28226c7b47918f14951a65a0671ef3d", + "xHandle": "0xminiom", + "xUrl": "https://twitter.com/0xminiom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_560976", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brookbit", + "displayName": "Brook", + "fid": 560976, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ec3a1f0-b943-4c44-a247-ac445548b600/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad5deff8898cbc9f51acbabf53b1b1ba3110dcf6", + "etherscanUrl": "https://etherscan.io/address/0xad5deff8898cbc9f51acbabf53b1b1ba3110dcf6", + "xHandle": "0xbrookbit", + "xUrl": "https://twitter.com/0xbrookbit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921562", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yonko11", + "displayName": "yonko", + "fid": 921562, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6dda3815-49c1-4f0a-f039-93afc77f5000/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5264b7dbfb8b68bf1ec0af5bb52c17b30227bf2", + "etherscanUrl": "https://etherscan.io/address/0xc5264b7dbfb8b68bf1ec0af5bb52c17b30227bf2", + "xHandle": "solig_18", + "xUrl": "https://twitter.com/solig_18", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_908986", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xshei", + "displayName": "Shei", + "fid": 908986, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76071773-e503-4361-dea8-652962e25400/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9b6002571d74f4fcccea3148012b545750db224", + "etherscanUrl": "https://etherscan.io/address/0xb9b6002571d74f4fcccea3148012b545750db224", + "xHandle": "0xshei", + "xUrl": "https://twitter.com/0xshei", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611783", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kristinlincoln", + "displayName": "Kristin Lincoln", + "fid": 611783, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc0a6eaf-8068-4224-964c-db83deecca00/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce77f0505d30446611765d3304ddc2e2369ea7fe", + "etherscanUrl": "https://etherscan.io/address/0xce77f0505d30446611765d3304ddc2e2369ea7fe", + "xHandle": "rbmaliwat", + "xUrl": "https://twitter.com/rbmaliwat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615590", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "queena", + "displayName": "Queena Alsop(p)", + "fid": 615590, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/83eba269-cddf-419e-74f9-5206eb7f6100/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2879584175999267dc6bfc39c100c9e9a07d1275", + "etherscanUrl": "https://etherscan.io/address/0x2879584175999267dc6bfc39c100c9e9a07d1275", + "xHandle": "raymitta", + "xUrl": "https://twitter.com/raymitta", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_616338", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gilesgus", + "displayName": "GilesGus", + "fid": 616338, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f00cbf59-608c-407c-a0a2-cb0197f5d900/rectcrop3", + "followers": 32, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c308a8bca4f0922e54812e4227e0f87766fa4d8", + "etherscanUrl": "https://etherscan.io/address/0x5c308a8bca4f0922e54812e4227e0f87766fa4d8", + "xHandle": "jajang069", + "xUrl": "https://twitter.com/jajang069", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1401461", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "morningstar1", + "displayName": "angelica", + "fid": 1401461, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e92f67a9-9a5f-4011-ae91-8a236ade5300/original", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3867574095044c6161d5eecd237772f882432f67", + "etherscanUrl": "https://etherscan.io/address/0x3867574095044c6161d5eecd237772f882432f67", + "xHandle": "angelic36046328", + "xUrl": "https://twitter.com/angelic36046328", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615787", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fransecis", + "displayName": "Francis", + "fid": 615787, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b78643cf-1ff1-4e01-2f22-640b46c9fb00/rectcrop3", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ca2c1b4276daf5a0369fcbe27b683d42de894c1", + "etherscanUrl": "https://etherscan.io/address/0x0ca2c1b4276daf5a0369fcbe27b683d42de894c1", + "xHandle": "aa9980711", + "xUrl": "https://twitter.com/aa9980711", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_612170", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fsefsefdgr", + "displayName": "Kimbseferly", + "fid": 612170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/957e0d72-1078-4305-6eb7-6dea4b84cd00/rectcrop3", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcaaec78afb4574f94c68a666a372b1ce312415a5", + "etherscanUrl": "https://etherscan.io/address/0xcaaec78afb4574f94c68a666a372b1ce312415a5", + "xHandle": "juliesassen", + "xUrl": "https://twitter.com/juliesassen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611922", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "christopherjuli", + "displayName": "Christopher Julian", + "fid": 611922, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96153109-094d-4878-9b9c-245dc14ed500/rectcrop3", + "followers": 31, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce36af9e9d28a9b569c95e67dc375ff797547056", + "etherscanUrl": "https://etherscan.io/address/0xce36af9e9d28a9b569c95e67dc375ff797547056", + "xHandle": "superrui1", + "xUrl": "https://twitter.com/superrui1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptoava", + "displayName": "jamesmccarthy", + "fid": 1115324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d28e8819-5085-4081-122a-fc166895f200/original", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ec5771c10535ba87269317c1a906c0e220e55cf", + "etherscanUrl": "https://etherscan.io/address/0x4ec5771c10535ba87269317c1a906c0e220e55cf", + "xHandle": "authenticallj", + "xUrl": "https://twitter.com/authenticallj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1113015", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fdon01", + "displayName": "Fred D cryptoneur", + "fid": 1113015, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be9a6031-a395-42cc-c8ab-58eb68c71300/original", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf6a4e9341f6c9d22def00ac512f45c4bf139e48", + "etherscanUrl": "https://etherscan.io/address/0xbf6a4e9341f6c9d22def00ac512f45c4bf139e48", + "xHandle": "cryptoneurfredy", + "xUrl": "https://twitter.com/cryptoneurfredy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_755584", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jeffersonbob", + "displayName": "Jeffersonbob", + "fid": 755584, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93f7a65b-b3fc-4e22-3e01-2be294058a00/original", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a86dbf7c9f2e296c0b4ee90098a52502f7e4390", + "etherscanUrl": "https://etherscan.io/address/0x4a86dbf7c9f2e296c0b4ee90098a52502f7e4390", + "xHandle": "michell50725199", + "xUrl": "https://twitter.com/michell50725199", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127369", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "onize", + "displayName": "SanniNaizy", + "fid": 1127369, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f948b15-24f8-45a1-b847-cab4fdb4ba00/original", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe646abbb6882b0cc7fa7be71961fab54b94d565", + "etherscanUrl": "https://etherscan.io/address/0xbe646abbb6882b0cc7fa7be71961fab54b94d565", + "xHandle": "onizes", + "xUrl": "https://twitter.com/onizes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615695", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danawilde", + "displayName": "Dana Wilde", + "fid": 615695, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95770ae2-bfaa-47ef-fbed-99f3d09e1000/rectcrop3", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x13158dd97dfbed2f9c50bc2e2e8b3beb4edda6ea", + "etherscanUrl": "https://etherscan.io/address/0x13158dd97dfbed2f9c50bc2e2e8b3beb4edda6ea", + "xHandle": "safigstro", + "xUrl": "https://twitter.com/safigstro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611926", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sampsonspender", + "displayName": "Sampso ", + "fid": 611926, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/876206dc-df16-4dfc-43ab-2c05c9069200/rectcrop3", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8695c6b8713a6686d9944fc6c40206ea451f946a", + "etherscanUrl": "https://etherscan.io/address/0x8695c6b8713a6686d9944fc6c40206ea451f946a", + "xHandle": "active551223", + "xUrl": "https://twitter.com/active551223", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_620422", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marciajimmy", + "displayName": "MarciaJimmy", + "fid": 620422, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/deabe7fd-d3c1-4f4b-fab7-c2ed32cf3800/rectcrop3", + "followers": 30, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x108d11856613f02710c5a05381b55dd8568bd59b", + "etherscanUrl": "https://etherscan.io/address/0x108d11856613f02710c5a05381b55dd8568bd59b", + "xHandle": "huggymercado", + "xUrl": "https://twitter.com/huggymercado", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069130", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "beranews", + "displayName": "Pepe 🐸 | Base | Bera", + "fid": 1069130, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/970e149a-7c91-4de4-b4ac-65bb5c7cf600/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80329146cec57630f34119375411e98647b13344", + "etherscanUrl": "https://etherscan.io/address/0x80329146cec57630f34119375411e98647b13344", + "xHandle": "cryptouang1", + "xUrl": "https://twitter.com/cryptouang1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_396915", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emilio-galvez", + "displayName": "Emilio Gálvez", + "fid": 396915, + "pfpUrl": "https://i.imgur.com/tkuRvKX.png", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b50afa6722b64b710c2e86a41928de8ca0c0169", + "etherscanUrl": "https://etherscan.io/address/0x4b50afa6722b64b710c2e86a41928de8ca0c0169", + "xHandle": "emilioglvez7", + "xUrl": "https://twitter.com/emilioglvez7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145576", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anushaanum", + "displayName": "Anushaanum", + "fid": 1145576, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ff253c4-825d-49aa-bf0f-b0316a8b1600/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeafcca9433571c257faed9ff96979faf06b8f930", + "etherscanUrl": "https://etherscan.io/address/0xeafcca9433571c257faed9ff96979faf06b8f930", + "xHandle": "millonair_g", + "xUrl": "https://twitter.com/millonair_g", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071070", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "byonic", + "displayName": "Byon1cc", + "fid": 1071070, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ccf8bc9-288a-49e4-fe85-9eb92ae19000/original", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x444562a6766d93a869bc4b570b6e69936af1f0aa", + "etherscanUrl": "https://etherscan.io/address/0x444562a6766d93a869bc4b570b6e69936af1f0aa", + "xHandle": "byon1cc", + "xUrl": "https://twitter.com/byon1cc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615591", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "talkpactupil", + "displayName": "Louis Harte", + "fid": 615591, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f9cb45f-c347-46d3-8833-cd4cfd8b4400/rectcrop3", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f3776583d688008a55635c0a174f07d52115bcd", + "etherscanUrl": "https://etherscan.io/address/0x9f3776583d688008a55635c0a174f07d52115bcd", + "xHandle": "amitkanhai", + "xUrl": "https://twitter.com/amitkanhai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611925", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "willieorlando", + "displayName": "Willie Orlando", + "fid": 611925, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fa7af07-c010-41f4-0856-589b3bc1f300/rectcrop3", + "followers": 29, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe990a8f40eab14776cfac96b65dc5a012263597", + "etherscanUrl": "https://etherscan.io/address/0xfe990a8f40eab14776cfac96b65dc5a012263597", + "xHandle": "diana_naicker", + "xUrl": "https://twitter.com/diana_naicker", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_348795", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "markpascall", + "displayName": "Mark Pascall", + "fid": 348795, + "pfpUrl": "https://i.imgur.com/R2SClf0.jpg", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf14d4bbd6b53bd45a7f71afdbc4f94f3e63071c6", + "etherscanUrl": "https://etherscan.io/address/0xf14d4bbd6b53bd45a7f71afdbc4f94f3e63071c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1302769", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "essienub", + "displayName": "Essien", + "fid": 1302769, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5fb94681-f14f-4943-e0ec-5b011a953100/original", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d309ab99749792d0dbbec2c63bd75be44bbe6f9", + "etherscanUrl": "https://etherscan.io/address/0x0d309ab99749792d0dbbec2c63bd75be44bbe6f9", + "xHandle": "essienub222", + "xUrl": "https://twitter.com/essienub222", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611278", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elsieeliot", + "displayName": "Elsie Eliot", + "fid": 611278, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11c7e80b-e7e5-4894-58df-c603523fca00/rectcrop3", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ff56b8ffc7c903866bd2c392b53632093bc32cd", + "etherscanUrl": "https://etherscan.io/address/0x4ff56b8ffc7c903866bd2c392b53632093bc32cd", + "xHandle": "izay3104", + "xUrl": "https://twitter.com/izay3104", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605914", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "primalee", + "displayName": "Prima Lee", + "fid": 605914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40b8b3af-cac1-4415-62ed-0d3751db3400/rectcrop3", + "followers": 28, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00677144deb0d88314541f60c95d95caee055e03", + "etherscanUrl": "https://etherscan.io/address/0x00677144deb0d88314541f60c95d95caee055e03", + "xHandle": "hyung60241", + "xUrl": "https://twitter.com/hyung60241", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_977365", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nouni", + "displayName": "⌐◨-◨", + "fid": 977365, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/090fee77-7a7c-48e2-3672-22c68361bf00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae1089772d3fb7a173a12eb60e1545faf7293450", + "etherscanUrl": "https://etherscan.io/address/0xae1089772d3fb7a173a12eb60e1545faf7293450", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1456811", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fayc", + "displayName": "Farcaster Ape Yacht Club", + "fid": 1456811, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ec0d979-c490-44ad-72e6-5bedbc7f0b00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08964310b0b9b97b0dba1ad94591fb4631cc28fb", + "etherscanUrl": "https://etherscan.io/address/0x08964310b0b9b97b0dba1ad94591fb4631cc28fb", + "xHandle": "farcaster_ayc", + "xUrl": "https://twitter.com/farcaster_ayc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1059869", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "envy4s", + "displayName": "hooloo “̮", + "fid": 1059869, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c301a79a-19fa-49c1-58ca-29286c645d00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39ead920eba50851feccf535d6a64d559c047948", + "etherscanUrl": "https://etherscan.io/address/0x39ead920eba50851feccf535d6a64d559c047948", + "xHandle": "hooloo3", + "xUrl": "https://twitter.com/hooloo3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1070791", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mahfuz777", + "displayName": "Jamykhan", + "fid": 1070791, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d5137f2-f2c0-4c97-a349-51c50167ed00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x79fc56e8dcb3d59064d7035cbc586ba0bd313bc5", + "etherscanUrl": "https://etherscan.io/address/0x79fc56e8dcb3d59064d7035cbc586ba0bd313bc5", + "xHandle": "mahfuz99911", + "xUrl": "https://twitter.com/mahfuz99911", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1356094", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vahid68", + "displayName": "vahid68", + "fid": 1356094, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3436fb07-00ad-47c2-d5f9-30b6e0caf700/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef798fcdc62a0fdb3413f5c5c2aafeabe0fd0de1", + "etherscanUrl": "https://etherscan.io/address/0xef798fcdc62a0fdb3413f5c5c2aafeabe0fd0de1", + "xHandle": "vitvod23568", + "xUrl": "https://twitter.com/vitvod23568", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1301113", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "majid78", + "displayName": "Majid ali", + "fid": 1301113, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebc2b59cdd9180e9cdbd3be550987c97da47d0bf", + "etherscanUrl": "https://etherscan.io/address/0xebc2b59cdd9180e9cdbd3be550987c97da47d0bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117265", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mirajul24", + "displayName": "Md Mirajul Islam", + "fid": 1117265, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7fd6e947-c673-43d9-e102-a856aa510b00/rectcrop3", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x847add68eeae844e7e36cc82ba23bc3872db7d67", + "etherscanUrl": "https://etherscan.io/address/0x847add68eeae844e7e36cc82ba23bc3872db7d67", + "xHandle": "mirajul_24", + "xUrl": "https://twitter.com/mirajul_24", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118660", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rudi06", + "displayName": "Mr.blue moon", + "fid": 1118660, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c19d7a37-8e02-4ee4-3383-89e51f4eeb00/original", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9f3be3d9e530d8138adb680b62beadaccb812ee", + "etherscanUrl": "https://etherscan.io/address/0xe9f3be3d9e530d8138adb680b62beadaccb812ee", + "xHandle": "rudihar36968977", + "xUrl": "https://twitter.com/rudihar36968977", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611788", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "levifelton", + "displayName": "Levi Felton", + "fid": 611788, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b45f874-ce08-4327-b2f9-bdc862a99500/rectcrop3", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0086a398ecbb244bac7ea1a40077245151ebf407", + "etherscanUrl": "https://etherscan.io/address/0x0086a398ecbb244bac7ea1a40077245151ebf407", + "xHandle": "saidovravshan", + "xUrl": "https://twitter.com/saidovravshan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605700", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bessedmund", + "displayName": "Bess Edmund", + "fid": 605700, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78fa07c5-2fea-4a4e-c2bd-799f54f4cb00/rectcrop3", + "followers": 27, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc61be3b5b39f624cf175d4b5bb1039cf28d7f1a8", + "etherscanUrl": "https://etherscan.io/address/0xc61be3b5b39f624cf175d4b5bb1039cf28d7f1a8", + "xHandle": "emilionaruto87", + "xUrl": "https://twitter.com/emilionaruto87", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156073", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bozet", + "displayName": "Bozet.base.eth", + "fid": 1156073, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69507211-9818-46a3-2c56-4f2e85294000/original", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdebad549be499ec3d5fde4d18ee418ee618b45b5", + "etherscanUrl": "https://etherscan.io/address/0xdebad549be499ec3d5fde4d18ee418ee618b45b5", + "xHandle": "bozetnuklir", + "xUrl": "https://twitter.com/bozetnuklir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148848", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jusmemecoin", + "displayName": "Ãslãn", + "fid": 1148848, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/485dd733-1e74-45b8-9537-6218bf65d800/original", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa35fdfcdcc51e750ebb4a821deabd8981db7859b", + "etherscanUrl": "https://etherscan.io/address/0xa35fdfcdcc51e750ebb4a821deabd8981db7859b", + "xHandle": "jusmemecoin", + "xUrl": "https://twitter.com/jusmemecoin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_874257", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oscarb.base.eth", + "displayName": "OscarxMeta", + "fid": 874257, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebfae6f5-883b-42e5-8dda-3205c259db00/original", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x349dc9ed2a4123d06b974226542fa8434c7ab950", + "etherscanUrl": "https://etherscan.io/address/0x349dc9ed2a4123d06b974226542fa8434c7ab950", + "xHandle": "oscarxmetax", + "xUrl": "https://twitter.com/oscarxmetax", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605699", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kellywoolley", + "displayName": "Kelly Woolley", + "fid": 605699, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c290b5b-52b2-4e8d-0b56-af6ed7773600/rectcrop3", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb26a3dda33856fb6904258bfd955269021ce2350", + "etherscanUrl": "https://etherscan.io/address/0xb26a3dda33856fb6904258bfd955269021ce2350", + "xHandle": "sebastianrisi", + "xUrl": "https://twitter.com/sebastianrisi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611919", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bonnienorton", + "displayName": "Bonnie Norton", + "fid": 611919, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ca9a165-3c70-4ebf-074b-1433ffef6c00/rectcrop3", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30fc3b9d803f40dd18bf76ffcb8797d5e2cd9e18", + "etherscanUrl": "https://etherscan.io/address/0x30fc3b9d803f40dd18bf76ffcb8797d5e2cd9e18", + "xHandle": "noor90ok", + "xUrl": "https://twitter.com/noor90ok", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625264", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "roseelectra", + "displayName": "RoseElectra", + "fid": 625264, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7741dffb-87ae-4709-c5dd-f2afa953ed00/rectcrop3", + "followers": 26, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4974c19e709b442645e2bac121e7f5899ca6427", + "etherscanUrl": "https://etherscan.io/address/0xe4974c19e709b442645e2bac121e7f5899ca6427", + "xHandle": "glenntrigg", + "xUrl": "https://twitter.com/glenntrigg", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_832985", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soraismyalias", + "displayName": "ace_attorney", + "fid": 832985, + "pfpUrl": "https://avatars.steamstatic.com/5d67c9e991103d789fcf58a20a1d25472dba9504_full.jpg", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe914556305d00060cdd28a16016b0f2684cd5172", + "etherscanUrl": "https://etherscan.io/address/0xe914556305d00060cdd28a16016b0f2684cd5172", + "xHandle": "dianalane34900", + "xUrl": "https://twitter.com/dianalane34900", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_197649", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ginagogo", + "displayName": "Ej Mongapy", + "fid": 197649, + "pfpUrl": "https://i.imgur.com/rBs0DuB.jpg", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4809f758d404c66ea16aaa5b98571db3221e87d2", + "etherscanUrl": "https://etherscan.io/address/0x4809f758d404c66ea16aaa5b98571db3221e87d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156968", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "muhamadhusaen", + "displayName": "Muhamad Husaen", + "fid": 1156968, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/505e2a51-d72a-4b8b-5b43-bd29befcf100/original", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x170e6fbfb068759d554dd6844c55a82ed980c96b", + "etherscanUrl": "https://etherscan.io/address/0x170e6fbfb068759d554dd6844c55a82ed980c96b", + "xHandle": "muhamadhusaen2", + "xUrl": "https://twitter.com/muhamadhusaen2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1155971", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qf1", + "displayName": "QF1", + "fid": 1155971, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1621eaf3-e95b-41a3-b1de-52e0d4241b00/original", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51219fe86d470c1e9cc6c393958f84bfac83f509", + "etherscanUrl": "https://etherscan.io/address/0x51219fe86d470c1e9cc6c393958f84bfac83f509", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097345", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "citrasatu", + "displayName": "yourfavoritegurl", + "fid": 1097345, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1c2d6d3-09b0-4b5c-cd89-b843783c4300/original", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70c726e8401e60c02777fd995a34fc59ab8cdc75", + "etherscanUrl": "https://etherscan.io/address/0x70c726e8401e60c02777fd995a34fc59ab8cdc75", + "xHandle": "citraartica1", + "xUrl": "https://twitter.com/citraartica1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921063", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "esqui", + "displayName": "esqui", + "fid": 921063, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d9bd3ae-8377-4e04-3c5c-0cb658ec8600/rectcrop3", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49b396b2e7d56f419e63511082ca752c0f825f4a", + "etherscanUrl": "https://etherscan.io/address/0x49b396b2e7d56f419e63511082ca752c0f825f4a", + "xHandle": "nuri_ghn", + "xUrl": "https://twitter.com/nuri_ghn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611041", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "patrickgrant", + "displayName": "Patrick Grant", + "fid": 611041, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7fa932e0-30fc-4f5b-74d1-fd2e754f4900/rectcrop3", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x398a60fc201081d2373ae763f699ff2465ca6c15", + "etherscanUrl": "https://etherscan.io/address/0x398a60fc201081d2373ae763f699ff2465ca6c15", + "xHandle": "wnszh1238", + "xUrl": "https://twitter.com/wnszh1238", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605697", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vernecarnegie", + "displayName": "Verne Carnegie", + "fid": 605697, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/faeb3dfd-ff2f-4f14-24fa-05bf59df2700/rectcrop3", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd48ce4cb4fb86a433bcdc08a555a18cf36b18740", + "etherscanUrl": "https://etherscan.io/address/0xd48ce4cb4fb86a433bcdc08a555a18cf36b18740", + "xHandle": "bagasaldri", + "xUrl": "https://twitter.com/bagasaldri", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_605510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theresawells", + "displayName": "Theresa Wells", + "fid": 605510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a8cadcc-26ab-403a-41d8-276e4e073e00/rectcrop3", + "followers": 25, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa304846cebd4ef1c30f7cd178d0186322eda538a", + "etherscanUrl": "https://etherscan.io/address/0xa304846cebd4ef1c30f7cd178d0186322eda538a", + "xHandle": "luli_1975", + "xUrl": "https://twitter.com/luli_1975", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1228153", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "raselkhandker", + "displayName": "Md Rasel Mia", + "fid": 1228153, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80d37d2a-4cb8-4f29-ab8e-a45579a5c200/original", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e97b585676101fce47904da40d346dfe0f26996", + "etherscanUrl": "https://etherscan.io/address/0x7e97b585676101fce47904da40d346dfe0f26996", + "xHandle": "dhumnodi", + "xUrl": "https://twitter.com/dhumnodi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1298427", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cpounter", + "displayName": "Cpounter_strike", + "fid": 1298427, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb6eac24-04ec-4f40-968e-4ce551043d00/original", + "followers": 24, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8cc179e835696c1f28ef34476788b0d48e276e3f", + "etherscanUrl": "https://etherscan.io/address/0x8cc179e835696c1f28ef34476788b0d48e276e3f", + "xHandle": "cpounter", + "xUrl": "https://twitter.com/cpounter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_890107", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arvejo", + "displayName": "Arvejo", + "fid": 890107, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d8906830-ed25-4d81-5f8a-779922d2b800/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46157191c8936abe57761fe1a11a2c50590ce4c6", + "etherscanUrl": "https://etherscan.io/address/0x46157191c8936abe57761fe1a11a2c50590ce4c6", + "xHandle": "javierlcrook", + "xUrl": "https://twitter.com/javierlcrook", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1303930", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yuda1010", + "displayName": "Yuda1010", + "fid": 1303930, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe603322472794631b63d8130724b614d1037542e", + "etherscanUrl": "https://etherscan.io/address/0xe603322472794631b63d8130724b614d1037542e", + "xHandle": "mardiyantoyuda", + "xUrl": "https://twitter.com/mardiyantoyuda", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1025093", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "latinabr", + "displayName": "Latinabr", + "fid": 1025093, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/883cd359-627f-4638-bcd3-03d04af0f000/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa51682c0138c3fff53f6089beddf2e453c53de1e", + "etherscanUrl": "https://etherscan.io/address/0xa51682c0138c3fff53f6089beddf2e453c53de1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1235665", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rabbi2580", + "displayName": "AR INCOME BD", + "fid": 1235665, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f22ca7a8-4eca-4871-ad34-98cae5338500/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x937ee6b1cf5d6be4e52f84e627d41d50d64dddd8", + "etherscanUrl": "https://etherscan.io/address/0x937ee6b1cf5d6be4e52f84e627d41d50d64dddd8", + "xHandle": "arincomebd", + "xUrl": "https://twitter.com/arincomebd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_633912", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jesrfssica", + "displayName": "Jessica", + "fid": 633912, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f6d3400-cbcd-4bc4-e254-b93612021d00/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58a342bc7bb9e48a2c16117a36c1af9d93abf6c0", + "etherscanUrl": "https://etherscan.io/address/0x58a342bc7bb9e48a2c16117a36c1af9d93abf6c0", + "xHandle": "kkk1601", + "xUrl": "https://twitter.com/kkk1601", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_612269", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "carsfsoline", + "displayName": "Caroline", + "fid": 612269, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb18c74e-b635-436a-c738-9febc9953200/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1285b164d3195af4d0dbb975a2ed919e59a0ae57", + "etherscanUrl": "https://etherscan.io/address/0x1285b164d3195af4d0dbb975a2ed919e59a0ae57", + "xHandle": "juhaugusto", + "xUrl": "https://twitter.com/juhaugusto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190660", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrashid448", + "displayName": "Rashid", + "fid": 1190660, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7732a1cd-aaeb-4b33-d776-9b2910fe9b00/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90d4cbe6ce91e4acb73bd09b6077eb73baf53f30", + "etherscanUrl": "https://etherscan.io/address/0x90d4cbe6ce91e4acb73bd09b6077eb73baf53f30", + "xHandle": "rashidlateef111", + "xUrl": "https://twitter.com/rashidlateef111", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138723", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "singnal", + "displayName": "Signal", + "fid": 1138723, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32994d57-13c7-409d-9676-4e6179294e00/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x775d2bb578e2c5338137516ed906dc962bb42a1b", + "etherscanUrl": "https://etherscan.io/address/0x775d2bb578e2c5338137516ed906dc962bb42a1b", + "xHandle": "hadis_radman", + "xUrl": "https://twitter.com/hadis_radman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_646724", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gtimaster101", + "displayName": "GTI_Sonu_mehta", + "fid": 646724, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5381bad1-d94f-42e4-89a7-2971ae242200/original", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f1b3e62cb506821d21b835fa834cd74e0114f87", + "etherscanUrl": "https://etherscan.io/address/0x1f1b3e62cb506821d21b835fa834cd74e0114f87", + "xHandle": "berachain1o1", + "xUrl": "https://twitter.com/berachain1o1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ryanmarner", + "displayName": "Ryan Marner", + "fid": 611444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a71bca35-6239-404b-98fe-f0c9a2cdf100/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3cdef636924f43d500907e8d18d64899ee20b3a", + "etherscanUrl": "https://etherscan.io/address/0xd3cdef636924f43d500907e8d18d64899ee20b3a", + "xHandle": "ki_jani", + "xUrl": "https://twitter.com/ki_jani", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615491", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "violetevelina", + "displayName": "Violet Evelina", + "fid": 615491, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/548d7560-6151-4f32-3676-b8753b368400/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x052e3378c485ea07561faf457a91e3aeefa16796", + "etherscanUrl": "https://etherscan.io/address/0x052e3378c485ea07561faf457a91e3aeefa16796", + "xHandle": "juliet_kurohuku", + "xUrl": "https://twitter.com/juliet_kurohuku", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_638797", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maxdennis", + "displayName": "MaxDennis", + "fid": 638797, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4439007-66bc-466f-6ef2-63ccc7e14900/rectcrop3", + "followers": 23, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2484ee3b73336440ced1becc96da8c8197e75c8", + "etherscanUrl": "https://etherscan.io/address/0xc2484ee3b73336440ced1becc96da8c8197e75c8", + "xHandle": "piamariemoquer1", + "xUrl": "https://twitter.com/piamariemoquer1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_915946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vitorious", + "displayName": "Vitorious", + "fid": 915946, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a56a1d24-45bd-4b9f-d8ea-8a9e19bbb700/rectcrop3", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d3e6eb1b0ce7c6a5da114be6949333e0542db36", + "etherscanUrl": "https://etherscan.io/address/0x8d3e6eb1b0ce7c6a5da114be6949333e0542db36", + "xHandle": "vitoriousvibes", + "xUrl": "https://twitter.com/vitoriousvibes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1454946", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdsumonhossen", + "displayName": "Md Sumon Hossen", + "fid": 1454946, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/736ec972-c958-47e9-2a97-88d7aa310100/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa40e198637b1c0e0f4ac511d38b4933cda60d5d", + "etherscanUrl": "https://etherscan.io/address/0xaa40e198637b1c0e0f4ac511d38b4933cda60d5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1322203", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "efundz", + "displayName": "Efundz", + "fid": 1322203, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7b5ce001-eb5b-44d3-e732-d446b30fe100/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde3008894e57e5b2026b4b4879950b9520ee5dd7", + "etherscanUrl": "https://etherscan.io/address/0xde3008894e57e5b2026b4b4879950b9520ee5dd7", + "xHandle": "efundz001", + "xUrl": "https://twitter.com/efundz001", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_952172", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demax", + "displayName": "demax", + "fid": 952172, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9b39651-27c6-4449-890b-0fe84830c000/rectcrop3", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ece557ecb57504f0658573e8d468968eb9f15b5", + "etherscanUrl": "https://etherscan.io/address/0x9ece557ecb57504f0658573e8d468968eb9f15b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139935", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kivon", + "displayName": "Kivon", + "fid": 1139935, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf244228-124c-4f9b-953c-694a73d99e00/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f6ea77f453a324f586f8601d08b47a66c41003f", + "etherscanUrl": "https://etherscan.io/address/0x9f6ea77f453a324f586f8601d08b47a66c41003f", + "xHandle": "kivon_io", + "xUrl": "https://twitter.com/kivon_io", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1111665", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "britneyyyjoyce", + "displayName": "Britney Joyce", + "fid": 1111665, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9c971-ed56-47a8-c2ba-19df44eb0900/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbcab4f6b37ade7e486e0d9afde02d05b7b0307e9", + "etherscanUrl": "https://etherscan.io/address/0xbcab4f6b37ade7e486e0d9afde02d05b7b0307e9", + "xHandle": "britney_joyce2", + "xUrl": "https://twitter.com/britney_joyce2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132564", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mnaa", + "displayName": "Mona", + "fid": 1132564, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd4b2f32-1ab5-42d3-a68c-6a3333d37e00/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x048a41270fc8fbad57f0e637fdda01beb6c3dada", + "etherscanUrl": "https://etherscan.io/address/0x048a41270fc8fbad57f0e637fdda01beb6c3dada", + "xHandle": "monisa_mna", + "xUrl": "https://twitter.com/monisa_mna", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_371788", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tttedm", + "displayName": "TTTedm", + "fid": 371788, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2db7a8e7-1de6-4c0e-7851-957bf5ce9e00/original", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe79cb1657ec9a9077d08e1689ca65b6e7da5660a", + "etherscanUrl": "https://etherscan.io/address/0xe79cb1657ec9a9077d08e1689ca65b6e7da5660a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615488", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "evangelinecroft", + "displayName": "evangeline", + "fid": 615488, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad09e9e9-4af6-4734-300f-a82a3453c600/rectcrop3", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68bc6650a49c1033f36b798ff7d1c088b750e0f7", + "etherscanUrl": "https://etherscan.io/address/0x68bc6650a49c1033f36b798ff7d1c088b750e0f7", + "xHandle": "123tatiar", + "xUrl": "https://twitter.com/123tatiar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_624848", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "primoedward", + "displayName": "PrimoEdward", + "fid": 624848, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3eb9da2-8ef0-4307-062d-e1488c5c2200/rectcrop3", + "followers": 22, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe00424b62f2f68159c17d2349fc3f6e5a3eac2b7", + "etherscanUrl": "https://etherscan.io/address/0xe00424b62f2f68159c17d2349fc3f6e5a3eac2b7", + "xHandle": "rahmatmex89", + "xUrl": "https://twitter.com/rahmatmex89", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1017200", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zamirnaja", + "displayName": "ZamirNaja", + "fid": 1017200, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/336e0847-01c5-4769-6c0c-766cc05f9000/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6338462f38a1e1c68cf4e369f2b148b4d860200b", + "etherscanUrl": "https://etherscan.io/address/0x6338462f38a1e1c68cf4e369f2b148b4d860200b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1378100", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kimodoorange", + "displayName": "kimodoorange", + "fid": 1378100, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e0cc4e5-2a8f-4d9d-349b-7f7bd6e2f900/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66917683b41960ef4def018f941fb5d980a60757", + "etherscanUrl": "https://etherscan.io/address/0x66917683b41960ef4def018f941fb5d980a60757", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1200945", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kustianaa", + "displayName": "Kustiana", + "fid": 1200945, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffc1e689-e2ac-49c2-fbb7-1509d9d47200/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ba22161c815800bbbf3520dfbe4ca3c15c5c1e0", + "etherscanUrl": "https://etherscan.io/address/0x6ba22161c815800bbbf3520dfbe4ca3c15c5c1e0", + "xHandle": "kmpublishermyid", + "xUrl": "https://twitter.com/kmpublishermyid", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1198089", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tundex1234", + "displayName": "isiaka tunde | 𝔽rAI ADD+", + "fid": 1198089, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8bb18f1e-bd6d-4281-515c-391eacd75c00/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb83af1b238692368b9ed02b6acb99cb4ce74e9d0", + "etherscanUrl": "https://etherscan.io/address/0xb83af1b238692368b9ed02b6acb99cb4ce74e9d0", + "xHandle": "isiakatunde8", + "xUrl": "https://twitter.com/isiakatunde8", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1149750", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mrcrypt", + "displayName": "MK", + "fid": 1149750, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60411f10-a2ba-43a1-caee-bdfaa137c900/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7cefc013186328e38218d69a21ca2f8c0910011e", + "etherscanUrl": "https://etherscan.io/address/0x7cefc013186328e38218d69a21ca2f8c0910011e", + "xHandle": "cryptos_uni", + "xUrl": "https://twitter.com/cryptos_uni", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062935", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basegladiator", + "displayName": "Carltzy", + "fid": 1062935, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d8b6fb5a-b338-43c4-226c-03d9e6be3200/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50152acb9fc29494f9c9c8dd81f2daa7849cda22", + "etherscanUrl": "https://etherscan.io/address/0x50152acb9fc29494f9c9c8dd81f2daa7849cda22", + "xHandle": "basegladiators", + "xUrl": "https://twitter.com/basegladiators", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930631", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amfirable", + "displayName": "Varnessa", + "fid": 930631, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d78fdbd8-2b39-480f-2484-b4f59420a900/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f281a1470dc5a369a4f6947109626b6d1ff7cdd", + "etherscanUrl": "https://etherscan.io/address/0x2f281a1470dc5a369a4f6947109626b6d1ff7cdd", + "xHandle": "hong10215607", + "xUrl": "https://twitter.com/hong10215607", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mumu517", + "displayName": "Cici Tembong", + "fid": 1141924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02e7d936-6f61-4d3a-fa6c-0cba4c306b00/original", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f5f3913eb1eafe57c9069d33f34168c77eb2497", + "etherscanUrl": "https://etherscan.io/address/0x8f5f3913eb1eafe57c9069d33f34168c77eb2497", + "xHandle": "cicitembon1517", + "xUrl": "https://twitter.com/cicitembon1517", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_877438", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kamal93", + "displayName": "Kamal Debnath", + "fid": 877438, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5cc0fdd1-e8d0-4d2c-2556-137e0e08dd00/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f7fd494ffbf0ee1d63b5b29c1f788db941e6a1e", + "etherscanUrl": "https://etherscan.io/address/0x5f7fd494ffbf0ee1d63b5b29c1f788db941e6a1e", + "xHandle": "kamalde67180971", + "xUrl": "https://twitter.com/kamalde67180971", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_851396", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chelnoki", + "displayName": "Makson +100500", + "fid": 851396, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f5105c24-2a9e-432a-ac73-20a931016f00/rectcrop3", + "followers": 21, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa86398660a67a8141943bc9d4ea958de50bbd732", + "etherscanUrl": "https://etherscan.io/address/0xa86398660a67a8141943bc9d4ea958de50bbd732", + "xHandle": "servinsky65", + "xUrl": "https://twitter.com/servinsky65", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_825981", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ataraxy", + "displayName": "hrguru", + "fid": 825981, + "pfpUrl": "https://avatars.steamstatic.com/0248b5353847ae6daf04397b7996ac0727a0fae3_full.jpg", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d39faa6852793fbad6c05ca4f170ebd4e4a11da", + "etherscanUrl": "https://etherscan.io/address/0x6d39faa6852793fbad6c05ca4f170ebd4e4a11da", + "xHandle": "pclarkt63439", + "xUrl": "https://twitter.com/pclarkt63439", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_502880", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dimonza228", + "displayName": "dimonza228", + "fid": 502880, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/afd8aa1f-e129-452c-e580-1020eb41ed00/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1e802abbe132b797c4c48ee512cb9213e5d0dbef", + "etherscanUrl": "https://etherscan.io/address/0x1e802abbe132b797c4c48ee512cb9213e5d0dbef", + "xHandle": "dimonza228", + "xUrl": "https://twitter.com/dimonza228", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_890521", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sajeesh", + "displayName": "Sajeeshpc", + "fid": 890521, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c8a117b9-8e50-4383-4f3e-1d9f27793600/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b875d132fd4c043e391d9da987e8280bac9bf0e", + "etherscanUrl": "https://etherscan.io/address/0x3b875d132fd4c043e391d9da987e8280bac9bf0e", + "xHandle": "sajeeshpc00", + "xUrl": "https://twitter.com/sajeeshpc00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1227982", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "olaitan2589", + "displayName": "Abdulsalam Rasheed", + "fid": 1227982, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0045ba71b9f31d754e45d6c3568f1a97e39a07b", + "etherscanUrl": "https://etherscan.io/address/0xc0045ba71b9f31d754e45d6c3568f1a97e39a07b", + "xHandle": "abdulsa45892520", + "xUrl": "https://twitter.com/abdulsa45892520", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1163997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sgmrashed40", + "displayName": "Sgmrashed40", + "fid": 1163997, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c415d6b8-6bac-4508-65fc-3effd0a5d600/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99893a891310677a984be6c607d739ab921cc82f", + "etherscanUrl": "https://etherscan.io/address/0x99893a891310677a984be6c607d739ab921cc82f", + "xHandle": "sgmrashed40", + "xUrl": "https://twitter.com/sgmrashed40", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131082", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "classicmiles007", + "displayName": "_TimmyMiles✨", + "fid": 1131082, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a812380d-b7af-4a31-d7d3-7179ab539500/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4119a837a1158ca6c699fd0201be16ac8d91cf9e", + "etherscanUrl": "https://etherscan.io/address/0x4119a837a1158ca6c699fd0201be16ac8d91cf9e", + "xHandle": "timmymiles9", + "xUrl": "https://twitter.com/timmymiles9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_487012", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gandor", + "displayName": "zerobased", + "fid": 487012, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d601e7b7-f9fe-4dc1-dbff-d3c6c92b4000/original", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32e86538b81531593713dcba5a11a1b8287a8cb3", + "etherscanUrl": "https://etherscan.io/address/0x32e86538b81531593713dcba5a11a1b8287a8cb3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611283", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lyndondick", + "displayName": "Lyndo", + "fid": 611283, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5e6bdce-9c31-488f-3e8b-710ce8ed1e00/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3b3912327d9f73e3eb72ecc9cb0becb45b90a55", + "etherscanUrl": "https://etherscan.io/address/0xe3b3912327d9f73e3eb72ecc9cb0becb45b90a55", + "xHandle": "kimhanhee6", + "xUrl": "https://twitter.com/kimhanhee6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "elmerhopkin", + "displayName": "Elmer Hopkin(s)", + "fid": 611924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f79795de-ba31-4b11-7728-f1b439309800/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2937ae50b07be2189003312676219713aa2fc10", + "etherscanUrl": "https://etherscan.io/address/0xd2937ae50b07be2189003312676219713aa2fc10", + "xHandle": "kenza_bouzenna", + "xUrl": "https://twitter.com/kenza_bouzenna", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_616459", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marshlocke", + "displayName": "MarshLocke", + "fid": 616459, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f08f79cc-de8b-40c8-93a2-03b80a343500/rectcrop3", + "followers": 20, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5098930de5d563e40710c1a1908fd74ff68bc30d", + "etherscanUrl": "https://etherscan.io/address/0x5098930de5d563e40710c1a1908fd74ff68bc30d", + "xHandle": "criszhel_11", + "xUrl": "https://twitter.com/criszhel_11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1438780", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rexona", + "displayName": "rexona", + "fid": 1438780, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7d506dce347722b5b3a21c57891f26f2ce4df7d", + "etherscanUrl": "https://etherscan.io/address/0xb7d506dce347722b5b3a21c57891f26f2ce4df7d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492884", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jnk25", + "displayName": "Jose", + "fid": 492884, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f170f2ca-7c61-45ac-41bf-d6f0e43b6100/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99ce4371a41bcd804af4318b0b4db701119740bd", + "etherscanUrl": "https://etherscan.io/address/0x99ce4371a41bcd804af4318b0b4db701119740bd", + "xHandle": "jcatenva", + "xUrl": "https://twitter.com/jcatenva", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1358616", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mannygee", + "displayName": "Ciara Core", + "fid": 1358616, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37a877c2-3cc8-42f9-b096-530c58629800/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7aa1bf8990de9e33a4fdf2acceeac42c617518d8", + "etherscanUrl": "https://etherscan.io/address/0x7aa1bf8990de9e33a4fdf2acceeac42c617518d8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328349", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "visionsrare", + "displayName": "Rare", + "fid": 1328349, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d04edcc7-fe49-46df-912d-3e3747603b00/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0d35d27ff367dca053818e8dbbae9a9061125e2", + "etherscanUrl": "https://etherscan.io/address/0xa0d35d27ff367dca053818e8dbbae9a9061125e2", + "xHandle": "rare_visions", + "xUrl": "https://twitter.com/rare_visions", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1227633", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suyono", + "displayName": "Suyono", + "fid": 1227633, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12a31ed65fb7dd560356c7392ffb6b2838949de9", + "etherscanUrl": "https://etherscan.io/address/0x12a31ed65fb7dd560356c7392ffb6b2838949de9", + "xHandle": "dindri00138853", + "xUrl": "https://twitter.com/dindri00138853", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_874201", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rajucross", + "displayName": "Shaibal", + "fid": 874201, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d974f92-b13b-4b2e-e0dc-5955a21e7d00/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c73888e4bdefc781fdb8623bed60ef4c38f33c7", + "etherscanUrl": "https://etherscan.io/address/0x9c73888e4bdefc781fdb8623bed60ef4c38f33c7", + "xHandle": "shaibaldas63120", + "xUrl": "https://twitter.com/shaibaldas63120", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_436654", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chon-rob", + "displayName": "Robert ", + "fid": 436654, + "pfpUrl": "https://i.imgur.com/zhTtBuZ.jpg", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7835b1e377226277229993eb09bddc49be782df3", + "etherscanUrl": "https://etherscan.io/address/0x7835b1e377226277229993eb09bddc49be782df3", + "xHandle": "robertw17269490", + "xUrl": "https://twitter.com/robertw17269490", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_620169", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "belindaclark", + "displayName": "BelindaClark(e)", + "fid": 620169, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4fd5dda3-383b-42bb-d5ae-2699e15cf900/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fb1acc345d142cf05debafe9117ba4ed3aee1ab", + "etherscanUrl": "https://etherscan.io/address/0x0fb1acc345d142cf05debafe9117ba4ed3aee1ab", + "xHandle": "amberbeedee", + "xUrl": "https://twitter.com/amberbeedee", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_938165", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maikao", + "displayName": "MAIKAO", + "fid": 938165, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a61bce91-c806-4b5c-633e-f3281bce0f00/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4651eae6018130a99b630dbc7f70892228ae5080", + "etherscanUrl": "https://etherscan.io/address/0x4651eae6018130a99b630dbc7f70892228ae5080", + "xHandle": "maikaostark", + "xUrl": "https://twitter.com/maikaostark", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1123393", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pappu123", + "displayName": "saha", + "fid": 1123393, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0929f91a-3efe-4665-a3a3-6443fc4fa100/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1efe24faa677d3305fc5d0e9f19545cecd90567", + "etherscanUrl": "https://etherscan.io/address/0xe1efe24faa677d3305fc5d0e9f19545cecd90567", + "xHandle": "saha08001417", + "xUrl": "https://twitter.com/saha08001417", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1116683", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "edv", + "displayName": "edv", + "fid": 1116683, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75944c40-a625-4317-ace4-320801bb8700/original", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e03dacfe5d197eb181d8fea98b491b41764c598", + "etherscanUrl": "https://etherscan.io/address/0x3e03dacfe5d197eb181d8fea98b491b41764c598", + "xHandle": "edv_w3", + "xUrl": "https://twitter.com/edv_w3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_921110", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "enestrat", + "displayName": "enestrat", + "fid": 921110, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d096a2d2-d2f6-423c-6cf7-7118bfd3f600/rectcrop3", + "followers": 19, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4872816045c99b84942ce81de9a81818dd55aa1e", + "etherscanUrl": "https://etherscan.io/address/0x4872816045c99b84942ce81de9a81818dd55aa1e", + "xHandle": "ryan_steckn", + "xUrl": "https://twitter.com/ryan_steckn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_824128", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "whatnowbuddy", + "displayName": "jammy", + "fid": 824128, + "pfpUrl": "https://avatars.steamstatic.com/ffec99040bffd2c4447f4cd8a294166024d2e9e8_full.jpg", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc1c7f9a3c20824ab2fccc2b70234f7149aa04d12", + "etherscanUrl": "https://etherscan.io/address/0xc1c7f9a3c20824ab2fccc2b70234f7149aa04d12", + "xHandle": "perry_yael97002", + "xUrl": "https://twitter.com/perry_yael97002", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1412345", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vincent-tw", + "displayName": "vincent-tw", + "fid": 1412345, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1c7a9870-c2b8-41c2-93a7-baa2e091e400/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafa7ce1800a2a36430a2fa61727ac6b820d13599", + "etherscanUrl": "https://etherscan.io/address/0xafa7ce1800a2a36430a2fa61727ac6b820d13599", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1359308", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ambassadorgold", + "displayName": "ambassadorgold", + "fid": 1359308, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee443c97-a68d-4c7a-68f8-5a073cb93b00/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06b459b5f5a219028555583221ee5185ba1bafa2", + "etherscanUrl": "https://etherscan.io/address/0x06b459b5f5a219028555583221ee5185ba1bafa2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1346522", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "meggiebeauty", + "displayName": "Meggiebeauty", + "fid": 1346522, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fdea7c3-e844-43b0-5ddc-edb61550d900/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd60042f0aac111b246ff9e4c6819e047e8a69d4e", + "etherscanUrl": "https://etherscan.io/address/0xd60042f0aac111b246ff9e4c6819e047e8a69d4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1315983", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "deshicryptoguy", + "displayName": "Creator Economics", + "fid": 1315983, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40055371-15a8-48e4-fe45-4c9511913800/original", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab855a955c872a8f61813df077ed61eb03fe639c", + "etherscanUrl": "https://etherscan.io/address/0xab855a955c872a8f61813df077ed61eb03fe639c", + "xHandle": "bhandarysu99076", + "xUrl": "https://twitter.com/bhandarysu99076", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1033625", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "decentramind", + "displayName": "EtherealVoyager", + "fid": 1033625, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88eb3ead-f857-4437-9856-ca1eb264b900/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa5108fa28448b297ef84ce649cf9aca00732fb8", + "etherscanUrl": "https://etherscan.io/address/0xaa5108fa28448b297ef84ce649cf9aca00732fb8", + "xHandle": "gabyoonz", + "xUrl": "https://twitter.com/gabyoonz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611438", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "josephaldington", + "displayName": "Joseph Aldington", + "fid": 611438, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d64d1e11-7247-4a63-d79f-56aa7584a400/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1601f99966cc748bdfcacdf8837f19e01bc1be2", + "etherscanUrl": "https://etherscan.io/address/0xa1601f99966cc748bdfcacdf8837f19e01bc1be2", + "xHandle": "popmusic514", + "xUrl": "https://twitter.com/popmusic514", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611440", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "candicehoover", + "displayName": "Candice Hoover", + "fid": 611440, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77e070e4-d6de-487b-9adb-8cd52f332500/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7cdd1d44eae7a7040a8c5d145e02c1f3a8fc0bf8", + "etherscanUrl": "https://etherscan.io/address/0x7cdd1d44eae7a7040a8c5d145e02c1f3a8fc0bf8", + "xHandle": "bluelove1303", + "xUrl": "https://twitter.com/bluelove1303", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_615490", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jeremydobbin", + "displayName": "Jeremy Dobbin", + "fid": 615490, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab582ca2-d74d-4741-53c6-80912f68cf00/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda19b0b90acb43e1dc51e6465f32d9a6c031c588", + "etherscanUrl": "https://etherscan.io/address/0xda19b0b90acb43e1dc51e6465f32d9a6c031c588", + "xHandle": "zombiemusic2", + "xUrl": "https://twitter.com/zombiemusic2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611927", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aprilsally", + "displayName": "April Sally", + "fid": 611927, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/675f4001-81d5-4a95-edff-a41585e3f200/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16c81b52985234db5aac701319c4bee0cd46354f", + "etherscanUrl": "https://etherscan.io/address/0x16c81b52985234db5aac701319c4bee0cd46354f", + "xHandle": "giemargs21", + "xUrl": "https://twitter.com/giemargs21", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_628663", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alfredmore", + "displayName": "AlfredMore", + "fid": 628663, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce21473f-e514-47f7-005c-32391224e900/rectcrop3", + "followers": 18, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54f24c7e904ef397f612266ce4626ba5ae455d6b", + "etherscanUrl": "https://etherscan.io/address/0x54f24c7e904ef397f612266ce4626ba5ae455d6b", + "xHandle": "delmarie_borja", + "xUrl": "https://twitter.com/delmarie_borja", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1359258", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hasan5534", + "displayName": "hasan5534", + "fid": 1359258, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6c86bfebc604f0a821c2d83f8d98d8f682ddf74", + "etherscanUrl": "https://etherscan.io/address/0xb6c86bfebc604f0a821c2d83f8d98d8f682ddf74", + "xHandle": "mertcan285534", + "xUrl": "https://twitter.com/mertcan285534", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1355196", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tikuz", + "displayName": "tikuz", + "fid": 1355196, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27f51d7b-5335-414a-8d11-1d59f77ddd00/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd00d1f4a15768a898daa2eb3e90ad6a23934252d", + "etherscanUrl": "https://etherscan.io/address/0xd00d1f4a15768a898daa2eb3e90ad6a23934252d", + "xHandle": "agusriy52119119", + "xUrl": "https://twitter.com/agusriy52119119", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1183117", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "isyakushehutawar", + "displayName": "Isyakushehutawaris", + "fid": 1183117, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bdff7b3-ed74-4f4b-2ada-65537638ce00/original", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90b512e2dee3d6e93c1ec25f0dea2f0dcca3b129", + "etherscanUrl": "https://etherscan.io/address/0x90b512e2dee3d6e93c1ec25f0dea2f0dcca3b129", + "xHandle": "shehutuwaris12", + "xUrl": "https://twitter.com/shehutuwaris12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_624314", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ellabentham", + "displayName": "EllaBentham", + "fid": 624314, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a96990a9-f57d-4628-6870-aab8bbb8d100/rectcrop3", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf06c4997d326fec76c36969eed494c8a911f11b3", + "etherscanUrl": "https://etherscan.io/address/0xf06c4997d326fec76c36969eed494c8a911f11b3", + "xHandle": "mpg3109", + "xUrl": "https://twitter.com/mpg3109", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_620506", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "colbydickens", + "displayName": "ColbyDickens", + "fid": 620506, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9e644ca-0ae3-413d-3c54-8519f5dff800/rectcrop3", + "followers": 17, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1b50bb75ce4b75e2258b7a95eae4a4eac28eb79", + "etherscanUrl": "https://etherscan.io/address/0xd1b50bb75ce4b75e2258b7a95eae4a4eac28eb79", + "xHandle": "manjula567", + "xUrl": "https://twitter.com/manjula567", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1383834", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kock", + "displayName": "kock", + "fid": 1383834, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f5db77694d717e60747580f97fc43dda128c842", + "etherscanUrl": "https://etherscan.io/address/0x7f5db77694d717e60747580f97fc43dda128c842", + "xHandle": "mobeen1226100", + "xUrl": "https://twitter.com/mobeen1226100", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063961", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nazzizutsr", + "displayName": "Trol Farcaster", + "fid": 1063961, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9133413-3b88-41f9-1f7c-9768cd359600/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x973e0f38b9d1b1788341a1b29336346750863406", + "etherscanUrl": "https://etherscan.io/address/0x973e0f38b9d1b1788341a1b29336346750863406", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_978133", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aiwa", + "displayName": "Aiwa", + "fid": 978133, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e44d5c9b-5b22-438c-4519-eef4bdf52700/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ff0f2b9b50ae15985d16e71d8a8bbf203317521", + "etherscanUrl": "https://etherscan.io/address/0x2ff0f2b9b50ae15985d16e71d8a8bbf203317521", + "xHandle": "gbx869", + "xUrl": "https://twitter.com/gbx869", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1162320", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "starletjnr", + "displayName": "Emma", + "fid": 1162320, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e98400d-941f-4be4-2564-2f6ed4c54800/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b39abc61857caeebd98424474f483ff5ee1af65", + "etherscanUrl": "https://etherscan.io/address/0x6b39abc61857caeebd98424474f483ff5ee1af65", + "xHandle": "emmadesignn", + "xUrl": "https://twitter.com/emmadesignn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156467", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fcyyyang", + "displayName": "yangyang", + "fid": 1156467, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a831d55b-7d76-4588-b639-48acaf679b00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xef67f8f815e2819006f688388a5b2ec35a868106", + "etherscanUrl": "https://etherscan.io/address/0xef67f8f815e2819006f688388a5b2ec35a868106", + "xHandle": "smartsplice", + "xUrl": "https://twitter.com/smartsplice", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1075825", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "curiousity", + "displayName": "Anonymous", + "fid": 1075825, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x253acdc1959ab7da4088307ca42384074eda6a92", + "etherscanUrl": "https://etherscan.io/address/0x253acdc1959ab7da4088307ca42384074eda6a92", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "irohit06", + "displayName": "Rohit Dhurve", + "fid": 1127552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e6ff35a-2bdc-4193-4a8a-082b087adb00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01d0cd2b6ab7771ec17407c44966e41d69ac0c8a", + "etherscanUrl": "https://etherscan.io/address/0x01d0cd2b6ab7771ec17407c44966e41d69ac0c8a", + "xHandle": "one_tweet_me", + "xUrl": "https://twitter.com/one_tweet_me", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926567", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qwbb", + "displayName": "贝贝花朵", + "fid": 926567, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42cb9e7e-ee13-4071-4f3a-c29f79811800/rectcrop3", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2fd94f2fd98a2876e837589beb0f3d59f62651b", + "etherscanUrl": "https://etherscan.io/address/0xc2fd94f2fd98a2876e837589beb0f3d59f62651b", + "xHandle": "jetsroughl39642", + "xUrl": "https://twitter.com/jetsroughl39642", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1107073", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rainmoney", + "displayName": "Mr.rainmoney369", + "fid": 1107073, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6617603c-569c-4cba-17d4-5007d948ec00/original", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x018333ad7b5422651e09a0370447e9edee4ac155", + "etherscanUrl": "https://etherscan.io/address/0x018333ad7b5422651e09a0370447e9edee4ac155", + "xHandle": "xxxbxxxxxxxx", + "xUrl": "https://twitter.com/xxxbxxxxxxxx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625894", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "selenathomson", + "displayName": "SelenaThomson", + "fid": 625894, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f0c8adad-08d0-4dbc-7aca-e82e9b7bfd00/rectcrop3", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5143196c253e483a7d4fdad6e036cc4549e36c0a", + "etherscanUrl": "https://etherscan.io/address/0x5143196c253e483a7d4fdad6e036cc4549e36c0a", + "xHandle": "sylvyluv44", + "xUrl": "https://twitter.com/sylvyluv44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611453", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "michaelbenjamin", + "displayName": "Michael Benjamin", + "fid": 611453, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81b10097-5c76-444f-e4af-267baa754b00/rectcrop3", + "followers": 16, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81da417d8d8ec824f4b0f0682123a7cf412ffb2b", + "etherscanUrl": "https://etherscan.io/address/0x81da417d8d8ec824f4b0f0682123a7cf412ffb2b", + "xHandle": "bs_crivel", + "xUrl": "https://twitter.com/bs_crivel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1376552", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dbimbs", + "displayName": "dbimbs", + "fid": 1376552, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5601ee4927bb9efff366eba81589e00febc89cd8", + "etherscanUrl": "https://etherscan.io/address/0x5601ee4927bb9efff366eba81589e00febc89cd8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1062615", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tra30s", + "displayName": "putrapratama_00", + "fid": 1062615, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/196f394e-e482-4349-4edb-fdcb3a058300/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x608d4ce43bd2623cede6c5e0c1b9029dd7b037f2", + "etherscanUrl": "https://etherscan.io/address/0x608d4ce43bd2623cede6c5e0c1b9029dd7b037f2", + "xHandle": "traus00", + "xUrl": "https://twitter.com/traus00", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1370590", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "benniebillracks5", + "displayName": "benniebillracks5", + "fid": 1370590, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddeff4f7-1a9e-477f-f660-27a35489ff00/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x269601a3f75e8a63c275de480be563835959a56a", + "etherscanUrl": "https://etherscan.io/address/0x269601a3f75e8a63c275de480be563835959a56a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1318077", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nazila1991", + "displayName": "Nazila", + "fid": 1318077, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f616057f-8504-4d5c-ad2f-ad170c029d00/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaceb1d8deb198ba079d0922c8d01dd094e6299a3", + "etherscanUrl": "https://etherscan.io/address/0xaceb1d8deb198ba079d0922c8d01dd094e6299a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1316532", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kodokbase", + "displayName": "Not Slava", + "fid": 1316532, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761441190/IMG_9388.jpg.jpg", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a968fb3e609a6f3c2132988a2db18242920eee8", + "etherscanUrl": "https://etherscan.io/address/0x0a968fb3e609a6f3c2132988a2db18242920eee8", + "xHandle": "junio55381", + "xUrl": "https://twitter.com/junio55381", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139801", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hamid1", + "displayName": "Captain Charle", + "fid": 1139801, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d732be6-9c92-4865-287a-89ac58febc00/original", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf080bf08c41dad50101b881ad1775bd6c7fdabcf", + "etherscanUrl": "https://etherscan.io/address/0xf080bf08c41dad50101b881ad1775bd6c7fdabcf", + "xHandle": "hamidctg125866", + "xUrl": "https://twitter.com/hamidctg125866", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_925238", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eret", + "displayName": "Kksnx", + "fid": 925238, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9395e7fc-a5e4-4bc6-2db0-7210de2d5400/rectcrop3", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x92a8e1216ee9d259b9cc8d9ac65602cdea6cb08f", + "etherscanUrl": "https://etherscan.io/address/0x92a8e1216ee9d259b9cc8d9ac65602cdea6cb08f", + "xHandle": "jhelapconk99885", + "xUrl": "https://twitter.com/jhelapconk99885", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bonnieservice", + "displayName": "BonnieService", + "fid": 625197, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53c3cbe2-0ed4-49e1-eb1a-12ca2a928e00/rectcrop3", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3631d1249a419485973c3b91988c3c38727f344a", + "etherscanUrl": "https://etherscan.io/address/0x3631d1249a419485973c3b91988c3c38727f344a", + "xHandle": "syndell123", + "xUrl": "https://twitter.com/syndell123", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1050226", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zyvaara", + "displayName": "Fatkhurrokhman", + "fid": 1050226, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6e48647-44b4-4169-fb45-5a40501bce00/rectcrop3", + "followers": 15, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b37b5568652c9e023b9112e0905fb3fa26d7291", + "etherscanUrl": "https://etherscan.io/address/0x8b37b5568652c9e023b9112e0905fb3fa26d7291", + "xHandle": "fatkhurstikes", + "xUrl": "https://twitter.com/fatkhurstikes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1068324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nadim31", + "displayName": "MD YUNUS NADIM", + "fid": 1068324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe67cdb1971b893e1f88809f092f85d467a5b561b", + "etherscanUrl": "https://etherscan.io/address/0xe67cdb1971b893e1f88809f092f85d467a5b561b", + "xHandle": "nadim23456", + "xUrl": "https://twitter.com/nadim23456", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_520555", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jund", + "displayName": "Jund", + "fid": 520555, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1a49a01-2d05-4db9-e4ad-c65b8ae66f00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x367eaa1c680323d15811ee31e61deff48cbf86b5", + "etherscanUrl": "https://etherscan.io/address/0x367eaa1c680323d15811ee31e61deff48cbf86b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128107", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kingsmikel", + "displayName": "Kingsmikel", + "fid": 1128107, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a2ae5745-e47d-4e46-6b72-9dcb92177a00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2903f27a7e99e5a374fd0693673953085460ad4", + "etherscanUrl": "https://etherscan.io/address/0xd2903f27a7e99e5a374fd0693673953085460ad4", + "xHandle": "kingsmikel027", + "xUrl": "https://twitter.com/kingsmikel027", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1201409", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tigerweb3", + "displayName": "tiger的发财日记", + "fid": 1201409, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb52e099-fc90-4352-ffb3-26085002fd00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x931b347445cceee8e52cf07f8ef0ccdb52d7c62d", + "etherscanUrl": "https://etherscan.io/address/0x931b347445cceee8e52cf07f8ef0ccdb52d7c62d", + "xHandle": "travelerfx", + "xUrl": "https://twitter.com/travelerfx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1310780", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kishor0803", + "displayName": "kishor0803", + "fid": 1310780, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x489122c5590641bced44aa1a5ac69b8406ffafda", + "etherscanUrl": "https://etherscan.io/address/0x489122c5590641bced44aa1a5ac69b8406ffafda", + "xHandle": "kishor_08", + "xUrl": "https://twitter.com/kishor_08", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_500629", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kurodenjiro", + "displayName": "Kuro", + "fid": 500629, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88f5f266-8258-4376-50c5-54c6c5393c00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa48261e138b40fefb3121099638c6af90676b7a6", + "etherscanUrl": "https://etherscan.io/address/0xa48261e138b40fefb3121099638c6af90676b7a6", + "xHandle": "kurodenjiro", + "xUrl": "https://twitter.com/kurodenjiro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1166192", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kays10", + "displayName": "kays10.base.eth", + "fid": 1166192, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d21d114f-1b87-4052-0bf9-ab539880db00/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xceeab953041f1815e76a46c081760cd414412072", + "etherscanUrl": "https://etherscan.io/address/0xceeab953041f1815e76a46c081760cd414412072", + "xHandle": "daviskays", + "xUrl": "https://twitter.com/daviskays", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190450", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jokky11", + "displayName": "Joke Bello", + "fid": 1190450, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ae5c7c802a0fe88cde6a4127e2ee39c51165bcf", + "etherscanUrl": "https://etherscan.io/address/0x7ae5c7c802a0fe88cde6a4127e2ee39c51165bcf", + "xHandle": "jokky11", + "xUrl": "https://twitter.com/jokky11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1147591", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "visionario777", + "displayName": "@visionario777.et", + "fid": 1147591, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b62ca2c3-dbb8-42a8-7339-52527f697700/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa74531661f8cbf5b8857f834a42759282fe63a5c", + "etherscanUrl": "https://etherscan.io/address/0xa74531661f8cbf5b8857f834a42759282fe63a5c", + "xHandle": "vinicius_barao0", + "xUrl": "https://twitter.com/vinicius_barao0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142246", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jay301", + "displayName": "Jay Das", + "fid": 1142246, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x765c9b7d14182980b6d542977203e2d6d1879a84", + "etherscanUrl": "https://etherscan.io/address/0x765c9b7d14182980b6d542977203e2d6d1879a84", + "xHandle": "jaydas301", + "xUrl": "https://twitter.com/jaydas301", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_625095", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ryanburne-jones", + "displayName": "RyanBurne-Jones", + "fid": 625095, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2977ffa4-d0f2-41a3-8519-4173f9c50000/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70875a1db5f94962233b6ed720e56066e15ddf89", + "etherscanUrl": "https://etherscan.io/address/0x70875a1db5f94962233b6ed720e56066e15ddf89", + "xHandle": "jamesgarside", + "xUrl": "https://twitter.com/jamesgarside", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129209", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "worrier", + "displayName": "warrior (Ø,G)", + "fid": 1129209, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37c757ae-388f-4b71-9dfb-14795f0ff500/original", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ca30206b647e94b2fbe09958e3eae8023c80ff6", + "etherscanUrl": "https://etherscan.io/address/0x5ca30206b647e94b2fbe09958e3eae8023c80ff6", + "xHandle": "cc8_dav", + "xUrl": "https://twitter.com/cc8_dav", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905085", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "evangelinegrega", + "displayName": "EvangelineGrega", + "fid": 905085, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efa4448c-88f7-4b26-bd78-bf460a59f600/rectcrop3", + "followers": 14, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a6d79c9710e3d7cdcecfab3bff500a681681a25", + "etherscanUrl": "https://etherscan.io/address/0x0a6d79c9710e3d7cdcecfab3bff500a681681a25", + "xHandle": "jaquithwfk791", + "xUrl": "https://twitter.com/jaquithwfk791", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1008633", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iphonessbm", + "displayName": "iphone", + "fid": 1008633, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fcb35602-c704-49ec-1dd7-87bc9ce77f00/rectcrop3", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f047a69c9128c3a25b141528ebddb910e2c3d44", + "etherscanUrl": "https://etherscan.io/address/0x3f047a69c9128c3a25b141528ebddb910e2c3d44", + "xHandle": "iphone194629174", + "xUrl": "https://twitter.com/iphone194629174", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_824199", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "erenyaegerstan", + "displayName": "acebosco", + "fid": 824199, + "pfpUrl": "https://avatars.steamstatic.com/82f2373711d79ea067658af6a71ac6243d5cecb1_full.jpg", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b351b927f57aa628485d5eea34bdb928b6a8165", + "etherscanUrl": "https://etherscan.io/address/0x6b351b927f57aa628485d5eea34bdb928b6a8165", + "xHandle": "nortonbeli16055", + "xUrl": "https://twitter.com/nortonbeli16055", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1402533", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emeraldeyecripto", + "displayName": "emeraldeyecripto", + "fid": 1402533, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ab6826e-6ec3-461d-41ad-cb79882a7800/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46024b4bc612f0bb264c80ad9879fb9433d5a93a", + "etherscanUrl": "https://etherscan.io/address/0x46024b4bc612f0bb264c80ad9879fb9433d5a93a", + "xHandle": "bnbgold277983", + "xUrl": "https://twitter.com/bnbgold277983", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1389390", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "djmllssn", + "displayName": "djmllssn", + "fid": 1389390, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/392fe8c0-8dc8-4981-5e42-a5ec1f3bf500/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42f088323e6f205dcbdb8a0bb3c9b0c9f13eefc7", + "etherscanUrl": "https://etherscan.io/address/0x42f088323e6f205dcbdb8a0bb3c9b0c9f13eefc7", + "xHandle": "tchan_coin", + "xUrl": "https://twitter.com/tchan_coin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_826178", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zunglima", + "displayName": "lil'fireball", + "fid": 826178, + "pfpUrl": "https://avatars.steamstatic.com/5eab98b4abe92c723d9ee3cf624cd1d666ad73bd_full.jpg", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9571ee22c68d8a08a6207df725cf540b2f861d49", + "etherscanUrl": "https://etherscan.io/address/0x9571ee22c68d8a08a6207df725cf540b2f861d49", + "xHandle": "laraa18917", + "xUrl": "https://twitter.com/laraa18917", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_831987", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "respah", + "displayName": "docjones", + "fid": 831987, + "pfpUrl": "https://avatars.steamstatic.com/deb8d1f43b00604b2cc36626d8263194d875a9c8_full.jpg", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce41a4b13e41ce41b048a539833fcc78bf21956d", + "etherscanUrl": "https://etherscan.io/address/0xce41a4b13e41ce41b048a539833fcc78bf21956d", + "xHandle": "orozcoryli63446", + "xUrl": "https://twitter.com/orozcoryli63446", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1342009", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gyokera", + "displayName": "gyokera", + "fid": 1342009, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72d3063aa1e37809edecfb823c03f68da0b0747d", + "etherscanUrl": "https://etherscan.io/address/0x72d3063aa1e37809edecfb823c03f68da0b0747d", + "xHandle": "gyokszi", + "xUrl": "https://twitter.com/gyokszi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1238638", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gadex", + "displayName": "jancokcoin.base.eth", + "fid": 1238638, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2da1511c-c404-45a9-7baa-eb1f9b3e6e00/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94df4477bb6069e318432ee97b840c79480b67ea", + "etherscanUrl": "https://etherscan.io/address/0x94df4477bb6069e318432ee97b840c79480b67ea", + "xHandle": "jancokcoin", + "xUrl": "https://twitter.com/jancokcoin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1331833", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "humanity369", + "displayName": "humanity369", + "fid": 1331833, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97e037a6-530b-44a7-b7d4-1b5a35db8c00/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacef42ddfc310f5987668587b2a10a1c86c24574", + "etherscanUrl": "https://etherscan.io/address/0xacef42ddfc310f5987668587b2a10a1c86c24574", + "xHandle": "ramakrishn56259", + "xUrl": "https://twitter.com/ramakrishn56259", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1223996", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zammas55", + "displayName": "Mohamadullah", + "fid": 1223996, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6537b98e-e90c-446e-f431-eec46836db00/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4d833345b6de17bc4d7b6525fdf0b9f26426047f", + "etherscanUrl": "https://etherscan.io/address/0x4d833345b6de17bc4d7b6525fdf0b9f26426047f", + "xHandle": "mohamma66639550", + "xUrl": "https://twitter.com/mohamma66639550", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1238103", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babysolape", + "displayName": "babysolape | Anomage 🟣", + "fid": 1238103, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab3a76eb-5353-4dc0-3c50-4b772af11900/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9a5c7438d73cb5b7160a8b71e5cf039d632c388", + "etherscanUrl": "https://etherscan.io/address/0xb9a5c7438d73cb5b7160a8b71e5cf039d632c388", + "xHandle": "babysolape_", + "xUrl": "https://twitter.com/babysolape_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138249", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alhsnaltas64", + "displayName": "only_kun 💙 KAISAR TAKER", + "fid": 1138249, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e8976ebe-ebdc-4c3b-992d-a666c6a6e900/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30024a3824bfa7ba8eba896fd6795f7b041a40eb", + "etherscanUrl": "https://etherscan.io/address/0x30024a3824bfa7ba8eba896fd6795f7b041a40eb", + "xHandle": "alhsnaltas64", + "xUrl": "https://twitter.com/alhsnaltas64", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_875362", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reprod", + "displayName": "Trewys", + "fid": 875362, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74c6227f-eea1-459c-e153-1d26bc2bb900/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27e89557f5d8c148f564672e3eaca7339cf2ccdd", + "etherscanUrl": "https://etherscan.io/address/0x27e89557f5d8c148f564672e3eaca7339cf2ccdd", + "xHandle": "kjecm75774352", + "xUrl": "https://twitter.com/kjecm75774352", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_611259", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "karenowen", + "displayName": "KarenOwen", + "fid": 611259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d074763c-ca7b-4c93-f18d-77a0caaa5e00/rectcrop3", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65ceea72f1881e0485f39a66111e6b6be58fba78", + "etherscanUrl": "https://etherscan.io/address/0x65ceea72f1881e0485f39a66111e6b6be58fba78", + "xHandle": "ali_zubair80", + "xUrl": "https://twitter.com/ali_zubair80", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141066", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thamrin30", + "displayName": "Usni", + "fid": 1141066, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2591536b3da1e1c052f30e764d5ebab905f0e1f4", + "etherscanUrl": "https://etherscan.io/address/0x2591536b3da1e1c052f30e764d5ebab905f0e1f4", + "xHandle": "thamrin30", + "xUrl": "https://twitter.com/thamrin30", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118237", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "463176", + "displayName": "Fajar Ageng Setiawan", + "fid": 1118237, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7af792d4497d6c0d2b9a0c432d67713bc11fd1c7", + "etherscanUrl": "https://etherscan.io/address/0x7af792d4497d6c0d2b9a0c432d67713bc11fd1c7", + "xHandle": "fajar16752653", + "xUrl": "https://twitter.com/fajar16752653", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930840", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emilyuu", + "displayName": "Robinson", + "fid": 930840, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1dfafb4-1f08-476d-9d64-012bb1cf2f00/original", + "followers": 13, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec40a63067ecadfb9f6c8812117475224009300d", + "etherscanUrl": "https://etherscan.io/address/0xec40a63067ecadfb9f6c8812117475224009300d", + "xHandle": "chikajho", + "xUrl": "https://twitter.com/chikajho", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1445034", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "1362", + "displayName": "1362", + "fid": 1445034, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49286cead06a9dca5272bac2f3cf930b6d5a147c", + "etherscanUrl": "https://etherscan.io/address/0x49286cead06a9dca5272bac2f3cf930b6d5a147c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1435842", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lafroggie", + "displayName": "lafroggie", + "fid": 1435842, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f909d39-af18-4167-5333-f830b76c0800/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1be22dbd546b77dd9c045f49b10c195c3e932d03", + "etherscanUrl": "https://etherscan.io/address/0x1be22dbd546b77dd9c045f49b10c195c3e932d03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1397582", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alex-doge", + "displayName": "alex-doge", + "fid": 1397582, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f46a3d73-305d-4797-d123-3c068becc700/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23f54b4ddd1b84cc76941ed2a9344fc5504fd3fc", + "etherscanUrl": "https://etherscan.io/address/0x23f54b4ddd1b84cc76941ed2a9344fc5504fd3fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_826081", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "d09", + "displayName": "d09", + "fid": 826081, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/935ba249-eb26-47fc-4535-8f659a316f00/rectcrop3", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fb237af21d75347be632a1738f089dedd37b231", + "etherscanUrl": "https://etherscan.io/address/0x3fb237af21d75347be632a1738f089dedd37b231", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_871567", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bonkkmorie", + "displayName": "bonkkmorie", + "fid": 871567, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdf94395-ff20-44aa-93ca-bf6179006800/rectcrop3", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46d10a7e93aff0f705beb5a134da268ebcde0805", + "etherscanUrl": "https://etherscan.io/address/0x46d10a7e93aff0f705beb5a134da268ebcde0805", + "xHandle": "evgeny391650", + "xUrl": "https://twitter.com/evgeny391650", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328219", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crimsongiant", + "displayName": "Crimsongiant.base.eth", + "fid": 1328219, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37601562-b32d-4ad0-4b91-8d5105e9ae00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x277b4f273ac5d79aaab0be4393ea251c58509312", + "etherscanUrl": "https://etherscan.io/address/0x277b4f273ac5d79aaab0be4393ea251c58509312", + "xHandle": "crimsongiant", + "xUrl": "https://twitter.com/crimsongiant", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1182745", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bwoy", + "displayName": "Bwoy", + "fid": 1182745, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ab94c42534d8ce1e6b2677d09e4c244720af62a", + "etherscanUrl": "https://etherscan.io/address/0x2ab94c42534d8ce1e6b2677d09e4c244720af62a", + "xHandle": "boy1153702", + "xUrl": "https://twitter.com/boy1153702", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1166242", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "apophatic0x", + "displayName": "Apophatic0x", + "fid": 1166242, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/295b27a8-9e60-46dd-c5fb-94032c4fe000/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19e907dc9112832962d0bdf44bc7c031556f8a24", + "etherscanUrl": "https://etherscan.io/address/0x19e907dc9112832962d0bdf44bc7c031556f8a24", + "xHandle": "apophatic0x", + "xUrl": "https://twitter.com/apophatic0x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1164729", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sollygazz", + "displayName": "Solomon Ghazal", + "fid": 1164729, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a26955fa-8fd4-4608-4dea-d82d95266000/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5614b0258acfb9ad0b99642497add2cda19547c3", + "etherscanUrl": "https://etherscan.io/address/0x5614b0258acfb9ad0b99642497add2cda19547c3", + "xHandle": "sollygazz", + "xUrl": "https://twitter.com/sollygazz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063931", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rahmanjr17", + "displayName": "×͜× Rahman", + "fid": 1063931, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43dd77e6-e2e4-48f5-255f-7d7a6624c700/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e7892a7631ad683697331593fef24f8a30ba48c", + "etherscanUrl": "https://etherscan.io/address/0x0e7892a7631ad683697331593fef24f8a30ba48c", + "xHandle": "rexjosephh", + "xUrl": "https://twitter.com/rexjosephh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143679", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sbastian", + "displayName": "Sbastian", + "fid": 1143679, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc209902-99f7-4490-d250-bb6716c1fe00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc1e93b5867c16ab06d735b6dbbfce43031dedaa", + "etherscanUrl": "https://etherscan.io/address/0xdc1e93b5867c16ab06d735b6dbbfce43031dedaa", + "xHandle": "vinosbasti63873", + "xUrl": "https://twitter.com/vinosbasti63873", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136042", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "davood61", + "displayName": "Dase far", + "fid": 1136042, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3392e414-b167-497b-0bd7-70426beb1a00/original", + "followers": 12, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xffe7f9235f8ddafe0d82fe0055e31c9d4e8ef00e", + "etherscanUrl": "https://etherscan.io/address/0xffe7f9235f8ddafe0d82fe0055e31c9d4e8ef00e", + "xHandle": "davodheydari44", + "xUrl": "https://twitter.com/davodheydari44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1391154", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "buoyafi", + "displayName": "buoyafi", + "fid": 1391154, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1218a884-97e9-4496-05a6-6a84b5bf0100/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a7759da5d91e490f61bce21cd7483f52a1b197e", + "etherscanUrl": "https://etherscan.io/address/0x3a7759da5d91e490f61bce21cd7483f52a1b197e", + "xHandle": "nutstriix", + "xUrl": "https://twitter.com/nutstriix", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1382691", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jenny44", + "displayName": "jenny44", + "fid": 1382691, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x83b3080c860ab9df486097dfa7dcc20b08c8d967", + "etherscanUrl": "https://etherscan.io/address/0x83b3080c860ab9df486097dfa7dcc20b08c8d967", + "xHandle": "jennyky2003", + "xUrl": "https://twitter.com/jennyky2003", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1363137", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mokhtar4r", + "displayName": "mokhtar4r", + "fid": 1363137, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f261adb-ef18-4359-09d1-0fe4a6a6ef00/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfaeeab061110da6706f19dd923ec0a4ecbdc9d35", + "etherscanUrl": "https://etherscan.io/address/0xfaeeab061110da6706f19dd923ec0a4ecbdc9d35", + "xHandle": "baki69727034", + "xUrl": "https://twitter.com/baki69727034", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1339368", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdlaw2090", + "displayName": "mdlaw2090", + "fid": 1339368, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a331d83-0562-46e0-839d-58fc3f8ee500/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66654ba60432017d3c6368e2f4e3aa5d894263b0", + "etherscanUrl": "https://etherscan.io/address/0x66654ba60432017d3c6368e2f4e3aa5d894263b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156699", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amandas3481", + "displayName": "Amanda Carter", + "fid": 1156699, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4aff7387-9ed8-464f-482c-76d87a6f0600/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a3d345662349a6ed167acafc44cbd7e7c1f1343", + "etherscanUrl": "https://etherscan.io/address/0x3a3d345662349a6ed167acafc44cbd7e7c1f1343", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639067", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tyler265", + "displayName": "\u0003Tyler23", + "fid": 639067, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec547e7c-3687-45ae-a79c-780d2beb4800/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55be87f15ff622dbd307ada5bdd31267a1d0fded", + "etherscanUrl": "https://etherscan.io/address/0x55be87f15ff622dbd307ada5bdd31267a1d0fded", + "xHandle": "npuwj84185475", + "xUrl": "https://twitter.com/npuwj84185475", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143542", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anyanwu43", + "displayName": "promiseanyanwu \"Meshchain.Ai\"", + "fid": 1143542, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6ee6b69-c59e-479e-9a68-c863553e4e00/original", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdf44ba97b590c627ed2cf30d025fa0ea6f72209", + "etherscanUrl": "https://etherscan.io/address/0xbdf44ba97b590c627ed2cf30d025fa0ea6f72209", + "xHandle": "promise19576748", + "xUrl": "https://twitter.com/promise19576748", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_907972", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oq3pbs3lm", + "displayName": "DevinMarlow", + "fid": 907972, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3db3da6d-1bcb-432f-15b2-5ef3f8ada700/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb63574b18ca8fed0e4d03e979d809e2b011f5306", + "etherscanUrl": "https://etherscan.io/address/0xb63574b18ca8fed0e4d03e979d809e2b011f5306", + "xHandle": "abusheen", + "xUrl": "https://twitter.com/abusheen", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_642975", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jasonjonah", + "displayName": "JasonJonah", + "fid": 642975, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6c47ec48-ac7e-46d2-0530-38d6405a7000/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61e04985090a0bd94a4efb83456bfc8269fb7036", + "etherscanUrl": "https://etherscan.io/address/0x61e04985090a0bd94a4efb83456bfc8269fb7036", + "xHandle": "mustafaaa2006", + "xUrl": "https://twitter.com/mustafaaa2006", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_628674", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joyce1", + "displayName": "Joyce", + "fid": 628674, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/050c9b06-325a-48ae-f058-a34bd5d5fb00/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x995f4982ab63b566d3096cf0afddabe1d579f063", + "etherscanUrl": "https://etherscan.io/address/0x995f4982ab63b566d3096cf0afddabe1d579f063", + "xHandle": "feelers_group", + "xUrl": "https://twitter.com/feelers_group", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_619997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tobeysaroyan", + "displayName": "TobeySaroyan", + "fid": 619997, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c519810-ff2a-401c-c9fe-5daf5ee54400/rectcrop3", + "followers": 11, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e039f8b3b7930c6adfdd11db412faf9073f39f6", + "etherscanUrl": "https://etherscan.io/address/0x2e039f8b3b7930c6adfdd11db412faf9073f39f6", + "xHandle": "annurfatihah83", + "xUrl": "https://twitter.com/annurfatihah83", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1010369", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yubo", + "displayName": "Yubo", + "fid": 1010369, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d76071da-f389-488b-c1d5-22ef9dba8a00/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f06f0d13f1be27db3d77dc5d6581ccc4c10c7f7", + "etherscanUrl": "https://etherscan.io/address/0x6f06f0d13f1be27db3d77dc5d6581ccc4c10c7f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_827761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dodger", + "displayName": "sketchySteve", + "fid": 827761, + "pfpUrl": "https://avatars.steamstatic.com/fae5cc65edcf9b26d1497413dff32d4a187ded76_full.jpg", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbeed1cd1820d326d866b7b1aaa442a9c2c63d6f1", + "etherscanUrl": "https://etherscan.io/address/0xbeed1cd1820d326d866b7b1aaa442a9c2c63d6f1", + "xHandle": "evangeline85333", + "xUrl": "https://twitter.com/evangeline85333", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1439407", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "agapee", + "displayName": "agapee", + "fid": 1439407, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9a4670a-53c5-4bb7-105e-989775f33d00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe50c56fd0b942f7c4428e9faa9a9a1450722a7b", + "etherscanUrl": "https://etherscan.io/address/0xbe50c56fd0b942f7c4428e9faa9a9a1450722a7b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1379406", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quinnfinite1", + "displayName": "quinnfinite1", + "fid": 1379406, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c194689e-90c2-4781-21ca-3ae19d02f000/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a788a35328a86c2fd78d291ee574567024f8247", + "etherscanUrl": "https://etherscan.io/address/0x2a788a35328a86c2fd78d291ee574567024f8247", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069499", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "emon999", + "displayName": "Emon NYAN🔫😼", + "fid": 1069499, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/10357e09-7796-4039-661d-29a67d453800/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfba215c0dafd4134dd4a0a2c1f42e0cfd8ad9557", + "etherscanUrl": "https://etherscan.io/address/0xfba215c0dafd4134dd4a0a2c1f42e0cfd8ad9557", + "xHandle": "emon386824", + "xUrl": "https://twitter.com/emon386824", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1357488", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "crazyfox98", + "displayName": "crazyfox98", + "fid": 1357488, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeaeee85dd5bdd0bf789fe4975fc4798e91a7ca18", + "etherscanUrl": "https://etherscan.io/address/0xeaeee85dd5bdd0bf789fe4975fc4798e91a7ca18", + "xHandle": "andrejkourij", + "xUrl": "https://twitter.com/andrejkourij", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_873902", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "orieldieujuste", + "displayName": "orieldieujuste", + "fid": 873902, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32be4778-655e-4452-c495-ab2d1a449c00/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x201a1178f1a898d31f34a88308cfd7170064c142", + "etherscanUrl": "https://etherscan.io/address/0x201a1178f1a898d31f34a88308cfd7170064c142", + "xHandle": "chernishow93649", + "xUrl": "https://twitter.com/chernishow93649", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_709139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "privasea7", + "displayName": "Jeff", + "fid": 709139, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed895b48-b863-467f-4a99-d8d24f349a00/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf192168d5055bdd1d4329d95db663fd6a8e5f3b5", + "etherscanUrl": "https://etherscan.io/address/0xf192168d5055bdd1d4329d95db663fd6a8e5f3b5", + "xHandle": "hellojeffeth", + "xUrl": "https://twitter.com/hellojeffeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1208661", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cyphix", + "displayName": "Cyphix", + "fid": 1208661, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/304f042b-3928-4caf-9813-aa89512c8400/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x681d6a10aae39bcfbcd47b5a22425f4c18a126ef", + "etherscanUrl": "https://etherscan.io/address/0x681d6a10aae39bcfbcd47b5a22425f4c18a126ef", + "xHandle": "chukwudeafors", + "xUrl": "https://twitter.com/chukwudeafors", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156398", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bepolaw", + "displayName": "Bullni", + "fid": 1156398, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66b45516-53af-485d-1ad0-43c850dd9a00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb330fd566c2431de6a4771a848917eec11a0a714", + "etherscanUrl": "https://etherscan.io/address/0xb330fd566c2431de6a4771a848917eec11a0a714", + "xHandle": "bepolaw07", + "xUrl": "https://twitter.com/bepolaw07", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145816", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "safitriimas15", + "displayName": "Imas safitri", + "fid": 1145816, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3978cc84-138d-4a1e-d66a-f175a5aa2800/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49666aab30c0380cbf9f1073e0ebfc504df2f7ae", + "etherscanUrl": "https://etherscan.io/address/0x49666aab30c0380cbf9f1073e0ebfc504df2f7ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097226", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "koos", + "displayName": "koos 🟣", + "fid": 1097226, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a7a94d8-e7b5-4f3b-e108-871d8a171000/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f77616193d2edd6c5542354257c5b5c4d43b088", + "etherscanUrl": "https://etherscan.io/address/0x7f77616193d2edd6c5542354257c5b5c4d43b088", + "xHandle": "meri260", + "xUrl": "https://twitter.com/meri260", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1043493", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "commander777", + "displayName": "Abas", + "fid": 1043493, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/301956e3-31b0-4f7f-6908-7cfd8a5af700/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74ab7f2607ef773ccde888bdf1fae87917d62adc", + "etherscanUrl": "https://etherscan.io/address/0x74ab7f2607ef773ccde888bdf1fae87917d62adc", + "xHandle": "abbassalar1360", + "xUrl": "https://twitter.com/abbassalar1360", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139879", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "musrifah01", + "displayName": "Musrifah", + "fid": 1139879, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e86d8665-76d7-434c-fe8e-c9b14a3d4f00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba426e90e9daa0c4c91614471e78a416c97ae93e", + "etherscanUrl": "https://etherscan.io/address/0xba426e90e9daa0c4c91614471e78a416c97ae93e", + "xHandle": "musrifahiffah", + "xUrl": "https://twitter.com/musrifahiffah", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1004624", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "notmykeys", + "displayName": "kev", + "fid": 1004624, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9ed7856-8841-4bbd-defd-f8b72fec6600/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec90b936f1074c89465f369f3836fbec4dae394a", + "etherscanUrl": "https://etherscan.io/address/0xec90b936f1074c89465f369f3836fbec4dae394a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1058688", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rizu", + "displayName": "Crypto Exchange", + "fid": 1058688, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeca43212a58fc52e106a8e0d525a1fbcfe2b0a3c", + "etherscanUrl": "https://etherscan.io/address/0xeca43212a58fc52e106a8e0d525a1fbcfe2b0a3c", + "xHandle": "ruzwan_ali007", + "xUrl": "https://twitter.com/ruzwan_ali007", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_980539", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quennamartina", + "displayName": "QuennaMartina", + "fid": 980539, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b2e0b77-4bfd-4641-bb79-be99e4c8b300/rectcrop3", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe34eaf95524e3e0a59e908fd29ac6c007e3a345a", + "etherscanUrl": "https://etherscan.io/address/0xe34eaf95524e3e0a59e908fd29ac6c007e3a345a", + "xHandle": "agrestoavery", + "xUrl": "https://twitter.com/agrestoavery", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927050", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoeooo", + "displayName": "Baker", + "fid": 927050, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02fa3d8b-ff66-4290-89f5-576a66ac9f00/original", + "followers": 10, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57df1df6558b774116bda24636035d96e12a52f0", + "etherscanUrl": "https://etherscan.io/address/0x57df1df6558b774116bda24636035d96e12a52f0", + "xHandle": "xbox360pablo", + "xUrl": "https://twitter.com/xbox360pablo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1430266", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tedbarnett", + "displayName": "tedbarnett", + "fid": 1430266, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67fce26c-f8a8-43bd-01be-d9f19edb7300/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x436ddb7230a781ab03de7b234efed11d27e5c650", + "etherscanUrl": "https://etherscan.io/address/0x436ddb7230a781ab03de7b234efed11d27e5c650", + "xHandle": "tedbarnett", + "xUrl": "https://twitter.com/tedbarnett", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1431370", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sahel64", + "displayName": "sahel64", + "fid": 1431370, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58782e060c4362a85cbf131a86c9f0016245bd4e", + "etherscanUrl": "https://etherscan.io/address/0x58782e060c4362a85cbf131a86c9f0016245bd4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1424781", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iamon", + "displayName": "iamon", + "fid": 1424781, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59da9a6adc43413d6f2d8d8166b7d4113326f0a0", + "etherscanUrl": "https://etherscan.io/address/0x59da9a6adc43413d6f2d8d8166b7d4113326f0a0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1393754", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kainat0o", + "displayName": "kainat0o", + "fid": 1393754, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f06cce0b-9cac-4e00-bbba-ad9c3b69a800/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad591e6cb743e0ff37e878a5b85166562942f334", + "etherscanUrl": "https://etherscan.io/address/0xad591e6cb743e0ff37e878a5b85166562942f334", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1378888", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gsoss", + "displayName": "gsoss", + "fid": 1378888, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75d05b188d48a9c647d478a28103bba1231575a5", + "etherscanUrl": "https://etherscan.io/address/0x75d05b188d48a9c647d478a28103bba1231575a5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1351989", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdrazumiah14", + "displayName": "MdRazuMiah14", + "fid": 1351989, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b5b80e1-3c04-48ca-1a71-af84becbd100/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d515438bc1263795234bf96630d61f7d55e9eda", + "etherscanUrl": "https://etherscan.io/address/0x6d515438bc1263795234bf96630d61f7d55e9eda", + "xHandle": "mdrazumiah14", + "xUrl": "https://twitter.com/mdrazumiah14", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1286530", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pompiliu70", + "displayName": "Pompiliu", + "fid": 1286530, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/591435cd-5d1a-4a78-a055-f148a2c31b00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a3cb5b0c219a1a98cc335fd68466f5a72647217", + "etherscanUrl": "https://etherscan.io/address/0x2a3cb5b0c219a1a98cc335fd68466f5a72647217", + "xHandle": "pompiliu70", + "xUrl": "https://twitter.com/pompiliu70", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1187867", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kingmaverick", + "displayName": "Dear God", + "fid": 1187867, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/459d82b0-9af4-4d74-6538-043f874aed00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe3c23d6f3c703ccd5f9a9779affed03f6e822b6e", + "etherscanUrl": "https://etherscan.io/address/0xe3c23d6f3c703ccd5f9a9779affed03f6e822b6e", + "xHandle": "kingmaverick77", + "xUrl": "https://twitter.com/kingmaverick77", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1235856", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rockygep", + "displayName": "Rocky Balboa", + "fid": 1235856, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xefe0c0d8269f6d8122d0a810990c2800ac246db1", + "etherscanUrl": "https://etherscan.io/address/0xefe0c0d8269f6d8122d0a810990c2800ac246db1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1205970", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stromedaddy", + "displayName": "Ross Strome", + "fid": 1205970, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4423c40e-41ea-42cd-42af-4e715d243200/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1b9c413eac85b8ccc59c7dcc113eb66f8588786e", + "etherscanUrl": "https://etherscan.io/address/0x1b9c413eac85b8ccc59c7dcc113eb66f8588786e", + "xHandle": "ross_strome", + "xUrl": "https://twitter.com/ross_strome", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131524", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "legend47", + "displayName": "Idris Ishaq", + "fid": 1131524, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aba16f57-1805-444b-9069-ae47d3009600/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d2f7302692eb2443effbc1e806e8195d57143c8", + "etherscanUrl": "https://etherscan.io/address/0x2d2f7302692eb2443effbc1e806e8195d57143c8", + "xHandle": "idrisishaq47", + "xUrl": "https://twitter.com/idrisishaq47", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1191032", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wahedul11", + "displayName": "MD. Waheddul Islam Chowdhury", + "fid": 1191032, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bc237fa-8797-4b51-5d34-04cdc7e09f00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2eff1db52c3df8a9b27bc3d09ffef31f664d6356", + "etherscanUrl": "https://etherscan.io/address/0x2eff1db52c3df8a9b27bc3d09ffef31f664d6356", + "xHandle": "waheddul43086", + "xUrl": "https://twitter.com/waheddul43086", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639250", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "uma556", + "displayName": "Uma", + "fid": 639250, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/786b1a14-6e7d-4902-5539-21d9ab99e800/rectcrop3", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x296e390e9ba8fcad0eb0ca48c292efc4410ffc17", + "etherscanUrl": "https://etherscan.io/address/0x296e390e9ba8fcad0eb0ca48c292efc4410ffc17", + "xHandle": "fxotv87799261", + "xUrl": "https://twitter.com/fxotv87799261", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1067739", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "saipuljurnot", + "displayName": "erxbl.base.eth", + "fid": 1067739, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bfddd8b9-de01-4e46-5649-4e2c7fb89d00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6bcf73001e396bf3ba34544add0715b4a36e045", + "etherscanUrl": "https://etherscan.io/address/0xa6bcf73001e396bf3ba34544add0715b4a36e045", + "xHandle": "saipuljurnot", + "xUrl": "https://twitter.com/saipuljurnot", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_925298", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xssu", + "displayName": "Usbxhen", + "fid": 925298, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be818f66-1ec6-402d-b431-a4766cdff100/rectcrop3", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a784233ff59599752f7c1ba4560ced0c08c7daa", + "etherscanUrl": "https://etherscan.io/address/0x1a784233ff59599752f7c1ba4560ced0c08c7daa", + "xHandle": "theochlosi92686", + "xUrl": "https://twitter.com/theochlosi92686", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_917002", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohammed007", + "displayName": "Mohammad Hassani", + "fid": 917002, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be50f95f-7d22-4bc2-f27f-7afc795f5e00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ad0c3aa5125f155f63680a3c39dc5a2b1603b3f", + "etherscanUrl": "https://etherscan.io/address/0x4ad0c3aa5125f155f63680a3c39dc5a2b1603b3f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927114", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wyattfgg", + "displayName": "Evans", + "fid": 927114, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e29624f7-7d3d-40f9-ef7b-815912066a00/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26402c90d9a4055fb9199a75802e46ae43c6dfb0", + "etherscanUrl": "https://etherscan.io/address/0x26402c90d9a4055fb9199a75802e46ae43c6dfb0", + "xHandle": "krislindona", + "xUrl": "https://twitter.com/krislindona", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_416607", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "feeksus", + "displayName": "David Hetz", + "fid": 416607, + "pfpUrl": "https://i.imgur.com/riThJGw.jpg", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a762216b16266aa0d77218294c97890ad4536ec", + "etherscanUrl": "https://etherscan.io/address/0x1a762216b16266aa0d77218294c97890ad4536ec", + "xHandle": "davidhetz", + "xUrl": "https://twitter.com/davidhetz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118000", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "juswithit", + "displayName": "Jusbreal", + "fid": 1118000, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37dbac75-2bc9-4b69-16d9-686e59f5d400/original", + "followers": 9, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb3b2039befdbd2010f14cebf0c7aba03b8b1e577", + "etherscanUrl": "https://etherscan.io/address/0xb3b2039befdbd2010f14cebf0c7aba03b8b1e577", + "xHandle": "jusbreal1", + "xUrl": "https://twitter.com/jusbreal1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_425374", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kansei", + "displayName": "kansei", + "fid": 425374, + "pfpUrl": "https://i.imgur.com/dLBSFBI.jpg", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafd2ca040a4cae816934b541039c27e76aadfebe", + "etherscanUrl": "https://etherscan.io/address/0xafd2ca040a4cae816934b541039c27e76aadfebe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_858198", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "temporaryplan", + "displayName": "TemporaryPlan", + "fid": 858198, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f5dad7e-3cdb-4988-af05-201fc9897400/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9f6366a6ee7fb87431c4e73dc6e54ed8778b01a", + "etherscanUrl": "https://etherscan.io/address/0xe9f6366a6ee7fb87431c4e73dc6e54ed8778b01a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_880640", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "breathguy", + "displayName": "Breath Guy", + "fid": 880640, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e12fd75-af78-4f0f-582d-cf583f1db300/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50e42ccf13b40f04e36e27ac63419ed25dcc76fe", + "etherscanUrl": "https://etherscan.io/address/0x50e42ccf13b40f04e36e27ac63419ed25dcc76fe", + "xHandle": "breath_guy", + "xUrl": "https://twitter.com/breath_guy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1428928", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tordue33", + "displayName": "tordue33", + "fid": 1428928, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/20daff2b-986c-4c7c-2c5d-be3a22e48700/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0e2415d38c9245bfb6fb80a7c47036e874562e5c", + "etherscanUrl": "https://etherscan.io/address/0x0e2415d38c9245bfb6fb80a7c47036e874562e5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1406411", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dantage", + "displayName": "dantage", + "fid": 1406411, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08bf6a6563b31b4e680b09ad75833a1579624e41", + "etherscanUrl": "https://etherscan.io/address/0x08bf6a6563b31b4e680b09ad75833a1579624e41", + "xHandle": "iam_dani30", + "xUrl": "https://twitter.com/iam_dani30", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1378678", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ramlisese", + "displayName": "ramlisese", + "fid": 1378678, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cded7e0b-c930-4b33-d529-eeeeed25b800/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4da91facde88fc871f6cf9148472ad9c85c90ee7", + "etherscanUrl": "https://etherscan.io/address/0x4da91facde88fc871f6cf9148472ad9c85c90ee7", + "xHandle": "ramli_sese", + "xUrl": "https://twitter.com/ramli_sese", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1373313", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "babyfaye", + "displayName": "babyfaye", + "fid": 1373313, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e3d741e68c16d2fc861c78d7829916168da0547", + "etherscanUrl": "https://etherscan.io/address/0x2e3d741e68c16d2fc861c78d7829916168da0547", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1207701", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sadman782", + "displayName": "emon", + "fid": 1207701, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bbbbaf4-4afa-465f-d384-12fe1f316000/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdae6a4e92548207bddb44bae8389af2100dfcbc9", + "etherscanUrl": "https://etherscan.io/address/0xdae6a4e92548207bddb44bae8389af2100dfcbc9", + "xHandle": "emon25902588052", + "xUrl": "https://twitter.com/emon25902588052", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1181197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kowsher1923", + "displayName": "kowsher ahmmed", + "fid": 1181197, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64a4942c-8706-4b70-8a6f-9f7845f0bb00/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x818782a1243888ad1c28e0b6a0660dfb2cbc79b7", + "etherscanUrl": "https://etherscan.io/address/0x818782a1243888ad1c28e0b6a0660dfb2cbc79b7", + "xHandle": "ahmmedkowsher", + "xUrl": "https://twitter.com/ahmmedkowsher", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1317464", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khamaludeend", + "displayName": "Defidialect", + "fid": 1317464, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ab5f54-80fa-4d43-b56e-45ae024eba00/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa283114bdb4fd4e568350ec9a2cfc81f843fc793", + "etherscanUrl": "https://etherscan.io/address/0xa283114bdb4fd4e568350ec9a2cfc81f843fc793", + "xHandle": "defidialect", + "xUrl": "https://twitter.com/defidialect", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1317075", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mmm0831", + "displayName": "mmm", + "fid": 1317075, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09aee138aeb7b934d69165a5e14f238a8128aa35", + "etherscanUrl": "https://etherscan.io/address/0x09aee138aeb7b934d69165a5e14f238a8128aa35", + "xHandle": "aasdfgsdfggbbh", + "xUrl": "https://twitter.com/aasdfgsdfggbbh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1095401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "robimuarif", + "displayName": "DragonMeme.base.eth", + "fid": 1095401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6d8af78-3e37-434b-c991-830b16634100/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x343b5ce7c8717b9a14507694bf410e7f3b83dbc1", + "etherscanUrl": "https://etherscan.io/address/0x343b5ce7c8717b9a14507694bf410e7f3b83dbc1", + "xHandle": "zainimuh898", + "xUrl": "https://twitter.com/zainimuh898", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926104", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lizs", + "displayName": "哈利路亚", + "fid": 926104, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/20b23681-ea59-4923-ea10-502805691500/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e979ac4553b23466a918b11134e5cd66e6a072e", + "etherscanUrl": "https://etherscan.io/address/0x2e979ac4553b23466a918b11134e5cd66e6a072e", + "xHandle": "lopdamopus26814", + "xUrl": "https://twitter.com/lopdamopus26814", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_925057", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cjiu", + "displayName": "0x黄豆", + "fid": 925057, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87a40e39-6524-48c9-5b13-6903e0533800/rectcrop3", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fb50b35ed1f8061931f6e4b2a420e2052653cc8", + "etherscanUrl": "https://etherscan.io/address/0x5fb50b35ed1f8061931f6e4b2a420e2052653cc8", + "xHandle": "gevohyli1942170", + "xUrl": "https://twitter.com/gevohyli1942170", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_289591", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ppp123", + "displayName": "ppp", + "fid": 289591, + "pfpUrl": "https://i.imgur.com/IzRSNF0.jpg", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x093202f9ee85e577f5a37b4172b21f90f44ff1de", + "etherscanUrl": "https://etherscan.io/address/0x093202f9ee85e577f5a37b4172b21f90f44ff1de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127785", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "master-eth", + "displayName": "Master-Eth", + "fid": 1127785, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1058b886e17bf9d4934764b2c6641af73f43f269", + "etherscanUrl": "https://etherscan.io/address/0x1058b886e17bf9d4934764b2c6641af73f43f269", + "xHandle": "immam999", + "xUrl": "https://twitter.com/immam999", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_924048", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "caoweiwei999", + "displayName": "Burgess Bob", + "fid": 924048, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6e354b0-4fa1-4f14-0181-91376c1c3600/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb408f34d75c5f0113eda5d3cb2b7429c7d4e161", + "etherscanUrl": "https://etherscan.io/address/0xcb408f34d75c5f0113eda5d3cb2b7429c7d4e161", + "xHandle": "gpctw64625935", + "xUrl": "https://twitter.com/gpctw64625935", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930838", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "leottt", + "displayName": "Moore", + "fid": 930838, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff07c6b5-1a04-4461-3d29-7c4fc270a200/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa63c2a7e7574e79b31552cb9f0f5805a3a53f865", + "etherscanUrl": "https://etherscan.io/address/0xa63c2a7e7574e79b31552cb9f0f5805a3a53f865", + "xHandle": "abdewy66", + "xUrl": "https://twitter.com/abdewy66", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930900", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ariazz", + "displayName": "Hill", + "fid": 930900, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bfb74175-b43a-4a20-4c4b-43bf2946a700/original", + "followers": 8, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x599aa60ee288e3ec283f26585e3f14eae40dcc06", + "etherscanUrl": "https://etherscan.io/address/0x599aa60ee288e3ec283f26585e3f14eae40dcc06", + "xHandle": "h3av3n012h3ll", + "xUrl": "https://twitter.com/h3av3n012h3ll", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1392058", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "djoul", + "displayName": "djoul", + "fid": 1392058, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f19c1aa6-f25f-4f5c-ba93-d7cca71c5e00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc1f872439a7972890af7aef76c10f31061bcfa02", + "etherscanUrl": "https://etherscan.io/address/0xc1f872439a7972890af7aef76c10f31061bcfa02", + "xHandle": "djoul45081112", + "xUrl": "https://twitter.com/djoul45081112", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1374174", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "manik38", + "displayName": "manik38", + "fid": 1374174, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f8a1a989dc4903adc7fac8db1a657b3394c62b0", + "etherscanUrl": "https://etherscan.io/address/0x4f8a1a989dc4903adc7fac8db1a657b3394c62b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1370941", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ambazz", + "displayName": "ambazz", + "fid": 1370941, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e8013e1d430f78327dae472101b7138f45042ad", + "etherscanUrl": "https://etherscan.io/address/0x4e8013e1d430f78327dae472101b7138f45042ad", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1350651", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "azogplugawy", + "displayName": "Azog Plugawy", + "fid": 1350651, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a88ccf03-00ca-4727-05a4-33e12c8c9a00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18107db026e6257519f88dda35da6ab1a9c278a9", + "etherscanUrl": "https://etherscan.io/address/0x18107db026e6257519f88dda35da6ab1a9c278a9", + "xHandle": "alyciasalo56903", + "xUrl": "https://twitter.com/alyciasalo56903", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1219542", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ahmadqafari", + "displayName": "ahmadqafari.base.eth", + "fid": 1219542, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d18e24f8-623a-4e7c-2bfb-b4e0d1bdd900/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1b0101e150252764e84bb020d2aa928c5f9fdcd", + "etherscanUrl": "https://etherscan.io/address/0xb1b0101e150252764e84bb020d2aa928c5f9fdcd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1063108", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "carolinerudi", + "displayName": "ERENRUD", + "fid": 1063108, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6c0a27db-5f64-4073-f194-69c932421a00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4aa478d9be996cda0b567166706973b522763536", + "etherscanUrl": "https://etherscan.io/address/0x4aa478d9be996cda0b567166706973b522763536", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1198165", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kidane1221", + "displayName": "Kidu 「☄️G☄️」", + "fid": 1198165, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6db9a99c-0b36-4ffd-3323-501da97f9800/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x941f80636298233ae7b9b1a669f8e8d1d516ee1d", + "etherscanUrl": "https://etherscan.io/address/0x941f80636298233ae7b9b1a669f8e8d1d516ee1d", + "xHandle": "kidanegebr87355", + "xUrl": "https://twitter.com/kidanegebr87355", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1161808", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "falmic", + "displayName": "Falmic", + "fid": 1161808, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x296dd98bb3c08eacc3294d94edbf407401a607f4", + "etherscanUrl": "https://etherscan.io/address/0x296dd98bb3c08eacc3294d94edbf407401a607f4", + "xHandle": "macfal125", + "xUrl": "https://twitter.com/macfal125", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1084343", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdbadimol", + "displayName": "nadimolislamsohe Fardog", + "fid": 1084343, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f748c883-7286-4e37-d908-74e2d9dc7300/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x22ebb94d0ae3a9daa49fdef1fc1c33ca65b5ff16", + "etherscanUrl": "https://etherscan.io/address/0x22ebb94d0ae3a9daa49fdef1fc1c33ca65b5ff16", + "xHandle": "nadimols", + "xUrl": "https://twitter.com/nadimols", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071103", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "984387438", + "displayName": "984387438(Ø,G)", + "fid": 1071103, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27d63a1a-d132-4257-3ccb-72b349808700/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46c3a6dbb40d6bb44aac9474a72bac7c9bc90929", + "etherscanUrl": "https://etherscan.io/address/0x46c3a6dbb40d6bb44aac9474a72bac7c9bc90929", + "xHandle": "984387438", + "xUrl": "https://twitter.com/984387438", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146477", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "starmaufa", + "displayName": "Samantha", + "fid": 1146477, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ee5bc6e-541f-4ec3-671b-dd35bebfc100/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23754d899dd26de778555fea86f913f6b7a2e923", + "etherscanUrl": "https://etherscan.io/address/0x23754d899dd26de778555fea86f913f6b7a2e923", + "xHandle": "starmmaufa", + "xUrl": "https://twitter.com/starmmaufa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146621", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "salim27", + "displayName": "MD Selim Reza", + "fid": 1146621, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d430d7ce-b50c-4777-cb7e-aed3be841c00/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96c178578a66013d19edc9e8dd40cf3b58b5f116", + "etherscanUrl": "https://etherscan.io/address/0x96c178578a66013d19edc9e8dd40cf3b58b5f116", + "xHandle": "hi431178", + "xUrl": "https://twitter.com/hi431178", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141363", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stonimals", + "displayName": "Stonimals", + "fid": 1141363, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d886e695-6e38-48e5-6a8f-7d0f9ded8300/original", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb365ae5a015f1dfcd693307aabc4bf52f4a5c500", + "etherscanUrl": "https://etherscan.io/address/0xb365ae5a015f1dfcd693307aabc4bf52f4a5c500", + "xHandle": "stonimals", + "xUrl": "https://twitter.com/stonimals", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1087916", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "demianmuro", + "displayName": "Demian Muro", + "fid": 1087916, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fea1bc06-a28b-4c52-fe65-8f1d53622800/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa4bcc471f55c5f92dbef464f3e19914d4c70e8c", + "etherscanUrl": "https://etherscan.io/address/0xfa4bcc471f55c5f92dbef464f3e19914d4c70e8c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089073", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aremothealpha", + "displayName": "AREMÓ", + "fid": 1089073, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfe565d8-b201-4069-4bf0-cb6afd584d00/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09f578adac200cfdcd30ad51436a74123bfbe823", + "etherscanUrl": "https://etherscan.io/address/0x09f578adac200cfdcd30ad51436a74123bfbe823", + "xHandle": "aremothealpha", + "xUrl": "https://twitter.com/aremothealpha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1104666", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blessedinnocent", + "displayName": "Innocent Agbor", + "fid": 1104666, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41e98fba-7872-44aa-65b2-1367173ec700/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa46e0dcfe681df02cf96aa4cc34e727d01ad7e68", + "etherscanUrl": "https://etherscan.io/address/0xa46e0dcfe681df02cf96aa4cc34e727d01ad7e68", + "xHandle": "iagbor90339", + "xUrl": "https://twitter.com/iagbor90339", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926812", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "auroraooooo", + "displayName": "Clark", + "fid": 926812, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/994faf15-a4e9-41c8-3e94-dc8a48ff7f00/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8fbc12d80769d9ef9124887884f6107fc837cf11", + "etherscanUrl": "https://etherscan.io/address/0x8fbc12d80769d9ef9124887884f6107fc837cf11", + "xHandle": "alboslahmarine", + "xUrl": "https://twitter.com/alboslahmarine", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_909843", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oliverhubbard", + "displayName": "OliverHubbard", + "fid": 909843, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d53b4d9-56f3-40ff-1e99-341386b0c500/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3210e40985d620cfcc2085caff105609e8270879", + "etherscanUrl": "https://etherscan.io/address/0x3210e40985d620cfcc2085caff105609e8270879", + "xHandle": "ekowoo", + "xUrl": "https://twitter.com/ekowoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_904177", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gilesgusa", + "displayName": "GilesGusa", + "fid": 904177, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/875d6b46-5ce1-4f40-d989-c5e385e4ed00/rectcrop3", + "followers": 7, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee85256cd905ad88e004262717f77899b1c4ad2c", + "etherscanUrl": "https://etherscan.io/address/0xee85256cd905ad88e004262717f77899b1c4ad2c", + "xHandle": "askrubel007", + "xUrl": "https://twitter.com/askrubel007", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1421244", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "annywar", + "displayName": "annywar", + "fid": 1421244, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02ee13650e59178afe724f28ef1d288f1a6a7b64", + "etherscanUrl": "https://etherscan.io/address/0x02ee13650e59178afe724f28ef1d288f1a6a7b64", + "xHandle": "aniebietekong4", + "xUrl": "https://twitter.com/aniebietekong4", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1372164", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fidelight", + "displayName": "fidelight", + "fid": 1372164, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d4c566a-ad97-49ba-3a20-72d7b97b2f00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb36dc31fa63d28739a7bedca65ede9a8106583af", + "etherscanUrl": "https://etherscan.io/address/0xb36dc31fa63d28739a7bedca65ede9a8106583af", + "xHandle": "fidelismat50205", + "xUrl": "https://twitter.com/fidelismat50205", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1383413", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "daroccitoficial", + "displayName": "daroccitoficial", + "fid": 1383413, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed821cf5-bc21-4341-46f4-f336042db200/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeedbb3e1407ed59e27a8e1985d6333c6071ae537", + "etherscanUrl": "https://etherscan.io/address/0xeedbb3e1407ed59e27a8e1985d6333c6071ae537", + "xHandle": "diegaoalexis", + "xUrl": "https://twitter.com/diegaoalexis", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1370023", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dantsuntsu", + "displayName": "dantsuntsu", + "fid": 1370023, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x544d31bf26d471f70d44a5119368deaf3ab643b2", + "etherscanUrl": "https://etherscan.io/address/0x544d31bf26d471f70d44a5119368deaf3ab643b2", + "xHandle": "dantsuntsu1433", + "xUrl": "https://twitter.com/dantsuntsu1433", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1369163", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ibm12", + "displayName": "ibm12", + "fid": 1369163, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb9b72b4-a63d-43e4-e299-45e9bc4c8b00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47e3afc5c53cd2bf2b9e8a971b42ea5623dcf1ca", + "etherscanUrl": "https://etherscan.io/address/0x47e3afc5c53cd2bf2b9e8a971b42ea5623dcf1ca", + "xHandle": "ibmwaila", + "xUrl": "https://twitter.com/ibmwaila", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1159778", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dankm0m", + "displayName": "Katt🪼", + "fid": 1159778, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55cf8132-b9f9-4de3-a76f-9628f5986700/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5741b2eda4864612a0132eff7a3ec81f03dd2041", + "etherscanUrl": "https://etherscan.io/address/0x5741b2eda4864612a0132eff7a3ec81f03dd2041", + "xHandle": "dankm0m", + "xUrl": "https://twitter.com/dankm0m", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1306745", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "luthero", + "displayName": "Luthero", + "fid": 1306745, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52e8d290c2c02a45dd70d004a22e60d95a1a2b5d", + "etherscanUrl": "https://etherscan.io/address/0x52e8d290c2c02a45dd70d004a22e60d95a1a2b5d", + "xHandle": "luthero2022", + "xUrl": "https://twitter.com/luthero2022", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1229549", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zidy79", + "displayName": "Zidy79", + "fid": 1229549, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4972cfc052462c80f2a5094aea886cab64f37a1", + "etherscanUrl": "https://etherscan.io/address/0xf4972cfc052462c80f2a5094aea886cab64f37a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1034036", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "higff", + "displayName": "Monkey Boking", + "fid": 1034036, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5b700296-dd1a-4b8f-bb40-bc7cb3749b00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaae00f7421f7e4f4faa717f883ca8646f789db9d", + "etherscanUrl": "https://etherscan.io/address/0xaae00f7421f7e4f4faa717f883ca8646f789db9d", + "xHandle": "gigi6354539829", + "xUrl": "https://twitter.com/gigi6354539829", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1198129", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "toukir45", + "displayName": "toukir", + "fid": 1198129, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c7020307-670e-4b0d-f2de-662965bcf700/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10639ef45a012a70c0800477413e13d81cc961ec", + "etherscanUrl": "https://etherscan.io/address/0x10639ef45a012a70c0800477413e13d81cc961ec", + "xHandle": "arifulislamtou", + "xUrl": "https://twitter.com/arifulislamtou", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639308", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wendy893", + "displayName": "\u0003Wendy9652", + "fid": 639308, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92ea43a6-b592-4ec0-625d-04eb0e73dd00/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47d682277b3fec95c8a580e03a823c273ee747a9", + "etherscanUrl": "https://etherscan.io/address/0x47d682277b3fec95c8a580e03a823c273ee747a9", + "xHandle": "tsbae49262731", + "xUrl": "https://twitter.com/tsbae49262731", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1175913", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "smartskiper", + "displayName": "0xskiper.base.eth", + "fid": 1175913, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3cf88f40-2e3b-4a6f-0818-eaa30a60cc00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36ee9677133ab92e576992474efb5dba1771de99", + "etherscanUrl": "https://etherscan.io/address/0x36ee9677133ab92e576992474efb5dba1771de99", + "xHandle": "_smartskiper_", + "xUrl": "https://twitter.com/_smartskiper_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1165255", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chaze23", + "displayName": "Efoli Fred", + "fid": 1165255, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbe75e6a19354945da871390b9b73a48a471239ad", + "etherscanUrl": "https://etherscan.io/address/0xbe75e6a19354945da871390b9b73a48a471239ad", + "xHandle": "chaze_d_king", + "xUrl": "https://twitter.com/chaze_d_king", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072852", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "heyhoney22", + "displayName": "heyhoney2(Ø,G)", + "fid": 1072852, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cce65a26-515f-41a1-c1ac-c3ba770d6b00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fd3010bb57185d331d367fcbee12052314e0624", + "etherscanUrl": "https://etherscan.io/address/0x3fd3010bb57185d331d367fcbee12052314e0624", + "xHandle": "heyhoney22", + "xUrl": "https://twitter.com/heyhoney22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071286", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andixxxxx", + "displayName": "andi(Ø,G)", + "fid": 1071286, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6c8b65c-22f8-4c7a-4c4e-2a14f8f31a00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06bee9aba5bb09acf231f4d0d358508bc3c3a2a6", + "etherscanUrl": "https://etherscan.io/address/0x06bee9aba5bb09acf231f4d0d358508bc3c3a2a6", + "xHandle": "andixxxxx", + "xUrl": "https://twitter.com/andixxxxx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071837", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "janlemuelreodiq", + "displayName": "jan lemuel reodique(Ø,G)", + "fid": 1071837, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/10361386-2507-4861-f4fe-6540688be900/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x194346bbc8db81783fa8474cec86f7b24f34401d", + "etherscanUrl": "https://etherscan.io/address/0x194346bbc8db81783fa8474cec86f7b24f34401d", + "xHandle": "janlemuelreodiq", + "xUrl": "https://twitter.com/janlemuelreodiq", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1071112", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ryannbody", + "displayName": "I don't care(Ø,G)", + "fid": 1071112, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/57e4dc3e-eea1-4d20-3c05-5c072e4f0f00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x227fc0047e37490b579f426bea63d61ee695a02f", + "etherscanUrl": "https://etherscan.io/address/0x227fc0047e37490b579f426bea63d61ee695a02f", + "xHandle": "ryannbody", + "xUrl": "https://twitter.com/ryannbody", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145731", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bob27.eth", + "displayName": "Bobie", + "fid": 1145731, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed1c094e-ce6c-49dc-0bba-0980e5526600/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9483a7aa90a55a0469f3e9d115842605a6b7e66c", + "etherscanUrl": "https://etherscan.io/address/0x9483a7aa90a55a0469f3e9d115842605a6b7e66c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142851", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cazza", + "displayName": "Caroline", + "fid": 1142851, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdca29ec777978e9c61913e49c4400f26211b6827", + "etherscanUrl": "https://etherscan.io/address/0xdca29ec777978e9c61913e49c4400f26211b6827", + "xHandle": "glesgacar", + "xUrl": "https://twitter.com/glesgacar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132031", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "leoxbt", + "displayName": "Leo", + "fid": 1132031, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b82d7604-472b-4fc6-40de-6e0ee87b2800/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d2322e89544157d68c3f9a4560f3e66273e83dd", + "etherscanUrl": "https://etherscan.io/address/0x8d2322e89544157d68c3f9a4560f3e66273e83dd", + "xHandle": "leo__xbt", + "xUrl": "https://twitter.com/leo__xbt", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139448", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yohkingbatch", + "displayName": "Yoh.eth✨", + "fid": 1139448, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81b2ca39-6bb7-4da2-4988-234a9bfebe00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4162a1e5715873cf4bc22412f9324da0e4f48360", + "etherscanUrl": "https://etherscan.io/address/0x4162a1e5715873cf4bc22412f9324da0e4f48360", + "xHandle": "yohanaking2021", + "xUrl": "https://twitter.com/yohanaking2021", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927124", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "leott", + "displayName": "Adams", + "fid": 927124, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17ae143f-c675-4f73-ccf0-5a4f62599a00/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x201a303661d1f29c344c2a7605bb1c5a49ca55b6", + "etherscanUrl": "https://etherscan.io/address/0x201a303661d1f29c344c2a7605bb1c5a49ca55b6", + "xHandle": "oscar_a_458", + "xUrl": "https://twitter.com/oscar_a_458", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_468885", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shichuan", + "displayName": "Shizuka", + "fid": 468885, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bdc61e1-4368-4873-6e54-ccdd72f33300/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0bc48af6e6e54305405a501eb63c3484192314f3", + "etherscanUrl": "https://etherscan.io/address/0x0bc48af6e6e54305405a501eb63c3484192314f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930901", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sebastianxx", + "displayName": "Robinson", + "fid": 930901, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93fe7d1a-6661-4eed-1626-cbdfcaa4a300/original", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa89ad7b709ba4f8b5f92b2f4e0657c83c4d506fb", + "etherscanUrl": "https://etherscan.io/address/0xa89ad7b709ba4f8b5f92b2f4e0657c83c4d506fb", + "xHandle": "newusername101", + "xUrl": "https://twitter.com/newusername101", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_907508", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fuquhb75l", + "displayName": "fuquhb75l", + "fid": 907508, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41ec7b55-06df-4a96-2064-fea3a03d6100/rectcrop3", + "followers": 6, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe898440fa7436580355f5c96a6b422a48db88933", + "etherscanUrl": "https://etherscan.io/address/0xe898440fa7436580355f5c96a6b422a48db88933", + "xHandle": "inoekyungarra", + "xUrl": "https://twitter.com/inoekyungarra", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_825489", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sonic4mod", + "displayName": "webbydev1", + "fid": 825489, + "pfpUrl": "https://avatars.steamstatic.com/967ff648f283f83728ac1b263d83cb0290a14f63_full.jpg", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a2a665e638474499fae88318c44c6533ae2465f", + "etherscanUrl": "https://etherscan.io/address/0x7a2a665e638474499fae88318c44c6533ae2465f", + "xHandle": "dania_howe18065", + "xUrl": "https://twitter.com/dania_howe18065", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_422150", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jvmp", + "displayName": "Prima Jarot Rama", + "fid": 422150, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/425fec69-ad6e-4e70-4fff-f5fcbba31700/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e656602d8bb32c7de3ca8328ecc57acb6af99ca", + "etherscanUrl": "https://etherscan.io/address/0x8e656602d8bb32c7de3ca8328ecc57acb6af99ca", + "xHandle": "itsmrprime", + "xUrl": "https://twitter.com/itsmrprime", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1422119", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abti", + "displayName": "abti", + "fid": 1422119, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf55693dc8fba772de9c57cba29bb5c7be9135b4b", + "etherscanUrl": "https://etherscan.io/address/0xf55693dc8fba772de9c57cba29bb5c7be9135b4b", + "xHandle": "abtin1364", + "xUrl": "https://twitter.com/abtin1364", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1377807", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ravebear", + "displayName": "ravebear", + "fid": 1377807, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f167b75f-3af9-46ca-0cdd-4082c6751a00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbca0c443769c0a3fadaefcc850c3082cc5caf85c", + "etherscanUrl": "https://etherscan.io/address/0xbca0c443769c0a3fadaefcc850c3082cc5caf85c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1366337", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dani25", + "displayName": "dani25", + "fid": 1366337, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9868dbd1e69b865e7a1c93afa9b82cc75dce52ed", + "etherscanUrl": "https://etherscan.io/address/0x9868dbd1e69b865e7a1c93afa9b82cc75dce52ed", + "xHandle": "dorapuki", + "xUrl": "https://twitter.com/dorapuki", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1336748", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hempbiscuit", + "displayName": "HempBiscuit", + "fid": 1336748, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5cfb9138-7640-4101-c9b0-ab65c1c88d00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb144c2a5e0e11cafc3a78d2c82396ab44acc5287", + "etherscanUrl": "https://etherscan.io/address/0xb144c2a5e0e11cafc3a78d2c82396ab44acc5287", + "xHandle": "hempbiscuit", + "xUrl": "https://twitter.com/hempbiscuit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328176", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mettler531", + "displayName": "Mettler531cbid.base.eth", + "fid": 1328176, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdab6da9-8a4d-4170-1f98-d85af7db7f00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad1de84a5a86b583ca2a8cb9936e41b2e05c1dc4", + "etherscanUrl": "https://etherscan.io/address/0xad1de84a5a86b583ca2a8cb9936e41b2e05c1dc4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140774", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xirzechs", + "displayName": "Xir", + "fid": 1140774, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/447de993-b148-4211-8b16-be1bb74d1300/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc812caa7545c4b45bfb4085f3144afd2dbbf7a8c", + "etherscanUrl": "https://etherscan.io/address/0xc812caa7545c4b45bfb4085f3144afd2dbbf7a8c", + "xHandle": "xirzechs", + "xUrl": "https://twitter.com/xirzechs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1206211", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aliibakh", + "displayName": "Ali Bakhtiar", + "fid": 1206211, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x362b3efdd632da69af86a17c052562e551765601", + "etherscanUrl": "https://etherscan.io/address/0x362b3efdd632da69af86a17c052562e551765601", + "xHandle": "aliibakh", + "xUrl": "https://twitter.com/aliibakh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1192871", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "binatus", + "displayName": "Peterson Binaebi", + "fid": 1192871, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63170d5d-592c-43f4-32c3-cb339d77ce00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a1f1db851cbd3f90f88a14a9c2026d68635b4ff", + "etherscanUrl": "https://etherscan.io/address/0x5a1f1db851cbd3f90f88a14a9c2026d68635b4ff", + "xHandle": "binatus7", + "xUrl": "https://twitter.com/binatus7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097720", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ha12vns1", + "displayName": "Harish chandra verma", + "fid": 1097720, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9308483c-da25-45c4-7315-a0d757824e00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x709206e96214333ad794456d23c3aa88c072558c", + "etherscanUrl": "https://etherscan.io/address/0x709206e96214333ad794456d23c3aa88c072558c", + "xHandle": "harishverma99", + "xUrl": "https://twitter.com/harishverma99", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190529", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "timmymiles21", + "displayName": "TimmyMiles21", + "fid": 1190529, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x076230d8131b6561d5b36d7a8549d2aa56d99d7f", + "etherscanUrl": "https://etherscan.io/address/0x076230d8131b6561d5b36d7a8549d2aa56d99d7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156691", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "baimthemightguy", + "displayName": "Babang07361817", + "fid": 1156691, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a3aa13ce-cb02-4344-e225-224e86b8a000/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x404d88454a257444fccfd20ce7a6a20d966cdf8e", + "etherscanUrl": "https://etherscan.io/address/0x404d88454a257444fccfd20ce7a6a20d966cdf8e", + "xHandle": "babang07361817", + "xUrl": "https://twitter.com/babang07361817", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639622", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "brandon598", + "displayName": "\u0003Brandon", + "fid": 639622, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/752ff197-8f81-4ff7-fa6e-032c3d0c0300/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51108d56d44d7f5e5ca929de8071d29d055959f5", + "etherscanUrl": "https://etherscan.io/address/0x51108d56d44d7f5e5ca929de8071d29d055959f5", + "xHandle": "cjatl84949337", + "xUrl": "https://twitter.com/cjatl84949337", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1157856", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adekurnia357", + "displayName": "Ade Kurnia", + "fid": 1157856, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/089cc94d-f155-4d03-6e6c-994162b33000/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48f2e7d7ba5dcdb4d1b2f5f2b06b98c00f384ae2", + "etherscanUrl": "https://etherscan.io/address/0x48f2e7d7ba5dcdb4d1b2f5f2b06b98c00f384ae2", + "xHandle": "adekurnia77777", + "xUrl": "https://twitter.com/adekurnia77777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143661", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "theyellowmogul", + "displayName": "The Yellow Mogul", + "fid": 1143661, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0426f05e-7643-44c3-4954-19615a528500/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc986e7c264733ec12d5e7974d575b2b7a678094e", + "etherscanUrl": "https://etherscan.io/address/0xc986e7c264733ec12d5e7974d575b2b7a678094e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143492", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mousta", + "displayName": "Darkmfer", + "fid": 1143492, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2455c8d7-2cac-46d9-3da2-a337af375000/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec4b0875d363c9fa020bf25d8abbd88df789d9c2", + "etherscanUrl": "https://etherscan.io/address/0xec4b0875d363c9fa020bf25d8abbd88df789d9c2", + "xHandle": "steve_yahya", + "xUrl": "https://twitter.com/steve_yahya", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_437997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "oliverd", + "displayName": "OliverD", + "fid": 437997, + "pfpUrl": "https://i.imgur.com/lapH2XZ.jpg", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x543ea5d7b617bdb4c735d7fd810fd9ff94b2b491", + "etherscanUrl": "https://etherscan.io/address/0x543ea5d7b617bdb4c735d7fd810fd9ff94b2b491", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1102914", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chinest", + "displayName": "chinest", + "fid": 1102914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3c3525a5787496917dfe279c673eaae2fb7ee53", + "etherscanUrl": "https://etherscan.io/address/0xd3c3525a5787496917dfe279c673eaae2fb7ee53", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927004", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoeyaaa", + "displayName": "Ramirez", + "fid": 927004, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52436d0c-bfb4-442a-ccf6-f28ee9bdd300/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a6224b720716fd95bd7ddae2b594d08182fb4b2", + "etherscanUrl": "https://etherscan.io/address/0x9a6224b720716fd95bd7ddae2b594d08182fb4b2", + "xHandle": "marigsabra", + "xUrl": "https://twitter.com/marigsabra", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930839", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "eliasyy", + "displayName": "Martinez", + "fid": 930839, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06240098-58a8-40b3-4125-05fcaaa9a500/original", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x247e21a2fccc444758f562d94f6710a3dbbb08ef", + "etherscanUrl": "https://etherscan.io/address/0x247e21a2fccc444758f562d94f6710a3dbbb08ef", + "xHandle": "manishanker591", + "xUrl": "https://twitter.com/manishanker591", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_910489", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wendellwalkley", + "displayName": "WendellWalkley", + "fid": 910489, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e54d9844-2071-46e4-1879-a87265be1500/rectcrop3", + "followers": 5, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1bbec4150f0c6815ffa2deb53e76bdd5523b2a9", + "etherscanUrl": "https://etherscan.io/address/0xe1bbec4150f0c6815ffa2deb53e76bdd5523b2a9", + "xHandle": "djfabioa", + "xUrl": "https://twitter.com/djfabioa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_896883", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lalconis", + "displayName": "Techoff", + "fid": 896883, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5c2742c-a403-428a-7abc-38c5da5e3a00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3bca19f73568acc308fa18df1cb5f6e4493b44e0", + "etherscanUrl": "https://etherscan.io/address/0x3bca19f73568acc308fa18df1cb5f6e4493b44e0", + "xHandle": "lalconisnft", + "xUrl": "https://twitter.com/lalconisnft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1402924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alchemyvision", + "displayName": "alchemyvision", + "fid": 1402924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be02676d-56da-4ac3-d0af-ebd4dad88600/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd7bcf1e2165bf90546c45fdf1f5a50998d155f8", + "etherscanUrl": "https://etherscan.io/address/0xcd7bcf1e2165bf90546c45fdf1f5a50998d155f8", + "xHandle": "maryam828849", + "xUrl": "https://twitter.com/maryam828849", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156372", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xnofomoclub", + "displayName": "nofomoclub", + "fid": 1156372, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23642cd0-3985-43d3-602b-393a15ba6400/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x459934174cf43af6afa0b50da3db498d9782d4a3", + "etherscanUrl": "https://etherscan.io/address/0x459934174cf43af6afa0b50da3db498d9782d4a3", + "xHandle": "0xnofomoclub", + "xUrl": "https://twitter.com/0xnofomoclub", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1363184", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bartekxbase", + "displayName": "bartekxbase", + "fid": 1363184, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0091aefb-9596-4d23-2afd-9c22135f6100/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb29d5576dc139ff5182ddf41f35a5d9b096159d", + "etherscanUrl": "https://etherscan.io/address/0xbb29d5576dc139ff5182ddf41f35a5d9b096159d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1362910", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "truncus", + "displayName": "truncus", + "fid": 1362910, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x734e316c106c073b3462effaa57ed4c0661ac634", + "etherscanUrl": "https://etherscan.io/address/0x734e316c106c073b3462effaa57ed4c0661ac634", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1362178", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rowt3r", + "displayName": "rowt3r", + "fid": 1362178, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/283d8d05-c46a-4346-3007-f16c41673400/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5fc9f27e6015061c20bc2d53bec9c12868f59f0", + "etherscanUrl": "https://etherscan.io/address/0xc5fc9f27e6015061c20bc2d53bec9c12868f59f0", + "xHandle": "core_wel", + "xUrl": "https://twitter.com/core_wel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1351059", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marux", + "displayName": "marux", + "fid": 1351059, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa43e513e24c844f8a1fc8a7bc5a11bd9b35ba7d2", + "etherscanUrl": "https://etherscan.io/address/0xa43e513e24c844f8a1fc8a7bc5a11bd9b35ba7d2", + "xHandle": "omarfarouqoo7", + "xUrl": "https://twitter.com/omarfarouqoo7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1350630", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shahid6999", + "displayName": "shahid6999", + "fid": 1350630, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2eed30f1-858a-48e9-4e2d-c6b268f96d00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8ef79120f3cd471f59249b72e9a43357d6e5c2c", + "etherscanUrl": "https://etherscan.io/address/0xe8ef79120f3cd471f59249b72e9a43357d6e5c2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1312321", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "waldiyanto19", + "displayName": "Waldiyanto19", + "fid": 1312321, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0d316d4-52f4-4133-2c12-daba9ad0a700/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x995c8d65f9aed87dffaf73741cec616f4ac9bf52", + "etherscanUrl": "https://etherscan.io/address/0x995c8d65f9aed87dffaf73741cec616f4ac9bf52", + "xHandle": "putra010319", + "xUrl": "https://twitter.com/putra010319", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1316814", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cryptofuturo5", + "displayName": "Cryptofuturo5", + "fid": 1316814, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e4f97ab-1ca3-4c2e-df94-f68ec1a8fb00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12007e57450b99d81d9986d59adc53615e866682", + "etherscanUrl": "https://etherscan.io/address/0x12007e57450b99d81d9986d59adc53615e866682", + "xHandle": "thiagocrypto6", + "xUrl": "https://twitter.com/thiagocrypto6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_978434", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "attajirie", + "displayName": "Zaharaddini Usman", + "fid": 978434, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/022ad906-a6b5-4e36-3b7d-8cde853c7200/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11cf749559f977fd7a8283f04986526d11254c09", + "etherscanUrl": "https://etherscan.io/address/0x11cf749559f977fd7a8283f04986526d11254c09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1211754", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lagasadl", + "displayName": "Donald L", + "fid": 1211754, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7786fce2-fa1a-4774-44ef-80ed416f7a00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9edffa93a306692c25d297fdc84591fac9434a6e", + "etherscanUrl": "https://etherscan.io/address/0x9edffa93a306692c25d297fdc84591fac9434a6e", + "xHandle": "donaldl10154546", + "xUrl": "https://twitter.com/donaldl10154546", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1176845", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dywura02", + "displayName": "Adediwura Ifemide", + "fid": 1176845, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fee0decd-d3a5-48fc-337c-5ca1183b2700/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2591b604eb9178ced4da567d03cc8a609620f97", + "etherscanUrl": "https://etherscan.io/address/0xc2591b604eb9178ced4da567d03cc8a609620f97", + "xHandle": "solacekwin", + "xUrl": "https://twitter.com/solacekwin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1161417", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khodaparastan", + "displayName": "Mohammad", + "fid": 1161417, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1a23378e66333763ddd3b9ee83c5a2a3d0ff6122", + "etherscanUrl": "https://etherscan.io/address/0x1a23378e66333763ddd3b9ee83c5a2a3d0ff6122", + "xHandle": "khodaparastan", + "xUrl": "https://twitter.com/khodaparastan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1164004", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "olawale1243", + "displayName": "olawale1243", + "fid": 1164004, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71332d8c-5b7f-4d11-1c51-284b2d7da700/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72380efc82263a0e4deb8306d73974be2ffbb753", + "etherscanUrl": "https://etherscan.io/address/0x72380efc82263a0e4deb8306d73974be2ffbb753", + "xHandle": "jbleesed12884", + "xUrl": "https://twitter.com/jbleesed12884", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156300", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "khalilabdul221", + "displayName": "Phyto_future", + "fid": 1156300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0351a5be-a59b-4661-1e7c-c599e213aa00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb21fde671e2483fa3dabc2dc6534c07e3c00a6fb", + "etherscanUrl": "https://etherscan.io/address/0xb21fde671e2483fa3dabc2dc6534c07e3c00a6fb", + "xHandle": "khalil_abdulah0", + "xUrl": "https://twitter.com/khalil_abdulah0", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044687", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "largemarge", + "displayName": "Large Marge", + "fid": 1044687, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/adf37564-1406-4d3f-44f3-81f4fc31bc00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbca0765c452777a5fa62c82a26550d6520406f4e", + "etherscanUrl": "https://etherscan.io/address/0xbca0765c452777a5fa62c82a26550d6520406f4e", + "xHandle": "shieldgrabber", + "xUrl": "https://twitter.com/shieldgrabber", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128555", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "chadt", + "displayName": "ChadT", + "fid": 1128555, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0890a0e6-eb58-4915-54fe-417c1c9faf00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3db2582340a60253908f7f2c084b16ebc2c55a2", + "etherscanUrl": "https://etherscan.io/address/0xc3db2582340a60253908f7f2c084b16ebc2c55a2", + "xHandle": "chadt43", + "xUrl": "https://twitter.com/chadt43", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1149732", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bilit", + "displayName": "Bilit", + "fid": 1149732, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01a438edc1b14745f739011e6033b4764456237e", + "etherscanUrl": "https://etherscan.io/address/0x01a438edc1b14745f739011e6033b4764456237e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_372099", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "trashxpanda", + "displayName": "www.DegenDesignStudio.com", + "fid": 372099, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/235e3e97-6f6f-4f4c-6b01-a23c6bb97b00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa30f624306826e729e4c3195fe0930398546591e", + "etherscanUrl": "https://etherscan.io/address/0xa30f624306826e729e4c3195fe0930398546591e", + "xHandle": "degendesign_ceo", + "xUrl": "https://twitter.com/degendesign_ceo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148417", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "walid666", + "displayName": "walid kdiri", + "fid": 1148417, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae631bd5-a776-4328-0de0-ffc21ec8fd00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdac9fb0d9569a876de6d2a843b72fc7884a64782", + "etherscanUrl": "https://etherscan.io/address/0xdac9fb0d9569a876de6d2a843b72fc7884a64782", + "xHandle": "walidkdiri", + "xUrl": "https://twitter.com/walidkdiri", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143297", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abuzar07", + "displayName": "ABUZAR", + "fid": 1143297, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5b06d1d5-357e-46a2-3fe6-0190b82bb600/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0cac1fcee707ac849f459a15ae2aed032b5fffff", + "etherscanUrl": "https://etherscan.io/address/0x0cac1fcee707ac849f459a15ae2aed032b5fffff", + "xHandle": "balochk49", + "xUrl": "https://twitter.com/balochk49", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926236", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lkui", + "displayName": "小呆", + "fid": 926236, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/29b0e9ee-12ed-4e06-bd57-53029cbd3e00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48c917ae3c085350595760cbc32eb9acba51b59e", + "etherscanUrl": "https://etherscan.io/address/0x48c917ae3c085350595760cbc32eb9acba51b59e", + "xHandle": "laprecisen15388", + "xUrl": "https://twitter.com/laprecisen15388", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "disenchakma", + "displayName": "Notun Priyo", + "fid": 1142444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b98214a4-9189-474e-fc1c-d06b7be7f300/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d234d042c4fb0ce3041034bba7fab4601dc4143", + "etherscanUrl": "https://etherscan.io/address/0x3d234d042c4fb0ce3041034bba7fab4601dc4143", + "xHandle": "disenchakma", + "xUrl": "https://twitter.com/disenchakma", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118093", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hassnmeo", + "displayName": "Hassan Meo", + "fid": 1118093, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18621062-7c40-4c94-36f9-1f327d28f400/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x091e3bc9acdea2372e77f89ad8d85d327a8e9eb8", + "etherscanUrl": "https://etherscan.io/address/0x091e3bc9acdea2372e77f89ad8d85d327a8e9eb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_550380", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "african-fractal", + "displayName": "AfricanFractal", + "fid": 550380, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5ae47c8-3476-46a4-25bd-a98ab4a4c900/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e9150d2d8a9425c8c2c03574469c9dc4aa820a6", + "etherscanUrl": "https://etherscan.io/address/0x7e9150d2d8a9425c8c2c03574469c9dc4aa820a6", + "xHandle": "africanfractal", + "xUrl": "https://twitter.com/africanfractal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927125", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoeff", + "displayName": "Robinson", + "fid": 927125, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d879f8eb-757a-46b2-e3e4-4422dac43900/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9f109cbc9de1dadb36c4f5b3420f9f3324f3b8b", + "etherscanUrl": "https://etherscan.io/address/0xc9f109cbc9de1dadb36c4f5b3420f9f3324f3b8b", + "xHandle": "reynalinmaycruz", + "xUrl": "https://twitter.com/reynalinmaycruz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_927123", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "henryrr", + "displayName": "Torres", + "fid": 927123, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09fcc3f5-74eb-43ba-68f2-ee9b86118a00/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe87e85636ca165f7460d90c3fd165a2535672c4c", + "etherscanUrl": "https://etherscan.io/address/0xe87e85636ca165f7460d90c3fd165a2535672c4c", + "xHandle": "rbutler7babes", + "xUrl": "https://twitter.com/rbutler7babes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930892", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "noahvds", + "displayName": "Walker", + "fid": 930892, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/280d2c8b-b978-4287-8e68-ec38ee4e9100/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x58719bb6fe466a65b8afcdd9a38e20de36ed3bbe", + "etherscanUrl": "https://etherscan.io/address/0x58719bb6fe466a65b8afcdd9a38e20de36ed3bbe", + "xHandle": "patonlindsay", + "xUrl": "https://twitter.com/patonlindsay", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926998", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "willowwwwi", + "displayName": "Allen", + "fid": 926998, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63ac12d8-30ce-4f9e-793f-282aa5778700/original", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x502644bb2c7fc0e46627e2c96b60f268aaa192b3", + "etherscanUrl": "https://etherscan.io/address/0x502644bb2c7fc0e46627e2c96b60f268aaa192b3", + "xHandle": "layla_gal", + "xUrl": "https://twitter.com/layla_gal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905448", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "justinpartridg", + "displayName": "JustinPartridg", + "fid": 905448, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86ec0d73-9d11-43eb-a93e-955f01847f00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38baf3b18c5f90195b64a51529f7be16a82544a5", + "etherscanUrl": "https://etherscan.io/address/0x38baf3b18c5f90195b64a51529f7be16a82544a5", + "xHandle": "poliskhjeananne", + "xUrl": "https://twitter.com/poliskhjeananne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905438", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "colbydicken", + "displayName": "ColbyDickenIch entwerfe und test", + "fid": 905438, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/201bf261-019a-4c8a-ee1a-a1be0493f600/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19b9fa915651479a695a3b2ad5446d6fd45a2c4a", + "etherscanUrl": "https://etherscan.io/address/0x19b9fa915651479a695a3b2ad5446d6fd45a2c4a", + "xHandle": "happytmie4", + "xUrl": "https://twitter.com/happytmie4", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905109", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maxdenisa", + "displayName": "MaxDenisa", + "fid": 905109, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27c607d4-f02e-4452-4d45-2ef73a9a4e00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09495ac08334d7d97a1116ca66361d4978b826ea", + "etherscanUrl": "https://etherscan.io/address/0x09495ac08334d7d97a1116ca66361d4978b826ea", + "xHandle": "kashifrapoot63", + "xUrl": "https://twitter.com/kashifrapoot63", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905170", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tyronedeli", + "displayName": "TyroneDeli", + "fid": 905170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c74f6a2-dbe9-4723-5374-c8b19f456200/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5771d52419038fbf32d7bf9fcc3a9fab660a4a65", + "etherscanUrl": "https://etherscan.io/address/0x5771d52419038fbf32d7bf9fcc3a9fab660a4a65", + "xHandle": "mamthembile", + "xUrl": "https://twitter.com/mamthembile", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_904187", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joycecoffeya", + "displayName": "JoyceCoffeya", + "fid": 904187, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eb6ef3a-d25e-4cca-7846-1bb7398a0f00/rectcrop3", + "followers": 4, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x222c40a4c745994dad7982419f7a4ed22b346ad4", + "etherscanUrl": "https://etherscan.io/address/0x222c40a4c745994dad7982419f7a4ed22b346ad4", + "xHandle": "happyfacegrande", + "xUrl": "https://twitter.com/happyfacegrande", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1022281", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "belsurf", + "displayName": "Bel Kurtz", + "fid": 1022281, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52918f-54ea-4d1b-8aa2-75edc1402c00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11c87db43addb7781b9bc2dedbd51f32bcb7ed7c", + "etherscanUrl": "https://etherscan.io/address/0x11c87db43addb7781b9bc2dedbd51f32bcb7ed7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1017254", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "edufischer", + "displayName": "Edu Fischer", + "fid": 1017254, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a247c357-e9a2-4e16-217f-a26fef7f7700/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfe224017b770530117f51f63438871aa1b4bf0ea", + "etherscanUrl": "https://etherscan.io/address/0xfe224017b770530117f51f63438871aa1b4bf0ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1473659", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danny101", + "displayName": "danny101", + "fid": 1473659, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcb14be7e5fb9669807f58204e34fb1925e5ce1c4", + "etherscanUrl": "https://etherscan.io/address/0xcb14be7e5fb9669807f58204e34fb1925e5ce1c4", + "xHandle": "hustle_hrd_304", + "xUrl": "https://twitter.com/hustle_hrd_304", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1397271", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arsebet", + "displayName": "arsebet", + "fid": 1397271, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc0fed098f25cbabbf12eef389be0598dee27d3d", + "etherscanUrl": "https://etherscan.io/address/0xbc0fed098f25cbabbf12eef389be0598dee27d3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1382582", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vikkivg", + "displayName": "vikkivg", + "fid": 1382582, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fe3bebc3b7d7f1db29b5136ec0e8788d6fef024", + "etherscanUrl": "https://etherscan.io/address/0x0fe3bebc3b7d7f1db29b5136ec0e8788d6fef024", + "xHandle": "veeramvg1990", + "xUrl": "https://twitter.com/veeramvg1990", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1378838", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lilibillionklin", + "displayName": "lilibillionklin", + "fid": 1378838, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x131ec8fbcf30a458bd4609a8711ff50b07a81f1c", + "etherscanUrl": "https://etherscan.io/address/0x131ec8fbcf30a458bd4609a8711ff50b07a81f1c", + "xHandle": "lilibeth311", + "xUrl": "https://twitter.com/lilibeth311", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1372787", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "awct", + "displayName": "awct", + "fid": 1372787, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8765f5359141c1d215b33e7a77d92f20c5404f3d", + "etherscanUrl": "https://etherscan.io/address/0x8765f5359141c1d215b33e7a77d92f20c5404f3d", + "xHandle": "foolishgenerals", + "xUrl": "https://twitter.com/foolishgenerals", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1366691", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "priedee755", + "displayName": "priedee755", + "fid": 1366691, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/506b2585-085f-4a45-cba0-60f42ccc0500/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20cf523da2a79732cb20e805b8bc12f13cf69710", + "etherscanUrl": "https://etherscan.io/address/0x20cf523da2a79732cb20e805b8bc12f13cf69710", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1086725", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "benwest921", + "displayName": "🫰✨Abdul Benjamin", + "fid": 1086725, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26d77957-1aec-4cf5-3c7c-5977941ed800/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d76f38f1eb58f74f98a9d466b439b241dcc5255", + "etherscanUrl": "https://etherscan.io/address/0x3d76f38f1eb58f74f98a9d466b439b241dcc5255", + "xHandle": "abdulbenjamin12", + "xUrl": "https://twitter.com/abdulbenjamin12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1364289", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "habinar", + "displayName": "habinar", + "fid": 1364289, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa28e9da1d7ee59464116b6c37628caaf546c1367", + "etherscanUrl": "https://etherscan.io/address/0xa28e9da1d7ee59464116b6c37628caaf546c1367", + "xHandle": "paul_sukhanov", + "xUrl": "https://twitter.com/paul_sukhanov", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1170160", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nishant-111", + "displayName": "Nishant Sharma", + "fid": 1170160, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd7d42b7-5428-4d8d-68eb-bba053141d00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc23abb9e9f06c9971764ae5f05bef6e46ca05aa1", + "etherscanUrl": "https://etherscan.io/address/0xc23abb9e9f06c9971764ae5f05bef6e46ca05aa1", + "xHandle": "nishant4539480", + "xUrl": "https://twitter.com/nishant4539480", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1100308", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "123tayo", + "displayName": "Tayo", + "fid": 1100308, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d184d92-8215-4298-3652-d55c4bf0bd00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4dcbb86d2aefd6709e28f858052f270546aa4490", + "etherscanUrl": "https://etherscan.io/address/0x4dcbb86d2aefd6709e28f858052f270546aa4490", + "xHandle": "tayo98288371", + "xUrl": "https://twitter.com/tayo98288371", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1104103", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "vanzkie", + "displayName": "Vanzkie\"SparkChain.AI\" Kaisar \"F", + "fid": 1104103, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28f5ddd7-b507-437f-68c4-d580d1baa100/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd24ed1af7e46e5c3f6db9da368c93b643defac9b", + "etherscanUrl": "https://etherscan.io/address/0xd24ed1af7e46e5c3f6db9da368c93b643defac9b", + "xHandle": "airdrop38330252", + "xUrl": "https://twitter.com/airdrop38330252", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1210522", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "omairali", + "displayName": "Syed Omair Ali ( Ø,G )", + "fid": 1210522, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a3417812-e446-40bc-20cb-8fc44e07bd00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8ecd2dc84c0fc06a1305ed4d39fb0323d56b959", + "etherscanUrl": "https://etherscan.io/address/0xe8ecd2dc84c0fc06a1305ed4d39fb0323d56b959", + "xHandle": "soadigitalsol", + "xUrl": "https://twitter.com/soadigitalsol", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1199139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "azeempaa786", + "displayName": "7866", + "fid": 1199139, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5821b6f4262a31445b1961f8041ec36b6f6ccc2c", + "etherscanUrl": "https://etherscan.io/address/0x5821b6f4262a31445b1961f8041ec36b6f6ccc2c", + "xHandle": "azeemhassa88153", + "xUrl": "https://twitter.com/azeemhassa88153", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1210936", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shaqblaq", + "displayName": "Shaq_blaq", + "fid": 1210936, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c38e67ad024a356ccb57c2f9a0f0041095a6c65", + "etherscanUrl": "https://etherscan.io/address/0x1c38e67ad024a356ccb57c2f9a0f0041095a6c65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_639284", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "victor23", + "displayName": "Victor", + "fid": 639284, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/302485f4-fe33-4a75-3069-60718a771d00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x864d0fb3f02bf2e829bb3649683fe694d1b16ea3", + "etherscanUrl": "https://etherscan.io/address/0x864d0fb3f02bf2e829bb3649683fe694d1b16ea3", + "xHandle": "pskft43546777", + "xUrl": "https://twitter.com/pskft43546777", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1164413", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arnyo3", + "displayName": "Arnyo Mishuk", + "fid": 1164413, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x286ece69e1761cabc1e38aff972068656e6fa691", + "etherscanUrl": "https://etherscan.io/address/0x286ece69e1761cabc1e38aff972068656e6fa691", + "xHandle": "aronno73", + "xUrl": "https://twitter.com/aronno73", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156043", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "syafii1513-eth", + "displayName": "syafii", + "fid": 1156043, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/000f226e-0705-4c31-73ae-780e4663e700/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01c865363d0abc7cddee7d839788d3037f83c6a4", + "etherscanUrl": "https://etherscan.io/address/0x01c865363d0abc7cddee7d839788d3037f83c6a4", + "xHandle": "syafii513513", + "xUrl": "https://twitter.com/syafii513513", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148840", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sdkahleed", + "displayName": "Sd Kahlerd", + "fid": 1148840, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd459ec9be91c0dcf9c4a29e0ed0639d5a39922d8", + "etherscanUrl": "https://etherscan.io/address/0xd459ec9be91c0dcf9c4a29e0ed0639d5a39922d8", + "xHandle": "daan_yayi", + "xUrl": "https://twitter.com/daan_yayi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138910", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "soonjw", + "displayName": "Slyepci", + "fid": 1138910, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/662cebd3-1512-4899-5bd2-232eda855800/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x94b33c0443594afb77483f3ea5600718e74eb738", + "etherscanUrl": "https://etherscan.io/address/0x94b33c0443594afb77483f3ea5600718e74eb738", + "xHandle": "slyepi", + "xUrl": "https://twitter.com/slyepi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1132730", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pababatv", + "displayName": "PababaTV", + "fid": 1132730, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef1f7b2a-bcf3-4731-b993-6c838d43b500/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18d7acb874a1dc889573cf5a31781ce59a880d8d", + "etherscanUrl": "https://etherscan.io/address/0x18d7acb874a1dc889573cf5a31781ce59a880d8d", + "xHandle": "pababatv", + "xUrl": "https://twitter.com/pababatv", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1094496", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "na3sabbir", + "displayName": "Sabbir Hossen", + "fid": 1094496, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02fdaaa6-3f8a-4314-310e-e7c0e9945c00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x325c6d597b799ab831b031ade78626f09c3bd2cf", + "etherscanUrl": "https://etherscan.io/address/0x325c6d597b799ab831b031ade78626f09c3bd2cf", + "xHandle": "na3sabbir", + "xUrl": "https://twitter.com/na3sabbir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098609", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "devtoyin", + "displayName": "Toyin", + "fid": 1098609, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4934eec-418a-44df-2572-e83f66daea00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x83bf26bef07b26bc2043f00e4eb91fc96850d5ef", + "etherscanUrl": "https://etherscan.io/address/0x83bf26bef07b26bc2043f00e4eb91fc96850d5ef", + "xHandle": "toyin_bolu", + "xUrl": "https://twitter.com/toyin_bolu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_930850", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "magsson", + "displayName": "Jackson", + "fid": 930850, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06cf4039-6b51-43fb-54a7-a6dfec605700/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf324f071a41e00417e2e83856ad7a4361662dde9", + "etherscanUrl": "https://etherscan.io/address/0xf324f071a41e00417e2e83856ad7a4361662dde9", + "xHandle": "erindshullaj", + "xUrl": "https://twitter.com/erindshullaj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130777", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joshtrader14", + "displayName": "Crypto and forex lover", + "fid": 1130777, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85a4cfc6cf7d0760003b0107eba9ea8630d24b01", + "etherscanUrl": "https://etherscan.io/address/0x85a4cfc6cf7d0760003b0107eba9ea8630d24b01", + "xHandle": "joshtrader14", + "xUrl": "https://twitter.com/joshtrader14", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109672", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ashura47", + "displayName": "Übermensch", + "fid": 1109672, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37a2f474-f970-4864-3f8f-30d4b62fff00/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c1bd41a4e1d0e41728dcdd6252567a90078cc5c", + "etherscanUrl": "https://etherscan.io/address/0x9c1bd41a4e1d0e41728dcdd6252567a90078cc5c", + "xHandle": "ashrafomeiza", + "xUrl": "https://twitter.com/ashrafomeiza", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1116665", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danpo83", + "displayName": "Daniil Popov", + "fid": 1116665, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ddd6648-80d8-4b12-77c5-a192c5d25100/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1920feed24f025a2aff4d85e01997fef8d809711", + "etherscanUrl": "https://etherscan.io/address/0x1920feed24f025a2aff4d85e01997fef8d809711", + "xHandle": "daniil27229478", + "xUrl": "https://twitter.com/daniil27229478", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127522", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wiceto", + "displayName": "wiceto", + "fid": 1127522, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b982d214-dad8-44cf-1ac3-5273ddd35800/original", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f0db518ae36622c75b818b406957e4273ea3b0a", + "etherscanUrl": "https://etherscan.io/address/0x7f0db518ae36622c75b818b406957e4273ea3b0a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109948", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kutomuto", + "displayName": "kutomuto", + "fid": 1109948, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d6df2421-e1eb-452d-9d80-9a6a91b8c900/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b43f0686d454caefd68b498cb58859eda560442", + "etherscanUrl": "https://etherscan.io/address/0x6b43f0686d454caefd68b498cb58859eda560442", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1019744", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "genius2021", + "displayName": "Ossai Hyginus", + "fid": 1019744, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/958478d6-f17b-48b9-5308-0306fed58a00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27dafaa5146fe3c5dfb7c9b978d9344b72c4fc1b", + "etherscanUrl": "https://etherscan.io/address/0x27dafaa5146fe3c5dfb7c9b978d9344b72c4fc1b", + "xHandle": "hyginus_genius", + "xUrl": "https://twitter.com/hyginus_genius", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_910718", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "haleyhousman", + "displayName": "HaleyHousman", + "fid": 910718, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7375e87a-ace9-4997-1c49-47766525bc00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x145a14dc9f701bde53108cb736655c1247c4969b", + "etherscanUrl": "https://etherscan.io/address/0x145a14dc9f701bde53108cb736655c1247c4969b", + "xHandle": "chrusade2", + "xUrl": "https://twitter.com/chrusade2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_909839", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "larryemerson", + "displayName": "LarryEmerson", + "fid": 909839, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98cc2cdb-1e02-4cb3-e2eb-7138eb904a00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7fbb307f4fae6d372acc1778d28cb370e95e443e", + "etherscanUrl": "https://etherscan.io/address/0x7fbb307f4fae6d372acc1778d28cb370e95e443e", + "xHandle": "lizazeva", + "xUrl": "https://twitter.com/lizazeva", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_908533", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "berylbronte", + "displayName": "BerylBronte", + "fid": 908533, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/65d11ac8-ecb3-4155-dc82-2bfcba48f500/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d0811161df3263a86b4c5fb7592ea804c4247dd", + "etherscanUrl": "https://etherscan.io/address/0x7d0811161df3263a86b4c5fb7592ea804c4247dd", + "xHandle": "michelverdik", + "xUrl": "https://twitter.com/michelverdik", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_908402", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gustavepenn112", + "displayName": "GustavePenn112", + "fid": 908402, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf4bfdcd-3630-40b1-3a76-8c27c8b0aa00/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10c13dfd3f6bac3eb54ad0910efaa49715aa524e", + "etherscanUrl": "https://etherscan.io/address/0x10c13dfd3f6bac3eb54ad0910efaa49715aa524e", + "xHandle": "ibtehazrony", + "xUrl": "https://twitter.com/ibtehazrony", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905255", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quzyvk2sq", + "displayName": "CecilRockefeller", + "fid": 905255, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f84a6b2b-177b-47e3-2d49-63428d337300/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b523f129afff3e7799b42231697884317aec8af", + "etherscanUrl": "https://etherscan.io/address/0x0b523f129afff3e7799b42231697884317aec8af", + "xHandle": "sully2stac", + "xUrl": "https://twitter.com/sully2stac", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_904196", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "calviniia", + "displayName": "CalvinIIa", + "fid": 904196, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1c0783ee-1af7-4593-e0bc-1706e64c7600/rectcrop3", + "followers": 3, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6778920bab4455de157e4217ad113f67893c0423", + "etherscanUrl": "https://etherscan.io/address/0x6778920bab4455de157e4217ad113f67893c0423", + "xHandle": "suaibatul96", + "xUrl": "https://twitter.com/suaibatul96", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1376512", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bluebarbe", + "displayName": "Bule_Barbie", + "fid": 1376512, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/572a1faa-ffb0-4a01-3ab9-d427e0c91800/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa03699d5ad1374ec464845f188ed4b390f3f63d4", + "etherscanUrl": "https://etherscan.io/address/0xa03699d5ad1374ec464845f188ed4b390f3f63d4", + "xHandle": "bluebarbieai", + "xUrl": "https://twitter.com/bluebarbieai", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1401232", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "schoo", + "displayName": "schoo", + "fid": 1401232, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11bf04b054e376e9101d96a4bbcb2c435d3d5b91", + "etherscanUrl": "https://etherscan.io/address/0x11bf04b054e376e9101d96a4bbcb2c435d3d5b91", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1383783", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "olawalex137", + "displayName": "olawalex137", + "fid": 1383783, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2f075dd986137ee9ed32763646c6b6f6b2c618a", + "etherscanUrl": "https://etherscan.io/address/0xf2f075dd986137ee9ed32763646c6b6f6b2c618a", + "xHandle": "islamiatrafiu", + "xUrl": "https://twitter.com/islamiatrafiu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1377769", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "imranali", + "displayName": "Imranali", + "fid": 1377769, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89c8916915697b33b0f58967c4f7e8e85caa9930", + "etherscanUrl": "https://etherscan.io/address/0x89c8916915697b33b0f58967c4f7e8e85caa9930", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1374137", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mads93", + "displayName": "mads93", + "fid": 1374137, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7d01d0d-eafb-49df-0a6e-f4ba0bf1e600/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x37084424fe5dca5a67c2f5fc281a4cce65793293", + "etherscanUrl": "https://etherscan.io/address/0x37084424fe5dca5a67c2f5fc281a4cce65793293", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1372389", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kinghoangan", + "displayName": "kinghoangan", + "fid": 1372389, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87f23c16-2a34-4ae8-32e5-8fa6415df700/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2401192344bbb18e9caed933c667cef739a25524", + "etherscanUrl": "https://etherscan.io/address/0x2401192344bbb18e9caed933c667cef739a25524", + "xHandle": "nguyenthuychi93", + "xUrl": "https://twitter.com/nguyenthuychi93", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1369863", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "summada18", + "displayName": "summada18", + "fid": 1369863, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa1fef3def7927c208a2a6ec5a878626c542770dd", + "etherscanUrl": "https://etherscan.io/address/0xa1fef3def7927c208a2a6ec5a878626c542770dd", + "xHandle": "surajom30999", + "xUrl": "https://twitter.com/surajom30999", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1364499", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shibananda98", + "displayName": "shibananda98", + "fid": 1364499, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0e3713b64f2792aa491e47cdaaaaacd7e074601", + "etherscanUrl": "https://etherscan.io/address/0xc0e3713b64f2792aa491e47cdaaaaacd7e074601", + "xHandle": "shiba50505", + "xUrl": "https://twitter.com/shiba50505", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1061472", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "phyolay335", + "displayName": "Phyo Lay", + "fid": 1061472, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0246bd37-a1bf-4aad-b1ec-214bf97e2600/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26dcf0f0c359f1b660ee27ada67c4b0cd8795af3", + "etherscanUrl": "https://etherscan.io/address/0x26dcf0f0c359f1b660ee27ada67c4b0cd8795af3", + "xHandle": "jo_phyo", + "xUrl": "https://twitter.com/jo_phyo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1080795", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "moubarak", + "displayName": "MUSTAPHA ISMAIL", + "fid": 1080795, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c477c8f0-272a-408b-1fbf-49d5dc23e900/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18995783468b112fc8484d74560f24289d43a77f", + "etherscanUrl": "https://etherscan.io/address/0x18995783468b112fc8484d74560f24289d43a77f", + "xHandle": "mmoubarakh", + "xUrl": "https://twitter.com/mmoubarakh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1358016", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shujang84", + "displayName": "shujang84", + "fid": 1358016, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e170e8b-f845-4f7e-3b31-0120be80c300/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa8c0127d3ca0a3ad6e3b1275fc075380f5e14886", + "etherscanUrl": "https://etherscan.io/address/0xa8c0127d3ca0a3ad6e3b1275fc075380f5e14886", + "xHandle": "xphong229", + "xUrl": "https://twitter.com/xphong229", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1245619", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sicka", + "displayName": "Sicka Dannewyork", + "fid": 1245619, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c207664-e85e-4c20-51f7-43e196060500/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x967ba886b17b2131ba4f13c0ee57894cf81a85db", + "etherscanUrl": "https://etherscan.io/address/0x967ba886b17b2131ba4f13c0ee57894cf81a85db", + "xHandle": "s_sicka", + "xUrl": "https://twitter.com/s_sicka", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1336616", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fjcjxjxbxjj", + "displayName": "rjridjndjdnnfi", + "fid": 1336616, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb2b0265d61a0578425ec32780ff6baaf4ea2ad8", + "etherscanUrl": "https://etherscan.io/address/0xdb2b0265d61a0578425ec32780ff6baaf4ea2ad8", + "xHandle": "otraafd", + "xUrl": "https://twitter.com/otraafd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1336611", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "cjififhfbfbk", + "displayName": "dididjbdndndk", + "fid": 1336611, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4289d2e3c3ce3842d444c8d3e3204c654d49bcb7", + "etherscanUrl": "https://etherscan.io/address/0x4289d2e3c3ce3842d444c8d3e3204c654d49bcb7", + "xHandle": "imed41694924", + "xUrl": "https://twitter.com/imed41694924", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1336608", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dnficjfjfufbfb", + "displayName": "fjdkdbxjciiccnnffni", + "fid": 1336608, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b2d2cd2847000f5f77b04a1fc3c5decbb0e5f29", + "etherscanUrl": "https://etherscan.io/address/0x5b2d2cd2847000f5f77b04a1fc3c5decbb0e5f29", + "xHandle": "siviamut", + "xUrl": "https://twitter.com/siviamut", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1349042", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "abdulkourey", + "displayName": "abdulkourey", + "fid": 1349042, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f347f54-d292-4ab3-28fc-3e6383ab2500/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x63aa9d6965647c21e9960b905e20b131714041ad", + "etherscanUrl": "https://etherscan.io/address/0x63aa9d6965647c21e9960b905e20b131714041ad", + "xHandle": "abdoul_kourey", + "xUrl": "https://twitter.com/abdoul_kourey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1344390", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qalqi", + "displayName": "qalqi.com", + "fid": 1344390, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a81ccf46-1818-4eb2-25fb-7c485d073d00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c73a5e68d686060acd9ac838c18dde6f132df5d", + "etherscanUrl": "https://etherscan.io/address/0x2c73a5e68d686060acd9ac838c18dde6f132df5d", + "xHandle": "qalqi", + "xUrl": "https://twitter.com/qalqi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131929", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ibrahim333", + "displayName": "Ibbel3", + "fid": 1131929, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0513dee-61e5-4740-d06f-64db0e93c800/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e01c419ec80e17a95a9878d0c484954105096ca", + "etherscanUrl": "https://etherscan.io/address/0x5e01c419ec80e17a95a9878d0c484954105096ca", + "xHandle": "ibrahimbel26215", + "xUrl": "https://twitter.com/ibrahimbel26215", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1319826", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "boehner", + "displayName": "Boehner", + "fid": 1319826, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdee4fb5-8236-47f0-c513-fa48f05fd000/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00f4ed4f2d02f0da30a646ce2ec09703efd77554", + "etherscanUrl": "https://etherscan.io/address/0x00f4ed4f2d02f0da30a646ce2ec09703efd77554", + "xHandle": "andrewboehner", + "xUrl": "https://twitter.com/andrewboehner", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1316386", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rizkign21", + "displayName": "RIZKI.GN26", + "fid": 1316386, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23406486-a54a-484f-784c-94fa60352e00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x850781b14872f0eac1df60ffb6d935c74c0b665d", + "etherscanUrl": "https://etherscan.io/address/0x850781b14872f0eac1df60ffb6d935c74c0b665d", + "xHandle": "riringn26", + "xUrl": "https://twitter.com/riringn26", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1104899", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kasoqilxuu2", + "displayName": "Huseenoo kasooSolix", + "fid": 1104899, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87e5b000-aa6b-461c-3d25-0a0444059f00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd1145869d8f1591953f52b2b64b102c3c193fd5", + "etherscanUrl": "https://etherscan.io/address/0xbd1145869d8f1591953f52b2b64b102c3c193fd5", + "xHandle": "huseenoo_kasoo", + "xUrl": "https://twitter.com/huseenoo_kasoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1306121", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "youness-affi", + "displayName": "Younes", + "fid": 1306121, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a031635-d8b1-48e5-40f9-0c3daa8ef500/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fcde988e4fa9f789255a4ea6bd90f598d31eef0", + "etherscanUrl": "https://etherscan.io/address/0x0fcde988e4fa9f789255a4ea6bd90f598d31eef0", + "xHandle": "younes_affi", + "xUrl": "https://twitter.com/younes_affi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1283875", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "lala50", + "displayName": "beya", + "fid": 1283875, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9590e7d7-49e4-43a3-e860-f57d6507b700/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x715b0711fb8ac17a833dccb8319420aa3e62e442", + "etherscanUrl": "https://etherscan.io/address/0x715b0711fb8ac17a833dccb8319420aa3e62e442", + "xHandle": "arif_tube13228", + "xUrl": "https://twitter.com/arif_tube13228", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1297823", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zitapeace", + "displayName": "Zeee💕", + "fid": 1297823, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bf466bc-0079-40c8-7b89-2f8da80fc400/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cd4865839e56c97768ba2e016046f7be4e7ce5f", + "etherscanUrl": "https://etherscan.io/address/0x2cd4865839e56c97768ba2e016046f7be4e7ce5f", + "xHandle": "edmundchineche1", + "xUrl": "https://twitter.com/edmundchineche1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1287248", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yunxinboy", + "displayName": "yunxinboy", + "fid": 1287248, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cfa53cf5-cb2c-4411-27d3-bf639fa8b000/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x962345ff54b4165bf2a8cd7295bb16fbf5346ac8", + "etherscanUrl": "https://etherscan.io/address/0x962345ff54b4165bf2a8cd7295bb16fbf5346ac8", + "xHandle": "gospel34497", + "xUrl": "https://twitter.com/gospel34497", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156197", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "56ladi-ren", + "displayName": "Lahdi Noren", + "fid": 1156197, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01de3d496ce633b674d5025b7ce1f372a436414e", + "etherscanUrl": "https://etherscan.io/address/0x01de3d496ce633b674d5025b7ce1f372a436414e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1175758", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "taugast.eth", + "displayName": "taugast.sol", + "fid": 1175758, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cbd4ce9b-473e-4c3e-6fe6-8d3bac3b4900/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x628c10207f584dda67c5ca46c5e6f02bff6817f0", + "etherscanUrl": "https://etherscan.io/address/0x628c10207f584dda67c5ca46c5e6f02bff6817f0", + "xHandle": "tau_gast", + "xUrl": "https://twitter.com/tau_gast", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1165260", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "andreiamartinbr", + "displayName": "AndreiaMartinBR", + "fid": 1165260, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7806a0ef-0248-4436-6959-351989adb800/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2ab529700498b7b5c05c21613e34aa17c37e0d2", + "etherscanUrl": "https://etherscan.io/address/0xb2ab529700498b7b5c05c21613e34aa17c37e0d2", + "xHandle": "andreiamartinbr", + "xUrl": "https://twitter.com/andreiamartinbr", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1161391", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xsteeven", + "displayName": "$tEVEn.base.eth", + "fid": 1161391, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97187282-9fa4-4fb2-907b-935fa4be6600/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x959ee26d0d44e275c437feae49f47ba119c3402a", + "etherscanUrl": "https://etherscan.io/address/0x959ee26d0d44e275c437feae49f47ba119c3402a", + "xHandle": "0xsteeven", + "xUrl": "https://twitter.com/0xsteeven", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146981", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "alfapro", + "displayName": "Oleksii Bilenkyi", + "fid": 1146981, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1c757bcb93a2bd2691b115a8f06645b20d3d864", + "etherscanUrl": "https://etherscan.io/address/0xe1c757bcb93a2bd2691b115a8f06645b20d3d864", + "xHandle": "olexii_bilenkiy", + "xUrl": "https://twitter.com/olexii_bilenkiy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1024030", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "suman11", + "displayName": "Suman", + "fid": 1024030, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f511cef5-6d35-4ed9-4355-fe8469fe0300/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2ab4d45cb43af77f01bbfa6c0e03697d686aff3", + "etherscanUrl": "https://etherscan.io/address/0xb2ab4d45cb43af77f01bbfa6c0e03697d686aff3", + "xHandle": "alia63796", + "xUrl": "https://twitter.com/alia63796", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1147079", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "basedbobby", + "displayName": "MayIBorrow$1", + "fid": 1147079, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2fc7e76d-37ff-4992-dcba-a28bcfee4300/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ef48b03383fe943df71472934b6badd1b4c4d7f", + "etherscanUrl": "https://etherscan.io/address/0x5ef48b03383fe943df71472934b6badd1b4c4d7f", + "xHandle": "punk_digital23", + "xUrl": "https://twitter.com/punk_digital23", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926225", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gwjs", + "displayName": "🧸.⬭ 🎀", + "fid": 926225, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e6e9f593-2af4-41ac-6bc4-6f3a86f88100/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2acc993ba9ba668d4306e162576bda5f9e0498b", + "etherscanUrl": "https://etherscan.io/address/0xd2acc993ba9ba668d4306e162576bda5f9e0498b", + "xHandle": "curremotka61029", + "xUrl": "https://twitter.com/curremotka61029", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131433", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "army161", + "displayName": "Army161", + "fid": 1131433, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db091f13-e305-448b-ad4c-f606e32c9f00/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2fbc6d575fb4ab34a37a19f21abaea79876fdc6", + "etherscanUrl": "https://etherscan.io/address/0xb2fbc6d575fb4ab34a37a19f21abaea79876fdc6", + "xHandle": "gephart2789", + "xUrl": "https://twitter.com/gephart2789", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1138308", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "subrotoday", + "displayName": "Subrotoday", + "fid": 1138308, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ad65282-c28b-4ad6-5208-16e00c3c5800/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4ca5136656899cd846a63f27886861f819dcb43", + "etherscanUrl": "https://etherscan.io/address/0xf4ca5136656899cd846a63f27886861f819dcb43", + "xHandle": "subrotoday42158", + "xUrl": "https://twitter.com/subrotoday42158", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142349", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sujon550", + "displayName": "Hijnnkk", + "fid": 1142349, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b032f56-2848-4b9f-9330-132457669500/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a481be148f27d1ba49b7b71d7f169bf213109af", + "etherscanUrl": "https://etherscan.io/address/0x2a481be148f27d1ba49b7b71d7f169bf213109af", + "xHandle": "mdsujon50", + "xUrl": "https://twitter.com/mdsujon50", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141744", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sazadkhan08", + "displayName": "777707.stark 🍊,💊", + "fid": 1141744, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7fe9f07-1244-4b5c-ad4b-f9b0dea37400/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd0873a7a2d91f698a3ac96b965e544ac06678ea", + "etherscanUrl": "https://etherscan.io/address/0xbd0873a7a2d91f698a3ac96b965e544ac06678ea", + "xHandle": "sazzadk44", + "xUrl": "https://twitter.com/sazzadk44", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1137882", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "0xpbnava", + "displayName": "Nava", + "fid": 1137882, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa4c0a01479000381953e381341497ddac234d1f9", + "etherscanUrl": "https://etherscan.io/address/0xa4c0a01479000381953e381341497ddac234d1f9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131306", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amado77", + "displayName": "Amir Turkey", + "fid": 1131306, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9523429a-1bec-47d0-ae2d-9f85bfe02e00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a173cae76c379cc5d05b02ef0c9dc1b19a8ea06", + "etherscanUrl": "https://etherscan.io/address/0x3a173cae76c379cc5d05b02ef0c9dc1b19a8ea06", + "xHandle": "4wtirdoaw2scg3p", + "xUrl": "https://twitter.com/4wtirdoaw2scg3p", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1131368", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wilfredys", + "displayName": "wilfredys", + "fid": 1131368, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02803b3c-e4f9-4d4d-d44d-601765bb7a00/original", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd982f50538f1403413776e0a56d00a075a44ffd7", + "etherscanUrl": "https://etherscan.io/address/0xd982f50538f1403413776e0a56d00a075a44ffd7", + "xHandle": "wilfredys8", + "xUrl": "https://twitter.com/wilfredys8", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_906921", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "channinghoover", + "displayName": "ChanningHoover", + "fid": 906921, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff9a3d2e-8296-4c50-3d3f-b7d407d7da00/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xefec5d31d73639c9541d213519faad86ec6f0163", + "etherscanUrl": "https://etherscan.io/address/0xefec5d31d73639c9541d213519faad86ec6f0163", + "xHandle": "willykoper", + "xUrl": "https://twitter.com/willykoper", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_910086", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "anselharriman", + "displayName": "AnselHarriman", + "fid": 910086, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99e7d63f-dfe1-4b83-88d9-808cd05b0400/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca2e5322ccaace3551d4ee43ceb81152cb2ac41f", + "etherscanUrl": "https://etherscan.io/address/0xca2e5322ccaace3551d4ee43ceb81152cb2ac41f", + "xHandle": "jlchafin", + "xUrl": "https://twitter.com/jlchafin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_909511", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fitchtomlinson", + "displayName": "FitchTomlinson", + "fid": 909511, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/219901b7-b08e-46d6-a91c-56ce51f4f600/rectcrop3", + "followers": 2, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6cacb754c0d5a41ae391f24055b33d4387eea2f", + "etherscanUrl": "https://etherscan.io/address/0xd6cacb754c0d5a41ae391f24055b33d4387eea2f", + "xHandle": "pibidy123", + "xUrl": "https://twitter.com/pibidy123", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072710", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fardiana", + "displayName": "siagoblogs", + "fid": 1072710, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/72e99282-692b-4cdd-751e-9ad4b0f89400/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32ecced84df733f94a404cfb8cfe50c74e744dc8", + "etherscanUrl": "https://etherscan.io/address/0x32ecced84df733f94a404cfb8cfe50c74e744dc8", + "xHandle": "siagoblogs", + "xUrl": "https://twitter.com/siagoblogs", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1451551", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "yellowcoin", + "displayName": "yellowcoin", + "fid": 1451551, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c48016b3-038d-4de9-ca64-cf69dd515400/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x66b74e1b1d94c9d52b23b9007fb4fad05b842cf8", + "etherscanUrl": "https://etherscan.io/address/0x66b74e1b1d94c9d52b23b9007fb4fad05b842cf8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1401104", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "kr23k", + "displayName": "kr23k", + "fid": 1401104, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4576310e615ae113970fc2d1275425264c5e4cc", + "etherscanUrl": "https://etherscan.io/address/0xe4576310e615ae113970fc2d1275425264c5e4cc", + "xHandle": "kurdestani1122", + "xUrl": "https://twitter.com/kurdestani1122", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1384558", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jinsakai05", + "displayName": "jinsakai05", + "fid": 1384558, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x606e1d043dd28df3acbd8d05a6b0e063aba5a823", + "etherscanUrl": "https://etherscan.io/address/0x606e1d043dd28df3acbd8d05a6b0e063aba5a823", + "xHandle": "jin_ohara90169", + "xUrl": "https://twitter.com/jin_ohara90169", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1103337", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "luckyqvi", + "displayName": "Lucky", + "fid": 1103337, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2152325d-5448-4852-27a1-f861e5159c00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42c9380707496c6f3bafac0e753716da7ac8e91d", + "etherscanUrl": "https://etherscan.io/address/0x42c9380707496c6f3bafac0e753716da7ac8e91d", + "xHandle": "luckyqvi", + "xUrl": "https://twitter.com/luckyqvi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1380781", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jmdc040789", + "displayName": "jmdc040789", + "fid": 1380781, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6c4010a221bb83aeb9fd3c686ef5c8acd156e9c", + "etherscanUrl": "https://etherscan.io/address/0xd6c4010a221bb83aeb9fd3c686ef5c8acd156e9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1379198", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sonys8899", + "displayName": "sonys8899", + "fid": 1379198, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafacbc3220c8386d1e25657b891acf8c0ae70945", + "etherscanUrl": "https://etherscan.io/address/0xafacbc3220c8386d1e25657b891acf8c0ae70945", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1371172", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bangjhame", + "displayName": "bangjhame", + "fid": 1371172, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f2618a9-b9b4-4776-c771-e622cf4ea100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c684f89c650745e29f8a67cd6500022763c86f5", + "etherscanUrl": "https://etherscan.io/address/0x4c684f89c650745e29f8a67cd6500022763c86f5", + "xHandle": "jhame_mukhlis", + "xUrl": "https://twitter.com/jhame_mukhlis", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1364240", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "maryam3018", + "displayName": "maryam3018", + "fid": 1364240, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa687ce598500a1cd7b8fe1aa7ec9aebe86b2a360", + "etherscanUrl": "https://etherscan.io/address/0xa687ce598500a1cd7b8fe1aa7ec9aebe86b2a360", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1363617", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "markanderson1", + "displayName": "markanderson1", + "fid": 1363617, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b517b88-9a8b-43d9-2fcb-82dae2247600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc556da6a6b3cc703cb680a1828cf3386004b2d61", + "etherscanUrl": "https://etherscan.io/address/0xc556da6a6b3cc703cb680a1828cf3386004b2d61", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1358832", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reflectionlimit", + "displayName": "reflectionlimit.base.eth", + "fid": 1358832, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d8f4c0d3-f63b-44ae-e78f-7ee25c091300/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6b4c10cb1db945b948ffc4ed3d08021366fbb67", + "etherscanUrl": "https://etherscan.io/address/0xc6b4c10cb1db945b948ffc4ed3d08021366fbb67", + "xHandle": "reflectionlimit", + "xUrl": "https://twitter.com/reflectionlimit", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1359699", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rowter", + "displayName": "rowter", + "fid": 1359699, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aed37ba4-232c-4721-ca3f-2eb5db628300/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x84a84bbee00b1f4afd70380d92e46ae919711151", + "etherscanUrl": "https://etherscan.io/address/0x84a84bbee00b1f4afd70380d92e46ae919711151", + "xHandle": "core_wel", + "xUrl": "https://twitter.com/core_wel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1357045", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nnotmybestwork", + "displayName": "nnotmybestwork", + "fid": 1357045, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bd1af4b7c725082bc2fd2a2e14ce17add2dfa50", + "etherscanUrl": "https://etherscan.io/address/0x4bd1af4b7c725082bc2fd2a2e14ce17add2dfa50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1284401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rokanbro", + "displayName": "Rokan", + "fid": 1284401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16fb4ceb6ae0c76a4171af735085cae0513a8264", + "etherscanUrl": "https://etherscan.io/address/0x16fb4ceb6ae0c76a4171af735085cae0513a8264", + "xHandle": "pasotar", + "xUrl": "https://twitter.com/pasotar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1332453", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hamid1521340", + "displayName": "reza amirbak wizo", + "fid": 1332453, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/81287723-6169-465c-057a-e4311f9a3200/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1824e5ca4cc0bbbfb05cc95da926e7ea803082b0", + "etherscanUrl": "https://etherscan.io/address/0x1824e5ca4cc0bbbfb05cc95da926e7ea803082b0", + "xHandle": "amirbakrez82991", + "xUrl": "https://twitter.com/amirbakrez82991", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1083686", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hydfn", + "displayName": "bnm", + "fid": 1083686, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4acb8454-5a5a-4b35-87ec-37d78442b000/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfdfe6de388ca096fab077af50b01fcf39af3d438", + "etherscanUrl": "https://etherscan.io/address/0xfdfe6de388ca096fab077af50b01fcf39af3d438", + "xHandle": "hydfn2", + "xUrl": "https://twitter.com/hydfn2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1093502", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "larryeth", + "displayName": "Bharatok", + "fid": 1093502, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15bafd65-10ae-4786-afd0-d8b06e655000/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x27691f9f24a87c6d19acea121f1baea104e682ab", + "etherscanUrl": "https://etherscan.io/address/0x27691f9f24a87c6d19acea121f1baea104e682ab", + "xHandle": "updeorianews", + "xUrl": "https://twitter.com/updeorianews", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1313689", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pakhisona502", + "displayName": "Ennio Maffel", + "fid": 1313689, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2733b6e2-d595-4fc2-a8f2-b4da83e8ce00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ffa57df5a736b4d51256c40e1d9a7d536bc59cc", + "etherscanUrl": "https://etherscan.io/address/0x7ffa57df5a736b4d51256c40e1d9a7d536bc59cc", + "xHandle": "enniomaffel", + "xUrl": "https://twitter.com/enniomaffel", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1306224", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xaldr0", + "displayName": "Xaldr0", + "fid": 1306224, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x591e187f82df06a06aa65ed5f96424df174f4406", + "etherscanUrl": "https://etherscan.io/address/0x591e187f82df06a06aa65ed5f96424df174f4406", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1023275", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ym9", + "displayName": "Nastaran", + "fid": 1023275, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ab4fd7b-cb62-49bc-834c-180502916600/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ae638c32924a3cbc98a60b81a37705acce0a34d", + "etherscanUrl": "https://etherscan.io/address/0x2ae638c32924a3cbc98a60b81a37705acce0a34d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1141671", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shah2080", + "displayName": "shahrokh Total Yaps 🍊,💊", + "fid": 1141671, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c12317cf-3d8a-425c-02fa-ceac76a3f400/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85c9acdf3219b6e375acdb55b6d96e0a75be257f", + "etherscanUrl": "https://etherscan.io/address/0x85c9acdf3219b6e375acdb55b6d96e0a75be257f", + "xHandle": "sh208080", + "xUrl": "https://twitter.com/sh208080", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1281012", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "goodwinglen33", + "displayName": "Mini Jesus MBTC", + "fid": 1281012, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/220c86ff-c2dc-4942-e9cd-2a83a5681f00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9879d3ad246d1f6d67fbb6846b1484ad24326b9c", + "etherscanUrl": "https://etherscan.io/address/0x9879d3ad246d1f6d67fbb6846b1484ad24326b9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1279638", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zohaib123", + "displayName": "zohaib123", + "fid": 1279638, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0d1ef4ee8e2626bf32f6d73cab290c4011348b16", + "etherscanUrl": "https://etherscan.io/address/0x0d1ef4ee8e2626bf32f6d73cab290c4011348b16", + "xHandle": "zohaib376986", + "xUrl": "https://twitter.com/zohaib376986", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1279397", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hajra123", + "displayName": "hajra123", + "fid": 1279397, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a9cdc0cfe7eade34d9035967078f8d0d540688a", + "etherscanUrl": "https://etherscan.io/address/0x6a9cdc0cfe7eade34d9035967078f8d0d540688a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1102933", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sarudrawss", + "displayName": "Saru", + "fid": 1102933, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc682bc5a6352ac46796d689e2fa548902d92ef04", + "etherscanUrl": "https://etherscan.io/address/0xc682bc5a6352ac46796d689e2fa548902d92ef04", + "xHandle": "sarudrawss7", + "xUrl": "https://twitter.com/sarudrawss7", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1199108", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arierost", + "displayName": "Arie Rost", + "fid": 1199108, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fd9affe-36d2-4f75-bae9-d6da0da0de00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf32f2a9a36e55a2394f04bf280ae9973f64606e0", + "etherscanUrl": "https://etherscan.io/address/0xf32f2a9a36e55a2394f04bf280ae9973f64606e0", + "xHandle": "rost01001100", + "xUrl": "https://twitter.com/rost01001100", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1190331", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "pumpdrop", + "displayName": "Dylan Mercer", + "fid": 1190331, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf5066a23dcb196a40d312f21e7285027e58e0f35", + "etherscanUrl": "https://etherscan.io/address/0xf5066a23dcb196a40d312f21e7285027e58e0f35", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1185324", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hubcap", + "displayName": "HubcapCryptoLoser", + "fid": 1185324, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/de7e10a5-2175-489a-97bf-20b25ead1200/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88f6253446908cd5d2a469365e65cf9a7ab0d7a6", + "etherscanUrl": "https://etherscan.io/address/0x88f6253446908cd5d2a469365e65cf9a7ab0d7a6", + "xHandle": "tdhatok12", + "xUrl": "https://twitter.com/tdhatok12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1168765", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mohamedzinllah", + "displayName": "Mohamed Abouzziane", + "fid": 1168765, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d710a1f3-150a-4fef-0165-cbd8dc1fe600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48e66044ce3656099c21d511c7e5e309e7da6027", + "etherscanUrl": "https://etherscan.io/address/0x48e66044ce3656099c21d511c7e5e309e7da6027", + "xHandle": "mohamedabouzzin", + "xUrl": "https://twitter.com/mohamedabouzzin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1160911", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stellaliberty", + "displayName": "Stella Liberty", + "fid": 1160911, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce1daa6-c8a1-41b6-2590-a1854d7dae00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f7940adc7a883af12b14d713902bebf76040823", + "etherscanUrl": "https://etherscan.io/address/0x3f7940adc7a883af12b14d713902bebf76040823", + "xHandle": "stella_liberty", + "xUrl": "https://twitter.com/stella_liberty", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146048", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "layaparto", + "displayName": "مهندس خالی", + "fid": 1146048, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4be12574-fed9-46d0-cab5-81ac5783c600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5bbf45a298c8c10b8300b6961ff57aea708f3c01", + "etherscanUrl": "https://etherscan.io/address/0x5bbf45a298c8c10b8300b6961ff57aea708f3c01", + "xHandle": "lalilaliiii24", + "xUrl": "https://twitter.com/lalilaliiii24", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1158190", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "web3anie", + "displayName": "Anie", + "fid": 1158190, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a42b173-8ca3-4e2d-e1de-6a6cd7657100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3511e00f1d1199b8f05a61af3a59744eb52aa434", + "etherscanUrl": "https://etherscan.io/address/0x3511e00f1d1199b8f05a61af3a59744eb52aa434", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1137707", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "delovaya", + "displayName": "Delovaya", + "fid": 1137707, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/855a50e4-ac92-42ba-4b96-cc8a4087ec00/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x403b20157209741316f02d774f851cdddbae8353", + "etherscanUrl": "https://etherscan.io/address/0x403b20157209741316f02d774f851cdddbae8353", + "xHandle": "simansicfm28442", + "xUrl": "https://twitter.com/simansicfm28442", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1147866", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "koliwizzie", + "displayName": "Alabi Kolade", + "fid": 1147866, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcbd6b98febaf6c560b9e9de1d3293a26fa3fda15", + "etherscanUrl": "https://etherscan.io/address/0xcbd6b98febaf6c560b9e9de1d3293a26fa3fda15", + "xHandle": "dwicked1111", + "xUrl": "https://twitter.com/dwicked1111", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136599", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dreamgirlnsfw", + "displayName": "Dream Girl", + "fid": 1136599, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cf20f72-c70f-4e2b-1206-de64fa3b3700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80403ea2d18e5483bbd39472982308d8c3be0811", + "etherscanUrl": "https://etherscan.io/address/0x80403ea2d18e5483bbd39472982308d8c3be0811", + "xHandle": "chrisgr36432744", + "xUrl": "https://twitter.com/chrisgr36432744", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143935", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sanwal-73", + "displayName": "Sanwal Javaid(Ø,G)", + "fid": 1143935, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0527c4ac-a64f-4abe-ce7a-e0650d2a7800/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad5a147f971c9e413c5dc394cc257e11c6916c3c", + "etherscanUrl": "https://etherscan.io/address/0xad5a147f971c9e413c5dc394cc257e11c6916c3c", + "xHandle": "sanwal173", + "xUrl": "https://twitter.com/sanwal173", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127082", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dinikanu", + "displayName": "Shamsu iliyasu abubakar WIZO", + "fid": 1127082, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d60c07a-7c96-43d3-796c-60f8c6e8e700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xebab4b7085aefdc9f5fc357f6413de7dc86c06e0", + "etherscanUrl": "https://etherscan.io/address/0xebab4b7085aefdc9f5fc357f6413de7dc86c06e0", + "xHandle": "a2shamsu", + "xUrl": "https://twitter.com/a2shamsu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136616", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sudocam", + "displayName": "sudocam", + "fid": 1136616, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6638b9db-4ba5-4860-7a0b-f87fd7387500/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6cf686ee6d90cf97648654565ddf33e3a1002fc1", + "etherscanUrl": "https://etherscan.io/address/0x6cf686ee6d90cf97648654565ddf33e3a1002fc1", + "xHandle": "metadire", + "xUrl": "https://twitter.com/metadire", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143975", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "josikhan", + "displayName": "Josikhan", + "fid": 1143975, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x85adb36a9812171ffed7c9e639d0a6c2cebd7c24", + "etherscanUrl": "https://etherscan.io/address/0x85adb36a9812171ffed7c9e639d0a6c2cebd7c24", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1119421", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "folko", + "displayName": "Юрій Соломонович", + "fid": 1119421, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da36cced-e469-4ba5-9688-fc422f904100/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd20db1d9cedbd5aa4d650fa2c898683b07061789", + "etherscanUrl": "https://etherscan.io/address/0xd20db1d9cedbd5aa4d650fa2c898683b07061789", + "xHandle": "solomonovi26196", + "xUrl": "https://twitter.com/solomonovi26196", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1067730", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "9586", + "displayName": "SHAIKH NASIM", + "fid": 1067730, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8feaf5cb-4a9a-489e-c02f-6d66c4bae100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17b589adf041e4a2e641bc958459f984df2a6430", + "etherscanUrl": "https://etherscan.io/address/0x17b589adf041e4a2e641bc958459f984df2a6430", + "xHandle": "shaikhnasi12518", + "xUrl": "https://twitter.com/shaikhnasi12518", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1137759", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mdafzal65122", + "displayName": "Asmil (Ø, G) /⌘🛠️", + "fid": 1137759, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d33d6c93-1c7e-46bc-a1ff-56bd58273d00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d4726ab8ee9ce8a5e04e29fd3fdb875ffa606a5", + "etherscanUrl": "https://etherscan.io/address/0x2d4726ab8ee9ce8a5e04e29fd3fdb875ffa606a5", + "xHandle": "mdasmil99", + "xUrl": "https://twitter.com/mdasmil99", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136820", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mayor2506", + "displayName": "Mayorz", + "fid": 1136820, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3498506a-9053-4478-90b5-f63d76530c00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee7a35487e5460655f7d8a87c1febdc5854c56ca", + "etherscanUrl": "https://etherscan.io/address/0xee7a35487e5460655f7d8a87c1febdc5854c56ca", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1136118", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "softsain", + "displayName": "Lawan Hussain", + "fid": 1136118, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6411615a-a2b7-4fa8-9c02-458edf708b00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5774cf049223319e6bf6cf97e87a159f83c50f0b", + "etherscanUrl": "https://etherscan.io/address/0x5774cf049223319e6bf6cf97e87a159f83c50f0b", + "xHandle": "softsain", + "xUrl": "https://twitter.com/softsain", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1112400", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "danielgarcia", + "displayName": "Daniel Garcia", + "fid": 1112400, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c8d2633-735d-48a4-d97b-f94b1ea24700/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2ce75dc971dd55fbb5aafef38074c3b3adf8663", + "etherscanUrl": "https://etherscan.io/address/0xf2ce75dc971dd55fbb5aafef38074c3b3adf8663", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129275", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ameenu222", + "displayName": "Al_AMEEN", + "fid": 1129275, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/12bf00f9-2171-4527-472a-3e18781f9000/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd43becb017cf604b2a7bde835fa25eae95f294d7", + "etherscanUrl": "https://etherscan.io/address/0xd43becb017cf604b2a7bde835fa25eae95f294d7", + "xHandle": "alameen86108923", + "xUrl": "https://twitter.com/alameen86108923", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130296", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ziyouzizai", + "displayName": "ziyouzizai", + "fid": 1130296, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49ce5d06e4a493289963ac3018a1525fa3244342", + "etherscanUrl": "https://etherscan.io/address/0x49ce5d06e4a493289963ac3018a1525fa3244342", + "xHandle": "yangzizai331", + "xUrl": "https://twitter.com/yangzizai331", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130510", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ngochai", + "displayName": "Ngochai", + "fid": 1130510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d7009f6-d521-4913-7715-261200867c00/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57127e9ef99e55cb7645a68ba4d8e702da6737a9", + "etherscanUrl": "https://etherscan.io/address/0x57127e9ef99e55cb7645a68ba4d8e702da6737a9", + "xHandle": "quanquang393609", + "xUrl": "https://twitter.com/quanquang393609", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1127188", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "booper", + "displayName": "booper", + "fid": 1127188, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5507220f-f66d-4d22-a6d5-6f33f270f400/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd0d5a3117563eb8eb2041070400a3db7f0a41c5c", + "etherscanUrl": "https://etherscan.io/address/0xd0d5a3117563eb8eb2041070400a3db7f0a41c5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1126143", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ezhil", + "displayName": "I am Boss", + "fid": 1126143, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x968a32756ec46f93d4edcc3b7b94989bd2bc586d", + "etherscanUrl": "https://etherscan.io/address/0x968a32756ec46f93d4edcc3b7b94989bd2bc586d", + "xHandle": "pradanayafi1899", + "xUrl": "https://twitter.com/pradanayafi1899", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1110997", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tripfashion", + "displayName": "Trip Fashion", + "fid": 1110997, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d68d1a30-85c9-436f-7b2b-7f418064e200/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fee1b354c68a348bea486726dcc8a1c74c54826", + "etherscanUrl": "https://etherscan.io/address/0x9fee1b354c68a348bea486726dcc8a1c74c54826", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1059776", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "haryport", + "displayName": "HARYPORT", + "fid": 1059776, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e861ab7f-557b-4380-380d-cd8135048900/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62e977e03307bc1161156ca913bac921d3d3a0f3", + "etherscanUrl": "https://etherscan.io/address/0x62e977e03307bc1161156ca913bac921d3d3a0f3", + "xHandle": "haryport", + "xUrl": "https://twitter.com/haryport", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117051", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ewqfewg", + "displayName": "fewgrehb", + "fid": 1117051, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d808fcba-08db-46ba-3b39-4e185226d000/original", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d369ab50f792ae9be1fe05d134c8789e3699406", + "etherscanUrl": "https://etherscan.io/address/0x2d369ab50f792ae9be1fe05d134c8789e3699406", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905461", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ellabentha", + "displayName": "EllaBentha", + "fid": 905461, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/20b10c90-ac60-4d28-7c5d-3fa1362fa800/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x879083d692041d01f2fc889f2a9c18d9d5da342c", + "etherscanUrl": "https://etherscan.io/address/0x879083d692041d01f2fc889f2a9c18d9d5da342c", + "xHandle": "vanzbungsu", + "xUrl": "https://twitter.com/vanzbungsu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_905416", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marciajimm", + "displayName": "MarciaJimm", + "fid": 905416, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/31df271b-7d8a-45b0-d0a1-a938319a6900/rectcrop3", + "followers": 1, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x749a12204574284e5fa9931d2edcfef103390ddd", + "etherscanUrl": "https://etherscan.io/address/0x749a12204574284e5fa9931d2edcfef103390ddd", + "xHandle": "safariannur", + "xUrl": "https://twitter.com/safariannur", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1457190", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ancorinox", + "displayName": "ancorinox", + "fid": 1457190, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd41a14c-2453-485a-7ec6-28e950103b00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf989a6b0d5c5ec48baad8465b600d78c235f622", + "etherscanUrl": "https://etherscan.io/address/0xaf989a6b0d5c5ec48baad8465b600d78c235f622", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1072377", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rahmas", + "displayName": "rahmaa", + "fid": 1072377, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/91dc62d7-e448-4eb4-0557-d2f51cd00a00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48e84c0593f67e1358c37feb78bfec7b8cfca775", + "etherscanUrl": "https://etherscan.io/address/0x48e84c0593f67e1358c37feb78bfec7b8cfca775", + "xHandle": "rahmasiaa", + "xUrl": "https://twitter.com/rahmasiaa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1397273", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wintermeow", + "displayName": "wintermeow", + "fid": 1397273, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x454c444c24b9f4dd94b3fd67bb4eff6743c45f7d", + "etherscanUrl": "https://etherscan.io/address/0x454c444c24b9f4dd94b3fd67bb4eff6743c45f7d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1416408", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "derrezz", + "displayName": "derrezz", + "fid": 1416408, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdbb3a008fcf9370cafa5ef230c20f8c34c3d8b81", + "etherscanUrl": "https://etherscan.io/address/0xdbb3a008fcf9370cafa5ef230c20f8c34c3d8b81", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1412753", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "huceexulin", + "displayName": "huceexulin", + "fid": 1412753, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efd98f2d-10b2-4e7e-43ee-6671dce62f00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f3db1f04b42d082e987a1e6c0c42c1d7bcf1483", + "etherscanUrl": "https://etherscan.io/address/0x3f3db1f04b42d082e987a1e6c0c42c1d7bcf1483", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1401973", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "rayhan3070", + "displayName": "rayhan3070", + "fid": 1401973, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5aca061e66d848a2afb2a84f171c18853ab81f3a", + "etherscanUrl": "https://etherscan.io/address/0x5aca061e66d848a2afb2a84f171c18853ab81f3a", + "xHandle": "rayhan3070", + "xUrl": "https://twitter.com/rayhan3070", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1397981", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "issa5566", + "displayName": "issa5566", + "fid": 1397981, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1fcb7242b8a9e160749a1e6599c4cb509cbd568d", + "etherscanUrl": "https://etherscan.io/address/0x1fcb7242b8a9e160749a1e6599c4cb509cbd568d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1396444", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thegoodcompany", + "displayName": "SLF@thegoodcompany", + "fid": 1396444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3091da92-3c6a-4df5-e231-1d0bc30b9c00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdd2b2316c2d4dcf258f000e9444508fa0e6ddda", + "etherscanUrl": "https://etherscan.io/address/0xbdd2b2316c2d4dcf258f000e9444508fa0e6ddda", + "xHandle": "slf_93", + "xUrl": "https://twitter.com/slf_93", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1395128", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "craftyfish13", + "displayName": "craftyfish13", + "fid": 1395128, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff8a05f45e579c0548237d212e288d86c6ecce9e", + "etherscanUrl": "https://etherscan.io/address/0xff8a05f45e579c0548237d212e288d86c6ecce9e", + "xHandle": "pickrellta54174", + "xUrl": "https://twitter.com/pickrellta54174", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1393955", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "tatoolaya", + "displayName": "tatoolaya", + "fid": 1393955, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x603219fbe5adb191f1ceb7420fb2a7e82e6bf6a3", + "etherscanUrl": "https://etherscan.io/address/0x603219fbe5adb191f1ceb7420fb2a7e82e6bf6a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1098874", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nogritt", + "displayName": "NOGRITT", + "fid": 1098874, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/595b969d-9e60-4c67-5dc4-984f61365300/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60b432cb10f2bc5817e86ce53331f4e17c22c095", + "etherscanUrl": "https://etherscan.io/address/0x60b432cb10f2bc5817e86ce53331f4e17c22c095", + "xHandle": "alexept116636", + "xUrl": "https://twitter.com/alexept116636", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1384662", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reblake", + "displayName": "reblake", + "fid": 1384662, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3452ff1cde3d3835bf07c7cb246c7bab86fab198", + "etherscanUrl": "https://etherscan.io/address/0x3452ff1cde3d3835bf07c7cb246c7bab86fab198", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1376580", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "iqrayudha", + "displayName": "iqrayudha", + "fid": 1376580, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f554000d18201da9bd695d1de8ab0a9f6cacaef", + "etherscanUrl": "https://etherscan.io/address/0x6f554000d18201da9bd695d1de8ab0a9f6cacaef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1373827", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "leonardo100", + "displayName": "leonardo100", + "fid": 1373827, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8dde127429207094c64193180728e9c75ebee63", + "etherscanUrl": "https://etherscan.io/address/0xe8dde127429207094c64193180728e9c75ebee63", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1373761", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hosain", + "displayName": "hosain", + "fid": 1373761, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95e044eb-c3e1-47ca-ae1a-6cfce9f2ce00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd179a5eced3733d1186d7a8bc6d3d757e7a4e0ea", + "etherscanUrl": "https://etherscan.io/address/0xd179a5eced3733d1186d7a8bc6d3d757e7a4e0ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1363940", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "benres", + "displayName": "benres", + "fid": 1363940, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73469cb2e3af268c729b3e69fc956ce8418e3963", + "etherscanUrl": "https://etherscan.io/address/0x73469cb2e3af268c729b3e69fc956ce8418e3963", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1363156", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "liquatalizzy", + "displayName": "liquatalizzy", + "fid": 1363156, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x735fe853cb4c47e682e67b3bcf6e1792bdead7c8", + "etherscanUrl": "https://etherscan.io/address/0x735fe853cb4c47e682e67b3bcf6e1792bdead7c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128063", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ammarmm", + "displayName": "NAZIRU M USMAN", + "fid": 1128063, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2dc44c14-5754-4172-0630-708fcfa46900/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb39122c23c217535c9f328705c170337e6da1a99", + "etherscanUrl": "https://etherscan.io/address/0xb39122c23c217535c9f328705c170337e6da1a99", + "xHandle": "naziammar72", + "xUrl": "https://twitter.com/naziammar72", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1361396", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "xxvhinxx", + "displayName": "xxvhinxx", + "fid": 1361396, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76a00409f77025129962d2da6a95c80be4c685c6", + "etherscanUrl": "https://etherscan.io/address/0x76a00409f77025129962d2da6a95c80be4c685c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1137998", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "jithin-", + "displayName": "jithin-", + "fid": 1137998, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e5df694a05341eca8264247b7dc2aa56c3584ff", + "etherscanUrl": "https://etherscan.io/address/0x3e5df694a05341eca8264247b7dc2aa56c3584ff", + "xHandle": "jithin91236", + "xUrl": "https://twitter.com/jithin91236", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1078925", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamun110", + "displayName": "Mamun", + "fid": 1078925, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3631145-7c4e-457a-6ad6-d2c66d30bb00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74db3f1546ed52e5d998a077494bb04ba01d7f35", + "etherscanUrl": "https://etherscan.io/address/0x74db3f1546ed52e5d998a077494bb04ba01d7f35", + "xHandle": "mhossen10263318", + "xUrl": "https://twitter.com/mhossen10263318", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1351317", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "greygoose1234", + "displayName": "greygoose1234", + "fid": 1351317, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2bc3db467e0a2c21ce1252c1937307f5874cdb8", + "etherscanUrl": "https://etherscan.io/address/0xb2bc3db467e0a2c21ce1252c1937307f5874cdb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1338742", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "stinan", + "displayName": "Stinan", + "fid": 1338742, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7236160-6e5d-413e-1ed5-ecbd969a5d00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf59cff45e490b5865dcf59854ffb596fbb4a7118", + "etherscanUrl": "https://etherscan.io/address/0xf59cff45e490b5865dcf59854ffb596fbb4a7118", + "xHandle": "greenmemeking", + "xUrl": "https://twitter.com/greenmemeking", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1328897", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "hammerock", + "displayName": "Shubham Shoora", + "fid": 1328897, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bca34c9e-6c98-4da7-4d8b-02af30fd7800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcbcdf4077a39d885c2962d2ebb50667d4f69982d", + "etherscanUrl": "https://etherscan.io/address/0xcbcdf4077a39d885c2962d2ebb50667d4f69982d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109876", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "shellelectric", + "displayName": "LU-MI", + "fid": 1109876, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e128e5a3-8b8e-4930-f249-58878aebc600/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a22cf7195f342defb2737a63465a819aaf3ded1", + "etherscanUrl": "https://etherscan.io/address/0x7a22cf7195f342defb2737a63465a819aaf3ded1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1320473", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sirpotter7", + "displayName": "Sir Potter", + "fid": 1320473, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78d5221b-c90a-4aa0-1c90-ca4d2e180100/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2d5cae07dd83704a2b129052adc52c03d936e0c", + "etherscanUrl": "https://etherscan.io/address/0xd2d5cae07dd83704a2b129052adc52c03d936e0c", + "xHandle": "mykel_potter", + "xUrl": "https://twitter.com/mykel_potter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1307320", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamannaseer", + "displayName": "Aishatu muhammadu", + "fid": 1307320, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c90f5d94-6fe2-47b1-b7c2-426612be7800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x63c873f701d7bdf650992901b7cc9d3ba0a559bd", + "etherscanUrl": "https://etherscan.io/address/0x63c873f701d7bdf650992901b7cc9d3ba0a559bd", + "xHandle": "aishatu96550137", + "xUrl": "https://twitter.com/aishatu96550137", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1111106", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ony25", + "displayName": "Nicolas nic openledger Arichain", + "fid": 1111106, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/595d6ac8-38d8-4a16-a2a2-816a6ab66800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d4684b5c072e05cec90fcbe233421453ac28b50", + "etherscanUrl": "https://etherscan.io/address/0x3d4684b5c072e05cec90fcbe233421453ac28b50", + "xHandle": "alieguo", + "xUrl": "https://twitter.com/alieguo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1218780", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "blazebro", + "displayName": "Blazebro", + "fid": 1218780, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/df4a59af-408b-4592-5a51-c83fbb5f0500/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8443153faef11fbfc4d6740c4a3c29abc5c9f656", + "etherscanUrl": "https://etherscan.io/address/0x8443153faef11fbfc4d6740c4a3c29abc5c9f656", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1248974", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "humzaraees", + "displayName": "humzaraees", + "fid": 1248974, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d1e4fc98-fb76-43d4-7f86-73b4e80b0c00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb79c29890dd227866eca4667323305a3aa7a6d2e", + "etherscanUrl": "https://etherscan.io/address/0xb79c29890dd227866eca4667323305a3aa7a6d2e", + "xHandle": "humzaraees6", + "xUrl": "https://twitter.com/humzaraees6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128556", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "thomagxy", + "displayName": "Terwase Yange", + "fid": 1128556, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1309a32b-487e-4f97-7035-c8ab9bf46e00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c2b9d97007835bc816589328ee17f2b7cf10b17", + "etherscanUrl": "https://etherscan.io/address/0x2c2b9d97007835bc816589328ee17f2b7cf10b17", + "xHandle": "anyam_azinga", + "xUrl": "https://twitter.com/anyam_azinga", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1057563", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "2104solya", + "displayName": "GM", + "fid": 1057563, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/565c820c-3767-4e7f-853f-0aea1ff04600/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf888396954f0b290004c07ade9d5eb9b6f826b7e", + "etherscanUrl": "https://etherscan.io/address/0xf888396954f0b290004c07ade9d5eb9b6f826b7e", + "xHandle": "tio1320294", + "xUrl": "https://twitter.com/tio1320294", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1069370", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "adindanaiza", + "displayName": "Adindanaiza", + "fid": 1069370, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95d99d07-df64-44c6-8369-b5e12eac5700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96b6c7ff6e985e64e7313ef270bab20ceb3935ad", + "etherscanUrl": "https://etherscan.io/address/0x96b6c7ff6e985e64e7313ef270bab20ceb3935ad", + "xHandle": "saginom1", + "xUrl": "https://twitter.com/saginom1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097040", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dialoz", + "displayName": "Alex 🐐 🚀$AGO ☉ ℝ ∀", + "fid": 1097040, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ea1281f-9a3e-4448-45ee-3aaea52f1200/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0797fcc27e4a256d08e67a9902fda2189752743f", + "etherscanUrl": "https://etherscan.io/address/0x0797fcc27e4a256d08e67a9902fda2189752743f", + "xHandle": "dialoz1980", + "xUrl": "https://twitter.com/dialoz1980", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1003530", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mamzy12", + "displayName": "Dady Mamzy", + "fid": 1003530, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c04ee47-dc28-4cb7-6f03-f3537e96a000/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x179631e36d9dc47df7a453898625f10800cd20c1", + "etherscanUrl": "https://etherscan.io/address/0x179631e36d9dc47df7a453898625f10800cd20c1", + "xHandle": "freshmamzy", + "xUrl": "https://twitter.com/freshmamzy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1097798", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "nurudeen33", + "displayName": "NURUDEEN MOHAMMED TUKUR", + "fid": 1097798, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b383efbf016d668443507eaf109aef4f946302e", + "etherscanUrl": "https://etherscan.io/address/0x7b383efbf016d668443507eaf109aef4f946302e", + "xHandle": "nurudeenmtukur", + "xUrl": "https://twitter.com/nurudeenmtukur", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1156274", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "amywilsonmiya", + "displayName": "Amy Wilsonmiya", + "fid": 1156274, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76507245-d4f8-49be-5faa-c7d16e8adc00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3ce1a974e632ede5b2d464525dce409925fd9de4", + "etherscanUrl": "https://etherscan.io/address/0x3ce1a974e632ede5b2d464525dce409925fd9de4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1140371", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mirgh82", + "displayName": "Amir Asli | amiacycle.base.eth", + "fid": 1140371, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb0aa637-b0c5-45e3-2714-287bbf98ba00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0667ef482be88caf571e23b1ad29abb029cd0543", + "etherscanUrl": "https://etherscan.io/address/0x0667ef482be88caf571e23b1ad29abb029cd0543", + "xHandle": "mirgh82", + "xUrl": "https://twitter.com/mirgh82", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1084529", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "azeempaa", + "displayName": "alone", + "fid": 1084529, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/770fd2b1-4cea-49e7-b196-b2b111ecf300/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaecde093ab1217e090f1994ec96981d58cd43d30", + "etherscanUrl": "https://etherscan.io/address/0xaecde093ab1217e090f1994ec96981d58cd43d30", + "xHandle": "azeempaa", + "xUrl": "https://twitter.com/azeempaa", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1095408", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dfwmjenni", + "displayName": "Huncho Mamii🥴", + "fid": 1095408, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4577f63-8f73-4902-77fb-b9d102566100/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde41ddf9806b7ac989c6d418dcc16f486007747c", + "etherscanUrl": "https://etherscan.io/address/0xde41ddf9806b7ac989c6d418dcc16f486007747c", + "xHandle": "jennifernebo2", + "xUrl": "https://twitter.com/jennifernebo2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148887", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "barbarosa", + "displayName": "WIZO (🍊,💊) | HUDL", + "fid": 1148887, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d04fa47-90bf-4334-c28d-a13b50649a00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6704339c8c38bf55fed17b3b25dcc2f184b0f482", + "etherscanUrl": "https://etherscan.io/address/0x6704339c8c38bf55fed17b3b25dcc2f184b0f482", + "xHandle": "khalidrajpoot13", + "xUrl": "https://twitter.com/khalidrajpoot13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1148871", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "joeydep", + "displayName": "Jody Depasquale", + "fid": 1148871, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c96f3bfa-0922-4c8a-86bf-d1d7c1ddd900/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8116e246de8c46df212b8f3de4ccdedf37c2ecf6", + "etherscanUrl": "https://etherscan.io/address/0x8116e246de8c46df212b8f3de4ccdedf37c2ecf6", + "xHandle": "jodydepasquale", + "xUrl": "https://twitter.com/jodydepasquale", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1142300", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dudahr25", + "displayName": "dudahr25", + "fid": 1142300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fc7945711fa219296876d79d902aa429211cfec", + "etherscanUrl": "https://etherscan.io/address/0x0fc7945711fa219296876d79d902aa429211cfec", + "xHandle": "dudahr25", + "xUrl": "https://twitter.com/dudahr25", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1147179", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "issal002", + "displayName": "Content_Enthusiast 💻📝", + "fid": 1147179, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baadbf93-4d4d-4699-ccb9-61ee2df4a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x464a8c4e5bebf7fe822971a544c5622e1e8eef9e", + "etherscanUrl": "https://etherscan.io/address/0x464a8c4e5bebf7fe822971a544c5622e1e8eef9e", + "xHandle": "sirisarck", + "xUrl": "https://twitter.com/sirisarck", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1135044", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "ajibowo", + "displayName": "Aji Bowo", + "fid": 1135044, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd6b939c11a9f85b7077665f316a2d29b0d5de81", + "etherscanUrl": "https://etherscan.io/address/0xcd6b939c11a9f85b7077665f316a2d29b0d5de81", + "xHandle": "ajibowo95", + "xUrl": "https://twitter.com/ajibowo95", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1146172", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "mirrorcoregaia", + "displayName": "STARGAIA", + "fid": 1146172, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5d3b900-a85e-41f5-6867-daf02dee5700/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd0f48fa292dafeb506a954efe93bc99103824290", + "etherscanUrl": "https://etherscan.io/address/0xd0f48fa292dafeb506a954efe93bc99103824290", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_926139", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "fnjq", + "displayName": "Peter", + "fid": 926139, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9431a028-ec4c-45a3-fb4d-4d952a0aaf00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61e56f586c9c4506cf4236327200b6e9f4bc101e", + "etherscanUrl": "https://etherscan.io/address/0x61e56f586c9c4506cf4236327200b6e9f4bc101e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1145338", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "screenblock", + "displayName": "@screenblock", + "fid": 1145338, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/241df8d3-41bd-4cb5-bfbe-e112a3e67b00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfbb5f48e9cea93d9b13aacf61dc372b44b08b484", + "etherscanUrl": "https://etherscan.io/address/0xfbb5f48e9cea93d9b13aacf61dc372b44b08b484", + "xHandle": "screenblock", + "xUrl": "https://twitter.com/screenblock", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1037578", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "embersyntax", + "displayName": "EmberSyntax", + "fid": 1037578, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/369a9508-92d4-4aea-d4b2-8196a710f700/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e60c1985e831549d3e70fe3e8f6b1752a31df8f", + "etherscanUrl": "https://etherscan.io/address/0x4e60c1985e831549d3e70fe3e8f6b1752a31df8f", + "xHandle": "qrnfn17755774", + "xUrl": "https://twitter.com/qrnfn17755774", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1143469", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "renu44", + "displayName": "Renu Akter", + "fid": 1143469, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c23cbe7-cf09-4839-828f-eb48959a6700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc74513a35adcf21c19805f9e739b6f18207e6dc5", + "etherscanUrl": "https://etherscan.io/address/0xc74513a35adcf21c19805f9e739b6f18207e6dc5", + "xHandle": "renuakter9", + "xUrl": "https://twitter.com/renuakter9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1115995", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "bclattimore", + "displayName": "Bonnie Lattimore", + "fid": 1115995, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28ed279c-a4b1-4087-eb6a-afa21ff61800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda34e8712b5dc6bdd32d6be8a6b5f67fce57fdd6", + "etherscanUrl": "https://etherscan.io/address/0xda34e8712b5dc6bdd32d6be8a6b5f67fce57fdd6", + "xHandle": "bclattimore", + "xUrl": "https://twitter.com/bclattimore", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1139619", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "slomoz", + "displayName": "Slomoz", + "fid": 1139619, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be8deecf-57c0-45e4-0124-f4f136e1a700/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x225ace25fbfde0fe2bab862e3a3c8f0558c7c994", + "etherscanUrl": "https://etherscan.io/address/0x225ace25fbfde0fe2bab862e3a3c8f0558c7c994", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1137766", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "sushanta123", + "displayName": "Pintu Swain", + "fid": 1137766, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8645bea-e03d-4e38-d70c-87065f492700/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb2e6fc1addafaafeeb58b5946a2c19de60398af5", + "etherscanUrl": "https://etherscan.io/address/0xb2e6fc1addafaafeeb58b5946a2c19de60398af5", + "xHandle": "pintuswain068", + "xUrl": "https://twitter.com/pintuswain068", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1009740", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "zoe-walker", + "displayName": "zoe-walker", + "fid": 1009740, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0acff3f3-a98f-4be8-4c1c-0d3259359500/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57fee62aff6700e241db285f430f28447558a375", + "etherscanUrl": "https://etherscan.io/address/0x57fee62aff6700e241db285f430f28447558a375", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1009735", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "reuben-jones", + "displayName": "reuben-jones", + "fid": 1009735, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9ccd79a-c03f-4ddd-7015-f43cf4de0f00/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2e303716cc188eb503623fc7852dae2f9a87df95", + "etherscanUrl": "https://etherscan.io/address/0x2e303716cc188eb503623fc7852dae2f9a87df95", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1130497", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "arfat82804", + "displayName": "Arfat82804", + "fid": 1130497, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eacea57-2445-47ba-3934-cffe20619800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd40f0e8ca18cc109bc5ea302b89f4efde6aeef58", + "etherscanUrl": "https://etherscan.io/address/0xd40f0e8ca18cc109bc5ea302b89f4efde6aeef58", + "xHandle": "iccteam9", + "xUrl": "https://twitter.com/iccteam9", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_981086", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "desmondsilvery", + "displayName": "DesmondSilvery", + "fid": 981086, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd159786-3224-4554-3171-ae34c405b900/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1d1ce28b6572ad2ec1a7f9efd40900bb67a03ca1", + "etherscanUrl": "https://etherscan.io/address/0x1d1ce28b6572ad2ec1a7f9efd40900bb67a03ca1", + "xHandle": "wyattlewis04", + "xUrl": "https://twitter.com/wyattlewis04", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1129966", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "olami-dey10", + "displayName": "Olami_dey10", + "fid": 1129966, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7731ebb5-c2cc-4f5f-d644-c785754cae00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc652e89ca3532a5e413a0a44457ba0f10b09920f", + "etherscanUrl": "https://etherscan.io/address/0xc652e89ca3532a5e413a0a44457ba0f10b09920f", + "xHandle": "olami_dey10", + "xUrl": "https://twitter.com/olami_dey10", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128032", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "squishylpb", + "displayName": "Lpbsforever", + "fid": 1128032, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/924d8eed-3ab3-42b8-4e17-a7450a8b4800/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3df7f30fd06abe9ed00ee7b993394a1ced3040db", + "etherscanUrl": "https://etherscan.io/address/0x3df7f30fd06abe9ed00ee7b993394a1ced3040db", + "xHandle": "santan65063", + "xUrl": "https://twitter.com/santan65063", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1128401", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "quangquan", + "displayName": "quangquan", + "fid": 1128401, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcc6ef07-a3b1-40d8-4a46-daa867452900/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6576379beb961c58660be1614b494b556a0458e", + "etherscanUrl": "https://etherscan.io/address/0xd6576379beb961c58660be1614b494b556a0458e", + "xHandle": "quanquang393609", + "xUrl": "https://twitter.com/quanquang393609", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1121924", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "marufr523", + "displayName": "Be Mine", + "fid": 1121924, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a09d1bf7-bd12-4d50-ecb3-b6ceca89c200/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd5c89eafe8430a1cd7dea3a92ec65ab5e2ad8b97", + "etherscanUrl": "https://etherscan.io/address/0xd5c89eafe8430a1cd7dea3a92ec65ab5e2ad8b97", + "xHandle": "chowdhurym056", + "xUrl": "https://twitter.com/chowdhurym056", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1106285", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "staccomtperto198", + "displayName": "Nisha Brooks", + "fid": 1106285, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f12ef0c5-90fb-44f1-92e0-4f0a1457d400/rectcrop3", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46d0cc3890d865c4a6b125d1f800a8dbcb9a2bde", + "etherscanUrl": "https://etherscan.io/address/0x46d0cc3890d865c4a6b125d1f800a8dbcb9a2bde", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1118650", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "drskisr", + "displayName": "gdkkyktsk", + "fid": 1118650, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8dc73b2-9efe-4ec4-da6c-f464c5066400/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b1e69c240eb2d1c824d0ea0b7049a8941cbf5d1", + "etherscanUrl": "https://etherscan.io/address/0x8b1e69c240eb2d1c824d0ea0b7049a8941cbf5d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117095", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "aewgweg", + "displayName": "eqwrewq", + "fid": 1117095, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c2d3d65-499a-40f5-6952-bbf1c611c400/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e265966b1adc918ee1fb9a31c2a3a70d4130ad2", + "etherscanUrl": "https://etherscan.io/address/0x7e265966b1adc918ee1fb9a31c2a3a70d4130ad2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117050", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wefewgre", + "displayName": "wqrdfewqgf", + "fid": 1117050, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ccb2f67b-2758-42b0-cfec-23d1057fd400/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9615f8b1e1bbd4367605ba52d75be08e7b935e88", + "etherscanUrl": "https://etherscan.io/address/0x9615f8b1e1bbd4367605ba52d75be08e7b935e88", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117047", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "czxfeg", + "displayName": "safwegvew", + "fid": 1117047, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef878300-b44c-4dc8-3b63-cbb1bd356f00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x631cda4b6ed860d1a26852efa7e75da8a690bf49", + "etherscanUrl": "https://etherscan.io/address/0x631cda4b6ed860d1a26852efa7e75da8a690bf49", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117080", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gwerger", + "displayName": "fqqwgw", + "fid": 1117080, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5fda6033-8968-4f7f-39ce-730ca899bb00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xab0d06bda74f0c7525138dfc4e022963df78af52", + "etherscanUrl": "https://etherscan.io/address/0xab0d06bda74f0c7525138dfc4e022963df78af52", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117034", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "gsbogsgno", + "displayName": "gniosgnos", + "fid": 1117034, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49803a26-9ca3-4f03-b2a4-c462ed5e4e00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x729b783850545fe790f57dc1af9f41e4165152f2", + "etherscanUrl": "https://etherscan.io/address/0x729b783850545fe790f57dc1af9f41e4165152f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117074", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "dafewge", + "displayName": "trwet", + "fid": 1117074, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae425a9e-9dfa-45bd-39cb-b57143863600/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03a7bc5f240d2ff4790a82f1d6515d647f28c118", + "etherscanUrl": "https://etherscan.io/address/0x03a7bc5f240d2ff4790a82f1d6515d647f28c118", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117077", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "wqerewt", + "displayName": "wqfewqgf", + "fid": 1117077, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/013bee92-e786-49d2-30d6-b18539407500/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa26143ece69f300d906fe4ea78e155cd4a546edf", + "etherscanUrl": "https://etherscan.io/address/0xa26143ece69f300d906fe4ea78e155cd4a546edf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1117048", + "balanceRaw": "0", + "balanceFormatted": "", + "username": "qewrew", + "displayName": "ewqgqgwgw", + "fid": 1117048, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1c80345d-c243-41ec-a3b6-43a50e2a8a00/original", + "followers": 0, + "lastTransferAt": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1684e78d88421844f6e072da45f513811f9b16cc", + "etherscanUrl": "https://etherscan.io/address/0x1684e78d88421844f6e072da45f513811f9b16cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + } + ], + "tokenSymbol": null, + "tokenDecimals": null, + "lastUpdatedTimestamp": "2025-11-17T21:22:57.533Z", + "lastFetchSettings": { + "source": "farcasterChannel", + "channelName": "nouns", + "channelFilter": "all" + } +} diff --git a/src/config/nouns/initialSpaces/exploreTabs/nounsNFTholders.json b/src/config/nouns/initialSpaces/exploreTabs/nounsNFTholders.json new file mode 100644 index 000000000..8d7cede92 --- /dev/null +++ b/src/config/nouns/initialSpaces/exploreTabs/nounsNFTholders.json @@ -0,0 +1,8943 @@ +{ + "members": [ + { + "address": "0xb1a32fc9f9d8b2cf86c068cae13108809547ef71", + "balanceRaw": "537", + "balanceFormatted": "537", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nouns.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb1a32fc9f9d8b2cf86c068cae13108809547ef71", + "etherscanUrl": "https://etherscan.io/address/0xb1a32fc9f9d8b2cf86c068cae13108809547ef71", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd6354d79143f852e9e22aa4abd4e69c1842d24b5", + "balanceRaw": "121", + "balanceFormatted": "121", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd6354d79143f852e9e22aa4abd4e69c1842d24b5", + "etherscanUrl": "https://etherscan.io/address/0xd6354d79143f852e9e22aa4abd4e69c1842d24b5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99635729e1402847cd2ce4933688bcf7211fdd7e", + "balanceRaw": "43", + "balanceFormatted": "43", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99635729e1402847cd2ce4933688bcf7211fdd7e", + "etherscanUrl": "https://etherscan.io/address/0x99635729e1402847cd2ce4933688bcf7211fdd7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29b612755a3617108a060c5b55b3b559c1a2afd4", + "balanceRaw": "41", + "balanceFormatted": "41", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29b612755a3617108a060c5b55b3b559c1a2afd4", + "etherscanUrl": "https://etherscan.io/address/0x29b612755a3617108a060c5b55b3b559c1a2afd4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2573c60a6d127755aa2dc85e342f7da2378a0cc5", + "balanceRaw": "39", + "balanceFormatted": "39", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2573c60a6d127755aa2dc85e342f7da2378a0cc5", + "etherscanUrl": "https://etherscan.io/address/0x2573c60a6d127755aa2dc85e342f7da2378a0cc5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29ac5daf920d5d136d924877081f5f44b6ade0b9", + "balanceRaw": "35", + "balanceFormatted": "35", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29ac5daf920d5d136d924877081f5f44b6ade0b9", + "etherscanUrl": "https://etherscan.io/address/0x29ac5daf920d5d136d924877081f5f44b6ade0b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x87616c5a5b312c611e2f8106346bdf853dec1eaa", + "balanceRaw": "35", + "balanceFormatted": "35", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87616c5a5b312c611e2f8106346bdf853dec1eaa", + "etherscanUrl": "https://etherscan.io/address/0x87616c5a5b312c611e2f8106346bdf853dec1eaa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xacbacca81254c36445488a0e4ff0bf5a516147ae", + "balanceRaw": "34", + "balanceFormatted": "34", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xacbacca81254c36445488a0e4ff0bf5a516147ae", + "etherscanUrl": "https://etherscan.io/address/0xacbacca81254c36445488a0e4ff0bf5a516147ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x13061efe742418c361c840caff300dc43ac0affe", + "balanceRaw": "22", + "balanceFormatted": "22", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x13061efe742418c361c840caff300dc43ac0affe", + "etherscanUrl": "https://etherscan.io/address/0x13061efe742418c361c840caff300dc43ac0affe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd1d1d4e36117ab794ec5d4c78cbd3a8904e691d0", + "balanceRaw": "20", + "balanceFormatted": "20", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1d1d4e36117ab794ec5d4c78cbd3a8904e691d0", + "etherscanUrl": "https://etherscan.io/address/0xd1d1d4e36117ab794ec5d4c78cbd3a8904e691d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf05abcfe204f9c2e5e5cdf83e485f7f72eb0e9f", + "balanceRaw": "15", + "balanceFormatted": "15", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf05abcfe204f9c2e5e5cdf83e485f7f72eb0e9f", + "etherscanUrl": "https://etherscan.io/address/0xaf05abcfe204f9c2e5e5cdf83e485f7f72eb0e9f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x75ca7ad7a0088f131abe8c11afec969ff15c3f73", + "balanceRaw": "14", + "balanceFormatted": "14", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75ca7ad7a0088f131abe8c11afec969ff15c3f73", + "etherscanUrl": "https://etherscan.io/address/0x75ca7ad7a0088f131abe8c11afec969ff15c3f73", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_785", + "balanceRaw": "14", + "balanceFormatted": "14", + "lastTransferAt": null, + "username": "vapeape", + "displayName": "vapeape", + "fid": 785, + "followers": 404, + "pfpUrl": "https://lh3.googleusercontent.com/LD5lFXWeCwf0p1OLf5HDKciGAprhUUUnNiz5nrGnyGPdUv6hu0vBOc0qRyPuhWpTjRo9GsXX21bSwjHD4Z6WWTNR", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9e2003d83e63d09432b5b1d7af22cf7b6c5b84a9", + "etherscanUrl": "https://etherscan.io/address/0x9e2003d83e63d09432b5b1d7af22cf7b6c5b84a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_866407", + "balanceRaw": "14", + "balanceFormatted": "14", + "lastTransferAt": null, + "username": "0x4b1d", + "displayName": "0x4b1d", + "fid": 866407, + "followers": 143, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f5a286ef-9ad7-4c2d-727a-d489448ed600/rectcrop3", + "ensName": "noun36.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe10a136f975a28e2c22bec88d92d1a6408722b1e", + "etherscanUrl": "https://etherscan.io/address/0xe10a136f975a28e2c22bec88d92d1a6408722b1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x11ad061e26135c5a4028110c7e118711370662ee", + "balanceRaw": "13", + "balanceFormatted": "13", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11ad061e26135c5a4028110c7e118711370662ee", + "etherscanUrl": "https://etherscan.io/address/0x11ad061e26135c5a4028110c7e118711370662ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b70be5274999cddee83840f9229273380596c94", + "balanceRaw": "13", + "balanceFormatted": "13", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b70be5274999cddee83840f9229273380596c94", + "etherscanUrl": "https://etherscan.io/address/0x8b70be5274999cddee83840f9229273380596c94", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb1c41c71d36cedea7ddcd5f8d5c5c32ba8f3cbfc", + "balanceRaw": "13", + "balanceFormatted": "13", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb1c41c71d36cedea7ddcd5f8d5c5c32ba8f3cbfc", + "etherscanUrl": "https://etherscan.io/address/0xb1c41c71d36cedea7ddcd5f8d5c5c32ba8f3cbfc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x21e46fcc78c0e673610d5b4877bcec713e77e082", + "balanceRaw": "10", + "balanceFormatted": "10", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21e46fcc78c0e673610d5b4877bcec713e77e082", + "etherscanUrl": "https://etherscan.io/address/0x21e46fcc78c0e673610d5b4877bcec713e77e082", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbeac7ebd1f1fd895c81f3efd2423f0af0b865eb1", + "balanceRaw": "8", + "balanceFormatted": "8", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbeac7ebd1f1fd895c81f3efd2423f0af0b865eb1", + "etherscanUrl": "https://etherscan.io/address/0xbeac7ebd1f1fd895c81f3efd2423f0af0b865eb1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5c1760c98be951a4067df234695c8014d8e7619c", + "balanceRaw": "7", + "balanceFormatted": "7", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c1760c98be951a4067df234695c8014d8e7619c", + "etherscanUrl": "https://etherscan.io/address/0x5c1760c98be951a4067df234695c8014d8e7619c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xea2ba25e59f84e87b50d3231077e777bd6879589", + "balanceRaw": "7", + "balanceFormatted": "7", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xea2ba25e59f84e87b50d3231077e777bd6879589", + "etherscanUrl": "https://etherscan.io/address/0xea2ba25e59f84e87b50d3231077e777bd6879589", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214447", + "balanceRaw": "7", + "balanceFormatted": "7", + "lastTransferAt": null, + "username": "yes2crypto.eth", + "displayName": "YES2Crypto 🎩 🟪🟡", + "fid": 214447, + "followers": 21249, + "pfpUrl": "https://i.imgur.com/dBoVmnG.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "etherscanUrl": "https://etherscan.io/address/0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "xHandle": "yes2crypto1", + "xUrl": "https://twitter.com/yes2crypto1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0a537b22c242d6e2e2cf1f6bd34a698a14126772", + "balanceRaw": "6", + "balanceFormatted": "6", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a537b22c242d6e2e2cf1f6bd34a698a14126772", + "etherscanUrl": "https://etherscan.io/address/0x0a537b22c242d6e2e2cf1f6bd34a698a14126772", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xae7f458667f1b30746354abc3157907d9f6fd15e", + "balanceRaw": "6", + "balanceFormatted": "6", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xae7f458667f1b30746354abc3157907d9f6fd15e", + "etherscanUrl": "https://etherscan.io/address/0xae7f458667f1b30746354abc3157907d9f6fd15e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3712", + "balanceRaw": "6", + "balanceFormatted": "6", + "lastTransferAt": null, + "username": "solimander", + "displayName": "Solimander", + "fid": 3712, + "followers": 338, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eb74ab8-3940-4e6b-bba7-ee967a2c5b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7cd97ae972bfa40d3141de6229409cbde8bc957", + "etherscanUrl": "https://etherscan.io/address/0xd7cd97ae972bfa40d3141de6229409cbde8bc957", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x00f6285055a3328cd5869ccf6d50f8b7858a9cba", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00f6285055a3328cd5869ccf6d50f8b7858a9cba", + "etherscanUrl": "https://etherscan.io/address/0x00f6285055a3328cd5869ccf6d50f8b7858a9cba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x177751396d8236569c5c7b04232c7b7281a3b9f3", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x177751396d8236569c5c7b04232c7b7281a3b9f3", + "etherscanUrl": "https://etherscan.io/address/0x177751396d8236569c5c7b04232c7b7281a3b9f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x53311150764f7eb2999022ed1aa5a8c17bb5fc57", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "ohana.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x53311150764f7eb2999022ed1aa5a8c17bb5fc57", + "etherscanUrl": "https://etherscan.io/address/0x53311150764f7eb2999022ed1aa5a8c17bb5fc57", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x90dd9d99770fbdf2dea5cf367861e5eb41cfd222", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90dd9d99770fbdf2dea5cf367861e5eb41cfd222", + "etherscanUrl": "https://etherscan.io/address/0x90dd9d99770fbdf2dea5cf367861e5eb41cfd222", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xff5f8228d003705d1668079a9dbf23dba5209e8c", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xff5f8228d003705d1668079a9dbf23dba5209e8c", + "etherscanUrl": "https://etherscan.io/address/0xff5f8228d003705d1668079a9dbf23dba5209e8c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_397036", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": "tummlin", + "displayName": "tummlin ⌐◨-◨", + "fid": 397036, + "followers": 782, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd9856b1-f88c-43f6-d4e4-96c5fea94c00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6fb2a7e9a0bc44870554066cac5fd1f71b3eb14", + "etherscanUrl": "https://etherscan.io/address/0xf6fb2a7e9a0bc44870554066cac5fd1f71b3eb14", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_633", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": "cxy", + "displayName": "C.Y. Lee", + "fid": 633, + "followers": 1750, + "pfpUrl": "https://i.imgur.com/f3MHWW0.jpg", + "ensName": "cxy.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/QmUZY1ZBmfDa6bgrHfuBKCxk3sDrZ5eLEovKLVQqCiz7zU", + "primaryAddress": "0x893f1503ee35601347fd88a8622bca7fe271e58e", + "etherscanUrl": "https://etherscan.io/address/0x893f1503ee35601347fd88a8622bca7fe271e58e", + "xHandle": "cxy", + "xUrl": "https://twitter.com/cxy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_446582", + "balanceRaw": "5", + "balanceFormatted": "5", + "lastTransferAt": null, + "username": "legatum", + "displayName": "legatum.⌐◨-◨ ", + "fid": 446582, + "followers": 28, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8bc2ae49-92a9-46a2-7461-35c8f52c4000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd9e424871cdf9ca51fcdaf694495c00aa39cef4b", + "etherscanUrl": "https://etherscan.io/address/0xd9e424871cdf9ca51fcdaf694495c00aa39cef4b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x25f1a1efdce3d72cb7b13f49e68502bc91636f74", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "meta.edmnd.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x25f1a1efdce3d72cb7b13f49e68502bc91636f74", + "etherscanUrl": "https://etherscan.io/address/0x25f1a1efdce3d72cb7b13f49e68502bc91636f74", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2ae3e46290ade43593eabd15642ebd67157f5351", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ae3e46290ade43593eabd15642ebd67157f5351", + "etherscanUrl": "https://etherscan.io/address/0x2ae3e46290ade43593eabd15642ebd67157f5351", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x32d1a53f6709a03f4b6cf4cb0501204ba188d4f5", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32d1a53f6709a03f4b6cf4cb0501204ba188d4f5", + "etherscanUrl": "https://etherscan.io/address/0x32d1a53f6709a03f4b6cf4cb0501204ba188d4f5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b35057ed1bb63f0751a85d71ab2cf1076b50461", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b35057ed1bb63f0751a85d71ab2cf1076b50461", + "etherscanUrl": "https://etherscan.io/address/0x8b35057ed1bb63f0751a85d71ab2cf1076b50461", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8dcba0e8a98c64b76e4e78b8c911031ac5650a2a", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8dcba0e8a98c64b76e4e78b8c911031ac5650a2a", + "etherscanUrl": "https://etherscan.io/address/0x8dcba0e8a98c64b76e4e78b8c911031ac5650a2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc7ccec521eed20fcddff8f95424816ac421c7d87", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7ccec521eed20fcddff8f95424816ac421c7d87", + "etherscanUrl": "https://etherscan.io/address/0xc7ccec521eed20fcddff8f95424816ac421c7d87", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd049b3064990869c9f73bd7896271d83325d2067", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd049b3064990869c9f73bd7896271d83325d2067", + "etherscanUrl": "https://etherscan.io/address/0xd049b3064990869c9f73bd7896271d83325d2067", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf615cf36408292dacd7571fefbfa1c4438ba8c10", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf615cf36408292dacd7571fefbfa1c4438ba8c10", + "etherscanUrl": "https://etherscan.io/address/0xf615cf36408292dacd7571fefbfa1c4438ba8c10", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfd4617981dfdf01a8a098bf2906d4b55af801d20", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd4617981dfdf01a8a098bf2906d4b55af801d20", + "etherscanUrl": "https://etherscan.io/address/0xfd4617981dfdf01a8a098bf2906d4b55af801d20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfdd923f0c7972e7657f4bcb8fe13a03f0b2a267d", + "balanceRaw": "4", + "balanceFormatted": "4", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfdd923f0c7972e7657f4bcb8fe13a03f0b2a267d", + "etherscanUrl": "https://etherscan.io/address/0xfdd923f0c7972e7657f4bcb8fe13a03f0b2a267d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1d3bc1f9d3f9770453949abd619592cd7583c5ed", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "eldians.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1d3bc1f9d3f9770453949abd619592cd7583c5ed", + "etherscanUrl": "https://etherscan.io/address/0x1d3bc1f9d3f9770453949abd619592cd7583c5ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1df24be62414d06faec6cf882df5b492f724fe0d", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1df24be62414d06faec6cf882df5b492f724fe0d", + "etherscanUrl": "https://etherscan.io/address/0x1df24be62414d06faec6cf882df5b492f724fe0d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c176a32895eedcd93db8d97682cd08fc1305c52", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c176a32895eedcd93db8d97682cd08fc1305c52", + "etherscanUrl": "https://etherscan.io/address/0x3c176a32895eedcd93db8d97682cd08fc1305c52", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4c5816d9a83ddd60c6ef8d1bef23bd0fb920d8c5", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c5816d9a83ddd60c6ef8d1bef23bd0fb920d8c5", + "etherscanUrl": "https://etherscan.io/address/0x4c5816d9a83ddd60c6ef8d1bef23bd0fb920d8c5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5306c064f74b2c45d3f1afae90cf0d74f7523fe4", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5306c064f74b2c45d3f1afae90cf0d74f7523fe4", + "etherscanUrl": "https://etherscan.io/address/0x5306c064f74b2c45d3f1afae90cf0d74f7523fe4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5910fcf2536fd31b61de9d327011510ca5f4df05", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5910fcf2536fd31b61de9d327011510ca5f4df05", + "etherscanUrl": "https://etherscan.io/address/0x5910fcf2536fd31b61de9d327011510ca5f4df05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ff1c339a0694bcc45c02e2691413d0d98e9ce44", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ff1c339a0694bcc45c02e2691413d0d98e9ce44", + "etherscanUrl": "https://etherscan.io/address/0x5ff1c339a0694bcc45c02e2691413d0d98e9ce44", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60dade324d72eb4e63fe3ebc0c47de1afbf7da28", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60dade324d72eb4e63fe3ebc0c47de1afbf7da28", + "etherscanUrl": "https://etherscan.io/address/0x60dade324d72eb4e63fe3ebc0c47de1afbf7da28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x67954ac510255b6b3724073022196b67bdf260b6", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x67954ac510255b6b3724073022196b67bdf260b6", + "etherscanUrl": "https://etherscan.io/address/0x67954ac510255b6b3724073022196b67bdf260b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x68ca312a36cd0a7e2fe28604981dfec5b05951a8", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68ca312a36cd0a7e2fe28604981dfec5b05951a8", + "etherscanUrl": "https://etherscan.io/address/0x68ca312a36cd0a7e2fe28604981dfec5b05951a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x71e4dcda2ad1901e7e5742da296d1f1d32122b18", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71e4dcda2ad1901e7e5742da296d1f1d32122b18", + "etherscanUrl": "https://etherscan.io/address/0x71e4dcda2ad1901e7e5742da296d1f1d32122b18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x89bc08ba00f135d608bc335f6b33d7a9abcc98af", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89bc08ba00f135d608bc335f6b33d7a9abcc98af", + "etherscanUrl": "https://etherscan.io/address/0x89bc08ba00f135d608bc335f6b33d7a9abcc98af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8e71c9644898665a91e4db3dee8bdde97b3c71bc", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e71c9644898665a91e4db3dee8bdde97b3c71bc", + "etherscanUrl": "https://etherscan.io/address/0x8e71c9644898665a91e4db3dee8bdde97b3c71bc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb395a32b9df74f5e80f51abc31285e482e17e77d", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb395a32b9df74f5e80f51abc31285e482e17e77d", + "etherscanUrl": "https://etherscan.io/address/0xb395a32b9df74f5e80f51abc31285e482e17e77d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba583d27152f4df38b5b0e56d4e4525ce42f3105", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba583d27152f4df38b5b0e56d4e4525ce42f3105", + "etherscanUrl": "https://etherscan.io/address/0xba583d27152f4df38b5b0e56d4e4525ce42f3105", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd262b16421ac23d13d345e4e08875374d5235bf", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd262b16421ac23d13d345e4e08875374d5235bf", + "etherscanUrl": "https://etherscan.io/address/0xcd262b16421ac23d13d345e4e08875374d5235bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd6ad2b7771f3be431e84e75d9ededacd254832b", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd6ad2b7771f3be431e84e75d9ededacd254832b", + "etherscanUrl": "https://etherscan.io/address/0xcd6ad2b7771f3be431e84e75d9ededacd254832b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd5f279ff9eb21c6d40c8f345a66f2751c4eea1fb", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "lilnouns.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd5f279ff9eb21c6d40c8f345a66f2751c4eea1fb", + "etherscanUrl": "https://etherscan.io/address/0xd5f279ff9eb21c6d40c8f345a66f2751c4eea1fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe4fa469c988f2993a9bef0d17f771f25480faa1b", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4fa469c988f2993a9bef0d17f771f25480faa1b", + "etherscanUrl": "https://etherscan.io/address/0xe4fa469c988f2993a9bef0d17f771f25480faa1b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeb237d3c8ad02717213ce839beca08b161f8feed", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb237d3c8ad02717213ce839beca08b161f8feed", + "etherscanUrl": "https://etherscan.io/address/0xeb237d3c8ad02717213ce839beca08b161f8feed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed59e94c104ee273b70bffd83b6725f56d932558", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed59e94c104ee273b70bffd83b6725f56d932558", + "etherscanUrl": "https://etherscan.io/address/0xed59e94c104ee273b70bffd83b6725f56d932558", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf2b163bbbe22ab6360fb4659029bfcba8e673dec", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2b163bbbe22ab6360fb4659029bfcba8e673dec", + "etherscanUrl": "https://etherscan.io/address/0xf2b163bbbe22ab6360fb4659029bfcba8e673dec", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9280", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "brennen.eth", + "displayName": "brennen", + "fid": 9280, + "followers": 6429, + "pfpUrl": "https://i.imgur.com/2cWKwcm.gif", + "ensName": "brennen.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0791ffea80a68ee70674b1e0b0e98cc67dfc8d67", + "etherscanUrl": "https://etherscan.io/address/0x0791ffea80a68ee70674b1e0b0e98cc67dfc8d67", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1089570", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "sugarjones.eth", + "displayName": "sugar jones", + "fid": 1089570, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14b08389-0a84-4f9b-6073-2443afd1a700/rectcrop3", + "ensName": "sugarjones.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x06bec48bcc5ed329b1c8256433384471119032e4", + "etherscanUrl": "https://etherscan.io/address/0x06bec48bcc5ed329b1c8256433384471119032e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10810", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "gami", + "displayName": "Gami 🤘", + "fid": 10810, + "followers": 59914, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35ece366-ef0a-45d1-e067-a2f0df63a800/original", + "ensName": "gami.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1fb9c75aa58d31264bbfda4bf95ed58627ecd835", + "etherscanUrl": "https://etherscan.io/address/0x1fb9c75aa58d31264bbfda4bf95ed58627ecd835", + "xHandle": "gami_vc", + "xUrl": "https://twitter.com/gami_vc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4484", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "valgtaylor", + "displayName": "Valerie Taylor", + "fid": 4484, + "followers": 882, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a5803f2-7d19-4dea-2027-603ded264600/rectcrop3", + "ensName": "valgtaylor.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcd6800bac5d279a03137e0428db361715126688f", + "etherscanUrl": "https://etherscan.io/address/0xcd6800bac5d279a03137e0428db361715126688f", + "xHandle": "valgtaylor", + "xUrl": "https://twitter.com/valgtaylor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_228365", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "lambowhale", + "displayName": "LamboWhale", + "fid": 228365, + "followers": 2, + "pfpUrl": "https://i.imgur.com/g9JA6HY.jpg", + "ensName": "lambowhale.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3b1e58c4a9124dc19065d6f6ec30261a6e6f6bed", + "etherscanUrl": "https://etherscan.io/address/0x3b1e58c4a9124dc19065d6f6ec30261a6e6f6bed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_242785", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "noggles", + "displayName": "$NOGS", + "fid": 242785, + "followers": 3164, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40a7bc8b-d5b8-465e-bbfc-1d8026b48300/original", + "ensName": "nogs.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa34adec7f9c53f39964d9a7e104ef35a8246874c", + "etherscanUrl": "https://etherscan.io/address/0xa34adec7f9c53f39964d9a7e104ef35a8246874c", + "xHandle": "nogglescoin", + "xUrl": "https://twitter.com/nogglescoin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4132", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "juar.eth", + "displayName": "carlos juar.eth", + "fid": 4132, + "followers": 942, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19aa402c-8a4b-4c0e-7474-6aac8fbd5c00/original", + "ensName": "juar.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa0874486279f7b55eed1367f0a63d846a7218bfd", + "etherscanUrl": "https://etherscan.io/address/0xa0874486279f7b55eed1367f0a63d846a7218bfd", + "xHandle": "0xpaella", + "xUrl": "https://twitter.com/0xpaella", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_172", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "elena", + "displayName": "elena ", + "fid": 172, + "followers": 809, + "pfpUrl": "https://i.imgur.com/VSiWtCn.jpg", + "ensName": "elena.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x40d0f51ab79b68b77e4ac2c3f623e06727504bbd", + "etherscanUrl": "https://etherscan.io/address/0x40d0f51ab79b68b77e4ac2c3f623e06727504bbd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19530", + "balanceRaw": "3", + "balanceFormatted": "3", + "lastTransferAt": null, + "username": "mikegood", + "displayName": "mike good ⌐◨-◨", + "fid": 19530, + "followers": 5429, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4ceb79c-70e1-4cd4-e648-e6c4206ff200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa81317e1fe6f385cd0065b4667b95ab186858175", + "etherscanUrl": "https://etherscan.io/address/0xa81317e1fe6f385cd0065b4667b95ab186858175", + "xHandle": "goodbeats", + "xUrl": "https://twitter.com/goodbeats", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x01e24055940879953094af6cbec4e58ad4e4421e", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x01e24055940879953094af6cbec4e58ad4e4421e", + "etherscanUrl": "https://etherscan.io/address/0x01e24055940879953094af6cbec4e58ad4e4421e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05e70979fd3355133f91fc7c6597a8274169b3be", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05e70979fd3355133f91fc7c6597a8274169b3be", + "etherscanUrl": "https://etherscan.io/address/0x05e70979fd3355133f91fc7c6597a8274169b3be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x09960871a7ec7a5f1956c3e29ad69f906f4fb264", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09960871a7ec7a5f1956c3e29ad69f906f4fb264", + "etherscanUrl": "https://etherscan.io/address/0x09960871a7ec7a5f1956c3e29ad69f906f4fb264", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b7a3cd39faa4d6da40774d3cec91a0fc8ec1689", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b7a3cd39faa4d6da40774d3cec91a0fc8ec1689", + "etherscanUrl": "https://etherscan.io/address/0x0b7a3cd39faa4d6da40774d3cec91a0fc8ec1689", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0f576fe0a916ca39ee929f0cc956cfc9d2a59c12", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "longling.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0f576fe0a916ca39ee929f0cc956cfc9d2a59c12", + "etherscanUrl": "https://etherscan.io/address/0x0f576fe0a916ca39ee929f0cc956cfc9d2a59c12", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0fa61f5b1975b5b025ec9644f2dbd3bbbbb27832", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fa61f5b1975b5b025ec9644f2dbd3bbbbb27832", + "etherscanUrl": "https://etherscan.io/address/0x0fa61f5b1975b5b025ec9644f2dbd3bbbbb27832", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0fd9cad410d9e014bf758020fc67b0e93e9e1f2a", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0fd9cad410d9e014bf758020fc67b0e93e9e1f2a", + "etherscanUrl": "https://etherscan.io/address/0x0fd9cad410d9e014bf758020fc67b0e93e9e1f2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x10b26700b0a2d3f5ef12fa250aba818ee3b43bf4", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "hongbo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x10b26700b0a2d3f5ef12fa250aba818ee3b43bf4", + "etherscanUrl": "https://etherscan.io/address/0x10b26700b0a2d3f5ef12fa250aba818ee3b43bf4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x15d29beb247c29b575e1b32d626111f13a3a4b23", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15d29beb247c29b575e1b32d626111f13a3a4b23", + "etherscanUrl": "https://etherscan.io/address/0x15d29beb247c29b575e1b32d626111f13a3a4b23", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x18e18ae78df4d7ddc3a76b280b1768f5209e8db1", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18e18ae78df4d7ddc3a76b280b1768f5209e8db1", + "etherscanUrl": "https://etherscan.io/address/0x18e18ae78df4d7ddc3a76b280b1768f5209e8db1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1b7844cfae4c823ac6389855d47106a70c84f067", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1b7844cfae4c823ac6389855d47106a70c84f067", + "etherscanUrl": "https://etherscan.io/address/0x1b7844cfae4c823ac6389855d47106a70c84f067", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1db11b0d8f67780293dafb9e9238d1519c7e5b26", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1db11b0d8f67780293dafb9e9238d1519c7e5b26", + "etherscanUrl": "https://etherscan.io/address/0x1db11b0d8f67780293dafb9e9238d1519c7e5b26", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2333a0627873ed9e705934b820c01d6193ab2a67", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2333a0627873ed9e705934b820c01d6193ab2a67", + "etherscanUrl": "https://etherscan.io/address/0x2333a0627873ed9e705934b820c01d6193ab2a67", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2af83b8b339aebc2a1532d7cf03fb4ca8ba1caf9", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2af83b8b339aebc2a1532d7cf03fb4ca8ba1caf9", + "etherscanUrl": "https://etherscan.io/address/0x2af83b8b339aebc2a1532d7cf03fb4ca8ba1caf9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2ca651d9d7c76340c8a71bde2eda64b3639c9b13", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ca651d9d7c76340c8a71bde2eda64b3639c9b13", + "etherscanUrl": "https://etherscan.io/address/0x2ca651d9d7c76340c8a71bde2eda64b3639c9b13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f2f237d2e655cc0a6f6fef761e5aef13087e71f", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "thebeautyandthepunk.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2f2f237d2e655cc0a6f6fef761e5aef13087e71f", + "etherscanUrl": "https://etherscan.io/address/0x2f2f237d2e655cc0a6f6fef761e5aef13087e71f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3b03eed6ea50e7f732c0dceb32babf560f98f054", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b03eed6ea50e7f732c0dceb32babf560f98f054", + "etherscanUrl": "https://etherscan.io/address/0x3b03eed6ea50e7f732c0dceb32babf560f98f054", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3b55fecc11495bb20c1a9c5a580984cd2ec73856", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b55fecc11495bb20c1a9c5a580984cd2ec73856", + "etherscanUrl": "https://etherscan.io/address/0x3b55fecc11495bb20c1a9c5a580984cd2ec73856", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4677dbafd407e083e8324b28c0836fd13ecbcdda", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4677dbafd407e083e8324b28c0836fd13ecbcdda", + "etherscanUrl": "https://etherscan.io/address/0x4677dbafd407e083e8324b28c0836fd13ecbcdda", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4a343860b1a27137bbf4fd0ab3342ddb801df4f6", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a343860b1a27137bbf4fd0ab3342ddb801df4f6", + "etherscanUrl": "https://etherscan.io/address/0x4a343860b1a27137bbf4fd0ab3342ddb801df4f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4ef005cd386b085cd9c846a5e3537b76ede75669", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ef005cd386b085cd9c846a5e3537b76ede75669", + "etherscanUrl": "https://etherscan.io/address/0x4ef005cd386b085cd9c846a5e3537b76ede75669", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5037672a699d63e5de23798ef5343ce2f4c4b0f6", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5037672a699d63e5de23798ef5343ce2f4c4b0f6", + "etherscanUrl": "https://etherscan.io/address/0x5037672a699d63e5de23798ef5343ce2f4c4b0f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x516f37c63de72689ee09cb2c52d885241975775a", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x516f37c63de72689ee09cb2c52d885241975775a", + "etherscanUrl": "https://etherscan.io/address/0x516f37c63de72689ee09cb2c52d885241975775a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x68e550003dc37ff5d1f1d635c75b86296758fe68", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68e550003dc37ff5d1f1d635c75b86296758fe68", + "etherscanUrl": "https://etherscan.io/address/0x68e550003dc37ff5d1f1d635c75b86296758fe68", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x70dc2a4614f057e6d711cd8ff0864dd90bf2ff3d", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70dc2a4614f057e6d711cd8ff0864dd90bf2ff3d", + "etherscanUrl": "https://etherscan.io/address/0x70dc2a4614f057e6d711cd8ff0864dd90bf2ff3d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x749b7b7a6944d72266be9500fc8c221b6a7554ce", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "voicefirstllc.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x749b7b7a6944d72266be9500fc8c221b6a7554ce", + "etherscanUrl": "https://etherscan.io/address/0x749b7b7a6944d72266be9500fc8c221b6a7554ce", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x77b5f7546d2d07a131366d8c0d29e48ead2dc52c", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77b5f7546d2d07a131366d8c0d29e48ead2dc52c", + "etherscanUrl": "https://etherscan.io/address/0x77b5f7546d2d07a131366d8c0d29e48ead2dc52c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e7bcee3d108e62d1229d43f345c73b234fd4065", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e7bcee3d108e62d1229d43f345c73b234fd4065", + "etherscanUrl": "https://etherscan.io/address/0x7e7bcee3d108e62d1229d43f345c73b234fd4065", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x89bb01bd20d3f1b769906d4da6f61fa5d79ee36c", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89bb01bd20d3f1b769906d4da6f61fa5d79ee36c", + "etherscanUrl": "https://etherscan.io/address/0x89bb01bd20d3f1b769906d4da6f61fa5d79ee36c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8ae80e0b44205904be18869240c2ec62d2342785", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "pnounsdao.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8ae80e0b44205904be18869240c2ec62d2342785", + "etherscanUrl": "https://etherscan.io/address/0x8ae80e0b44205904be18869240c2ec62d2342785", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8fa67744a3e4dff6ecb5f5ed90b40547e27bedd7", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8fa67744a3e4dff6ecb5f5ed90b40547e27bedd7", + "etherscanUrl": "https://etherscan.io/address/0x8fa67744a3e4dff6ecb5f5ed90b40547e27bedd7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9298b97de93784635900163e582a5d9e570f35a5", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "acquisitions.nouns.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9298b97de93784635900163e582a5d9e570f35a5", + "etherscanUrl": "https://etherscan.io/address/0x9298b97de93784635900163e582a5d9e570f35a5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x95f7b69726fda802ea90210cf279e2de0b535499", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x95f7b69726fda802ea90210cf279e2de0b535499", + "etherscanUrl": "https://etherscan.io/address/0x95f7b69726fda802ea90210cf279e2de0b535499", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x96074519ec17b9998cc30310f6ff205048920148", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x96074519ec17b9998cc30310f6ff205048920148", + "etherscanUrl": "https://etherscan.io/address/0x96074519ec17b9998cc30310f6ff205048920148", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9751eaa20a5fd736dcd7555099f2bd7eef0f44ea", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9751eaa20a5fd736dcd7555099f2bd7eef0f44ea", + "etherscanUrl": "https://etherscan.io/address/0x9751eaa20a5fd736dcd7555099f2bd7eef0f44ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9eedbfcffa62587fa5e17d1f556d17308c4a049a", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9eedbfcffa62587fa5e17d1f556d17308c4a049a", + "etherscanUrl": "https://etherscan.io/address/0x9eedbfcffa62587fa5e17d1f556d17308c4a049a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa098da9782304c32d455eca02dbf37e31c8f6369", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa098da9782304c32d455eca02dbf37e31c8f6369", + "etherscanUrl": "https://etherscan.io/address/0xa098da9782304c32d455eca02dbf37e31c8f6369", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa155a4d1328ea9ccdbce77ea8b0ff67fb40b0cc8", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa155a4d1328ea9ccdbce77ea8b0ff67fb40b0cc8", + "etherscanUrl": "https://etherscan.io/address/0xa155a4d1328ea9ccdbce77ea8b0ff67fb40b0cc8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa43c0f0ee718ca08f50eee9d0f4134100f4ec4cf", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa43c0f0ee718ca08f50eee9d0f4134100f4ec4cf", + "etherscanUrl": "https://etherscan.io/address/0xa43c0f0ee718ca08f50eee9d0f4134100f4ec4cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa724203acdec2e6db64195287b8a320c157160e3", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa724203acdec2e6db64195287b8a320c157160e3", + "etherscanUrl": "https://etherscan.io/address/0xa724203acdec2e6db64195287b8a320c157160e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xab6ca2017548a170699890214bfd66583a0c1754", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "amir.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xab6ca2017548a170699890214bfd66583a0c1754", + "etherscanUrl": "https://etherscan.io/address/0xab6ca2017548a170699890214bfd66583a0c1754", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xada31add8450ca0422983b9a3103633b78938617", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xada31add8450ca0422983b9a3103633b78938617", + "etherscanUrl": "https://etherscan.io/address/0xada31add8450ca0422983b9a3103633b78938617", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaec523849b0aab8c8da5a4395ec8862f8fb9af78", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaec523849b0aab8c8da5a4395ec8862f8fb9af78", + "etherscanUrl": "https://etherscan.io/address/0xaec523849b0aab8c8da5a4395ec8862f8fb9af78", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb47a70df538b9a3b591bc5d75da66a04c879b291", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb47a70df538b9a3b591bc5d75da66a04c879b291", + "etherscanUrl": "https://etherscan.io/address/0xb47a70df538b9a3b591bc5d75da66a04c879b291", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb8082130a600ee4e174f9c95f48cca18c7498097", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb8082130a600ee4e174f9c95f48cca18c7498097", + "etherscanUrl": "https://etherscan.io/address/0xb8082130a600ee4e174f9c95f48cca18c7498097", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbf24b40ed9568c92b9f684fbc3928ab9fd8ad8a9", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf24b40ed9568c92b9f684fbc3928ab9fd8ad8a9", + "etherscanUrl": "https://etherscan.io/address/0xbf24b40ed9568c92b9f684fbc3928ab9fd8ad8a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbfd8cba6a1e10e1ab4fa11a0062f4e52e13d260f", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbfd8cba6a1e10e1ab4fa11a0062f4e52e13d260f", + "etherscanUrl": "https://etherscan.io/address/0xbfd8cba6a1e10e1ab4fa11a0062f4e52e13d260f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc2f2a4e9c1b81127751d26cd9020ea30cadcea75", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2f2a4e9c1b81127751d26cd9020ea30cadcea75", + "etherscanUrl": "https://etherscan.io/address/0xc2f2a4e9c1b81127751d26cd9020ea30cadcea75", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc412e673dbaa2cbf63d0319034780a68794b54f4", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc412e673dbaa2cbf63d0319034780a68794b54f4", + "etherscanUrl": "https://etherscan.io/address/0xc412e673dbaa2cbf63d0319034780a68794b54f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd114f30274bba5f018ad2fff3ed55ca5d8253336", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd114f30274bba5f018ad2fff3ed55ca5d8253336", + "etherscanUrl": "https://etherscan.io/address/0xd114f30274bba5f018ad2fff3ed55ca5d8253336", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd4273644e07c86c413eebe7218356737c3f3a163", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4273644e07c86c413eebe7218356737c3f3a163", + "etherscanUrl": "https://etherscan.io/address/0xd4273644e07c86c413eebe7218356737c3f3a163", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd427d5adfc70eb18a6714086bb6dd74a7b8d02be", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd427d5adfc70eb18a6714086bb6dd74a7b8d02be", + "etherscanUrl": "https://etherscan.io/address/0xd427d5adfc70eb18a6714086bb6dd74a7b8d02be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdde3ca351d85a4b4cc6aff8d42c0840959859053", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdde3ca351d85a4b4cc6aff8d42c0840959859053", + "etherscanUrl": "https://etherscan.io/address/0xdde3ca351d85a4b4cc6aff8d42c0840959859053", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe9f55ec4b598143749e3524f834f472fcd67e780", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9f55ec4b598143749e3524f834f472fcd67e780", + "etherscanUrl": "https://etherscan.io/address/0xe9f55ec4b598143749e3524f834f472fcd67e780", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf747f750e39c5555f33221431f2fe9837c65aa6a", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf747f750e39c5555f33221431f2fe9837c65aa6a", + "etherscanUrl": "https://etherscan.io/address/0xf747f750e39c5555f33221431f2fe9837c65aa6a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfb216faf1b1650c26b0cfdf879379ba46c3da66b", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb216faf1b1650c26b0cfdf879379ba46c3da66b", + "etherscanUrl": "https://etherscan.io/address/0xfb216faf1b1650c26b0cfdf879379ba46c3da66b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xffdaab4d82817ceda1b1a265e22f0f9660c123c2", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xffdaab4d82817ceda1b1a265e22f0f9660c123c2", + "etherscanUrl": "https://etherscan.io/address/0xffdaab4d82817ceda1b1a265e22f0f9660c123c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_230941", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "willywonka.eth", + "displayName": "willywonka ⌐◨-◨", + "fid": 230941, + "followers": 4219, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c2324ecf-c09f-40f5-936c-80fbbd0cb500/original", + "ensName": "willywonka.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3b525f808df863413afd4c5ae1eed276af266c97", + "etherscanUrl": "https://etherscan.io/address/0x3b525f808df863413afd4c5ae1eed276af266c97", + "xHandle": "willyogo", + "xUrl": "https://twitter.com/willyogo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3974", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "indexcard.eth", + "displayName": "card", + "fid": 3974, + "followers": 1474, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc4d874b-e412-4cf5-8986-5abe26e86800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8d52f7c9b8e6e4d8c061257633a1998610230ad", + "etherscanUrl": "https://etherscan.io/address/0xc8d52f7c9b8e6e4d8c061257633a1998610230ad", + "xHandle": "modrovsky", + "xUrl": "https://twitter.com/modrovsky", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13364", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "necfas", + "displayName": "necfas", + "fid": 13364, + "followers": 618, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d73c9ab-686d-4544-f0ad-29dc395d1500/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeebb78cb314c9d28660b7e6c1b8edd1e08fb06eb", + "etherscanUrl": "https://etherscan.io/address/0xeebb78cb314c9d28660b7e6c1b8edd1e08fb06eb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3682", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "volky.eth", + "displayName": "Volky", + "fid": 3682, + "followers": 2399, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2aa3b42d-f816-433d-8aed-18bc6fc83c00/original", + "ensName": "volky.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc744de881665a8d564b5ae8ca55ee063b69b0ee4", + "etherscanUrl": "https://etherscan.io/address/0xc744de881665a8d564b5ae8ca55ee063b69b0ee4", + "xHandle": "volkyeth", + "xUrl": "https://twitter.com/volkyeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_225736", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "frankieco.eth", + "displayName": "frankie.base.eth", + "fid": 225736, + "followers": 3434, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a1e39ae-4279-4be2-9170-01eb489b7100/original", + "ensName": "caresclub.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x09b7c2d432f635bc3b74e061facf63871359b797", + "etherscanUrl": "https://etherscan.io/address/0x09b7c2d432f635bc3b74e061facf63871359b797", + "xHandle": "franke", + "xUrl": "https://twitter.com/franke", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3818", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "oni", + "displayName": "oni", + "fid": 3818, + "followers": 169, + "pfpUrl": "https://i.imgur.com/mlqt4Fy.jpg", + "ensName": "onizuka.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4af310f7927389e2dc4e7b6b00678c2eda7aadab", + "etherscanUrl": "https://etherscan.io/address/0x4af310f7927389e2dc4e7b6b00678c2eda7aadab", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2480", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "humpty.eth", + "displayName": "humpty", + "fid": 2480, + "followers": 57938, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/70bfa280-906f-481c-1abe-afd9f72d7b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3654f4bf53103e9cda1b3518d7bd76c97914158", + "etherscanUrl": "https://etherscan.io/address/0xd3654f4bf53103e9cda1b3518d7bd76c97914158", + "xHandle": "humpty0x", + "xUrl": "https://twitter.com/humpty0x", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18560", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "carlosjmelgar", + "displayName": "Carlos Melgar", + "fid": 18560, + "followers": 5066, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmRTMw5pB7jkDafYCgVVbYgdAYe6bLmqrwgG3Ta63NVqiN?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b47cdf9750fa59b94908cf1197cbdb039c58802", + "etherscanUrl": "https://etherscan.io/address/0x5b47cdf9750fa59b94908cf1197cbdb039c58802", + "xHandle": "carlosjmelgar", + "xUrl": "https://twitter.com/carlosjmelgar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3741", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "wahoo", + "displayName": "wahoo.eth", + "fid": 3741, + "followers": 3861, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fbd06ffa-f5a8-49b6-c2db-805682c8cf00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfd5c334694d0c35ab5395f65104ac805336db2d6", + "etherscanUrl": "https://etherscan.io/address/0xfd5c334694d0c35ab5395f65104ac805336db2d6", + "xHandle": "wahoopunk", + "xUrl": "https://twitter.com/wahoopunk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12878", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "philip", + "displayName": "Philip", + "fid": 12878, + "followers": 102, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a52b7aaf-4517-43dc-5753-ed07b8442200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80f5ee88a08e7abce4d5ce1c54baacb00959d852", + "etherscanUrl": "https://etherscan.io/address/0x80f5ee88a08e7abce4d5ce1c54baacb00959d852", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3734", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "sasquatch", + "displayName": "Sasquatch テ", + "fid": 3734, + "followers": 5761, + "pfpUrl": "https://i.imgur.com/ZfjkWSo.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76607b6f78191eef8934eb45ecb030def67d8b33", + "etherscanUrl": "https://etherscan.io/address/0x76607b6f78191eef8934eb45ecb030def67d8b33", + "xHandle": "partsasquatch", + "xUrl": "https://twitter.com/partsasquatch", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3764", + "balanceRaw": "2", + "balanceFormatted": "2", + "lastTransferAt": null, + "username": "adrianmcli", + "displayName": "Adrian Li", + "fid": 3764, + "followers": 50, + "pfpUrl": "https://i.imgur.com/I6qoP42.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x47434145d9e0bcccfbc01bb77f5f294032ba5af7", + "etherscanUrl": "https://etherscan.io/address/0x47434145d9e0bcccfbc01bb77f5f294032ba5af7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0220e0b5a23bf2419e643de74649a01bf77960ee", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "hifomaxi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0220e0b5a23bf2419e643de74649a01bf77960ee", + "etherscanUrl": "https://etherscan.io/address/0x0220e0b5a23bf2419e643de74649a01bf77960ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x03e946eb92a2e2d32aa12c92ade2a8e6fb7943bf", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x03e946eb92a2e2d32aa12c92ade2a8e6fb7943bf", + "etherscanUrl": "https://etherscan.io/address/0x03e946eb92a2e2d32aa12c92ade2a8e6fb7943bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x04f91fca60d926811a28b8f5bc31bba0f1efd754", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04f91fca60d926811a28b8f5bc31bba0f1efd754", + "etherscanUrl": "https://etherscan.io/address/0x04f91fca60d926811a28b8f5bc31bba0f1efd754", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x05954008a8b038ee373b5f2d96fe3b16467bef02", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x05954008a8b038ee373b5f2d96fe3b16467bef02", + "etherscanUrl": "https://etherscan.io/address/0x05954008a8b038ee373b5f2d96fe3b16467bef02", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x080ea8d13afd027c544c5fafa260d8eea60fffe7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x080ea8d13afd027c544c5fafa260d8eea60fffe7", + "etherscanUrl": "https://etherscan.io/address/0x080ea8d13afd027c544c5fafa260d8eea60fffe7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x08534ebb84b9508073012cb6bce9d1ee1df3a04f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08534ebb84b9508073012cb6bce9d1ee1df3a04f", + "etherscanUrl": "https://etherscan.io/address/0x08534ebb84b9508073012cb6bce9d1ee1df3a04f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b789ef2a2cda2fb5b5c7cdb278c2cb8bdc96e4c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b789ef2a2cda2fb5b5c7cdb278c2cb8bdc96e4c", + "etherscanUrl": "https://etherscan.io/address/0x0b789ef2a2cda2fb5b5c7cdb278c2cb8bdc96e4c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0d54e5297c0126d4edd7bc7bbefac7bee4b8d0fa", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vault.jxn.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0d54e5297c0126d4edd7bc7bbefac7bee4b8d0fa", + "etherscanUrl": "https://etherscan.io/address/0x0d54e5297c0126d4edd7bc7bbefac7bee4b8d0fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0da0df4be467140e74c76257d002f52e954be4d3", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "metakid.eth", + "ensAvatarUrl": "https://euc.li/metakid.eth", + "primaryAddress": "0x0da0df4be467140e74c76257d002f52e954be4d3", + "etherscanUrl": "https://etherscan.io/address/0x0da0df4be467140e74c76257d002f52e954be4d3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1180814ef4dd32106b9de7f3c172795cea3c3d6e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1180814ef4dd32106b9de7f3c172795cea3c3d6e", + "etherscanUrl": "https://etherscan.io/address/0x1180814ef4dd32106b9de7f3c172795cea3c3d6e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x148e2cae16e096d4cc223aa6254e33c58359ba17", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x148e2cae16e096d4cc223aa6254e33c58359ba17", + "etherscanUrl": "https://etherscan.io/address/0x148e2cae16e096d4cc223aa6254e33c58359ba17", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x15bccb4300542eb2081ae8a71d874015f23f2781", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nounsdeli.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x15bccb4300542eb2081ae8a71d874015f23f2781", + "etherscanUrl": "https://etherscan.io/address/0x15bccb4300542eb2081ae8a71d874015f23f2781", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x15f4de244107dfd83039927becb74934969087c2", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x15f4de244107dfd83039927becb74934969087c2", + "etherscanUrl": "https://etherscan.io/address/0x15f4de244107dfd83039927becb74934969087c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x17205ce9e86cd066673322f300e6368801082cd4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17205ce9e86cd066673322f300e6368801082cd4", + "etherscanUrl": "https://etherscan.io/address/0x17205ce9e86cd066673322f300e6368801082cd4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x175386b641c925cfafc2715a15957b218c8bb156", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nounwash.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x175386b641c925cfafc2715a15957b218c8bb156", + "etherscanUrl": "https://etherscan.io/address/0x175386b641c925cfafc2715a15957b218c8bb156", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1871d68fbbc1f81a2ebbc16c2682200853f4e15c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1871d68fbbc1f81a2ebbc16c2682200853f4e15c", + "etherscanUrl": "https://etherscan.io/address/0x1871d68fbbc1f81a2ebbc16c2682200853f4e15c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1bd40b1d0bd65b12b2995dd6ad8f0334aa7ed83d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1bd40b1d0bd65b12b2995dd6ad8f0334aa7ed83d", + "etherscanUrl": "https://etherscan.io/address/0x1bd40b1d0bd65b12b2995dd6ad8f0334aa7ed83d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1d96359332d68d9ff221d903704db0526cc008de", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1d96359332d68d9ff221d903704db0526cc008de", + "etherscanUrl": "https://etherscan.io/address/0x1d96359332d68d9ff221d903704db0526cc008de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x20b4e6caba712f520d9a3a309d8c0b0da801a212", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x20b4e6caba712f520d9a3a309d8c0b0da801a212", + "etherscanUrl": "https://etherscan.io/address/0x20b4e6caba712f520d9a3a309d8c0b0da801a212", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2239d39ad5c4b14911f39cabd21709819bb385c4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2239d39ad5c4b14911f39cabd21709819bb385c4", + "etherscanUrl": "https://etherscan.io/address/0x2239d39ad5c4b14911f39cabd21709819bb385c4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x225ac191fd2fef3b24e93b5c5175cdd7e0c35422", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dao.rac.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x225ac191fd2fef3b24e93b5c5175cdd7e0c35422", + "etherscanUrl": "https://etherscan.io/address/0x225ac191fd2fef3b24e93b5c5175cdd7e0c35422", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x23289332672e1dfc3d0b5fe894a85331eb350320", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23289332672e1dfc3d0b5fe894a85331eb350320", + "etherscanUrl": "https://etherscan.io/address/0x23289332672e1dfc3d0b5fe894a85331eb350320", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2536c09e5f5691498805884fa37811be3b2bddb4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2536c09e5f5691498805884fa37811be3b2bddb4", + "etherscanUrl": "https://etherscan.io/address/0x2536c09e5f5691498805884fa37811be3b2bddb4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x26648e3f7c7b12e55f6637f4bb5bd75314af943a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x26648e3f7c7b12e55f6637f4bb5bd75314af943a", + "etherscanUrl": "https://etherscan.io/address/0x26648e3f7c7b12e55f6637f4bb5bd75314af943a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x283214bc39866e078d36c6d6cd901f4bf4aacdff", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x283214bc39866e078d36c6d6cd901f4bf4aacdff", + "etherscanUrl": "https://etherscan.io/address/0x283214bc39866e078d36c6d6cd901f4bf4aacdff", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x293c931b9fe9d24b44fbbeeec7a1c690c0ad4741", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x293c931b9fe9d24b44fbbeeec7a1c690c0ad4741", + "etherscanUrl": "https://etherscan.io/address/0x293c931b9fe9d24b44fbbeeec7a1c690c0ad4741", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29d6206db93056790fec0dbfb3a384aeae7eff65", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29d6206db93056790fec0dbfb3a384aeae7eff65", + "etherscanUrl": "https://etherscan.io/address/0x29d6206db93056790fec0dbfb3a384aeae7eff65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2a632f56f9bdf7b66be80768e89631f3febeed24", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "moonshotcox.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2a632f56f9bdf7b66be80768e89631f3febeed24", + "etherscanUrl": "https://etherscan.io/address/0x2a632f56f9bdf7b66be80768e89631f3febeed24", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2a7e55dc9e2ae7f82c2bb4dc6dc1438ef3d3e760", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "noun1294.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2a7e55dc9e2ae7f82c2bb4dc6dc1438ef3d3e760", + "etherscanUrl": "https://etherscan.io/address/0x2a7e55dc9e2ae7f82c2bb4dc6dc1438ef3d3e760", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2b3a8d731550a67735934cff224eb7028ff6bb8b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "5762.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2b3a8d731550a67735934cff224eb7028ff6bb8b", + "etherscanUrl": "https://etherscan.io/address/0x2b3a8d731550a67735934cff224eb7028ff6bb8b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2c16e3dd0392da4671f249a05144c7a2ef3fe3c0", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2c16e3dd0392da4671f249a05144c7a2ef3fe3c0", + "etherscanUrl": "https://etherscan.io/address/0x2c16e3dd0392da4671f249a05144c7a2ef3fe3c0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2de5aad1bd26ec3fc4f64e95068c02d84df072c6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2de5aad1bd26ec3fc4f64e95068c02d84df072c6", + "etherscanUrl": "https://etherscan.io/address/0x2de5aad1bd26ec3fc4f64e95068c02d84df072c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2eddafb561e8211960feacbf643adf658d8990ae", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gallery.cryptopunk9511.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2eddafb561e8211960feacbf643adf658d8990ae", + "etherscanUrl": "https://etherscan.io/address/0x2eddafb561e8211960feacbf643adf658d8990ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f8334822c7362f3d80fe731d3962d582d25bf5b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f8334822c7362f3d80fe731d3962d582d25bf5b", + "etherscanUrl": "https://etherscan.io/address/0x2f8334822c7362f3d80fe731d3962d582d25bf5b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3084041e4fb5ef6f7fecf97ff9a407ec1805ee5f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3084041e4fb5ef6f7fecf97ff9a407ec1805ee5f", + "etherscanUrl": "https://etherscan.io/address/0x3084041e4fb5ef6f7fecf97ff9a407ec1805ee5f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x318578cde47892f7cab35f7a6de4b2573a82e5db", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x318578cde47892f7cab35f7a6de4b2573a82e5db", + "etherscanUrl": "https://etherscan.io/address/0x318578cde47892f7cab35f7a6de4b2573a82e5db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x33daf8e90cd1f214cc25a1865649e847254f2ece", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x33daf8e90cd1f214cc25a1865649e847254f2ece", + "etherscanUrl": "https://etherscan.io/address/0x33daf8e90cd1f214cc25a1865649e847254f2ece", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x35a129234d48959514ded8f8a6446f7f78db8f7e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x35a129234d48959514ded8f8a6446f7f78db8f7e", + "etherscanUrl": "https://etherscan.io/address/0x35a129234d48959514ded8f8a6446f7f78db8f7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x360402a2aed33dbfb4e988e03e39e86ee90c6783", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "joinedgecity.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x360402a2aed33dbfb4e988e03e39e86ee90c6783", + "etherscanUrl": "https://etherscan.io/address/0x360402a2aed33dbfb4e988e03e39e86ee90c6783", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3612aa0b3c48f934774462ba4e7947ccc351a15d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3612aa0b3c48f934774462ba4e7947ccc351a15d", + "etherscanUrl": "https://etherscan.io/address/0x3612aa0b3c48f934774462ba4e7947ccc351a15d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x36ca4898d224ae146cac312f4502568544157953", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x36ca4898d224ae146cac312f4502568544157953", + "etherscanUrl": "https://etherscan.io/address/0x36ca4898d224ae146cac312f4502568544157953", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3852471d266d9e2222ca9fdd922bafc904dc49e5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "batsoupyumvault.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3852471d266d9e2222ca9fdd922bafc904dc49e5", + "etherscanUrl": "https://etherscan.io/address/0x3852471d266d9e2222ca9fdd922bafc904dc49e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x385a7e8a44224b0b89eccd124a1b0417c97bc7fa", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x385a7e8a44224b0b89eccd124a1b0417c97bc7fa", + "etherscanUrl": "https://etherscan.io/address/0x385a7e8a44224b0b89eccd124a1b0417c97bc7fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3dca5a1285f7ef61d94004bbce0d0ab33f3262a7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dca5a1285f7ef61d94004bbce0d0ab33f3262a7", + "etherscanUrl": "https://etherscan.io/address/0x3dca5a1285f7ef61d94004bbce0d0ab33f3262a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3dfd76a87cf769275e5bc8c4ab77e47d50ecda49", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dfd76a87cf769275e5bc8c4ab77e47d50ecda49", + "etherscanUrl": "https://etherscan.io/address/0x3dfd76a87cf769275e5bc8c4ab77e47d50ecda49", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3f0369c827736e305816f4aaff1c518b629bc227", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f0369c827736e305816f4aaff1c518b629bc227", + "etherscanUrl": "https://etherscan.io/address/0x3f0369c827736e305816f4aaff1c518b629bc227", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3fffac06c17b931bde0fc31b1b68792b2cb9b445", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3fffac06c17b931bde0fc31b1b68792b2cb9b445", + "etherscanUrl": "https://etherscan.io/address/0x3fffac06c17b931bde0fc31b1b68792b2cb9b445", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x40211a9c8a1fefdafe58fd60bbdb067050d769cc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40211a9c8a1fefdafe58fd60bbdb067050d769cc", + "etherscanUrl": "https://etherscan.io/address/0x40211a9c8a1fefdafe58fd60bbdb067050d769cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x41a47ff6026f36773b145f40d7c735b0a633cee9", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "0xhotdog.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x41a47ff6026f36773b145f40d7c735b0a633cee9", + "etherscanUrl": "https://etherscan.io/address/0x41a47ff6026f36773b145f40d7c735b0a633cee9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x42769d446578fba67755bcb7aa1c319df95493b6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42769d446578fba67755bcb7aa1c319df95493b6", + "etherscanUrl": "https://etherscan.io/address/0x42769d446578fba67755bcb7aa1c319df95493b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x43d939b61c6ae63889e8d2b39a5193a2a6e5ce20", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43d939b61c6ae63889e8d2b39a5193a2a6e5ce20", + "etherscanUrl": "https://etherscan.io/address/0x43d939b61c6ae63889e8d2b39a5193a2a6e5ce20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4455e8d956db0b0485df3d15bcfe7111dd47062a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4455e8d956db0b0485df3d15bcfe7111dd47062a", + "etherscanUrl": "https://etherscan.io/address/0x4455e8d956db0b0485df3d15bcfe7111dd47062a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x445923062d91bc70e093561d05cc7be0a1297e25", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x445923062d91bc70e093561d05cc7be0a1297e25", + "etherscanUrl": "https://etherscan.io/address/0x445923062d91bc70e093561d05cc7be0a1297e25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x44d97d22b3d37d837ce4b22773aad9d1566055d9", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44d97d22b3d37d837ce4b22773aad9d1566055d9", + "etherscanUrl": "https://etherscan.io/address/0x44d97d22b3d37d837ce4b22773aad9d1566055d9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4548d498460599286ce29baf9e6b775c19385227", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4548d498460599286ce29baf9e6b775c19385227", + "etherscanUrl": "https://etherscan.io/address/0x4548d498460599286ce29baf9e6b775c19385227", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x46376a53ed0714fc3d519d61f227c907dcdd9d4a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "countessolenska.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x46376a53ed0714fc3d519d61f227c907dcdd9d4a", + "etherscanUrl": "https://etherscan.io/address/0x46376a53ed0714fc3d519d61f227c907dcdd9d4a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x484c6dcd50978b9d525cc20a02d5801f492931f8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x484c6dcd50978b9d525cc20a02d5801f492931f8", + "etherscanUrl": "https://etherscan.io/address/0x484c6dcd50978b9d525cc20a02d5801f492931f8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x486fad96c217b0d85976e482a104829b23f76313", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x486fad96c217b0d85976e482a104829b23f76313", + "etherscanUrl": "https://etherscan.io/address/0x486fad96c217b0d85976e482a104829b23f76313", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x48b352561bd48a21c1d70f8ad267218fbdd56de7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x48b352561bd48a21c1d70f8ad267218fbdd56de7", + "etherscanUrl": "https://etherscan.io/address/0x48b352561bd48a21c1d70f8ad267218fbdd56de7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x495fe5bb98d9571b2cd5d8db172636c6cec6ba79", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x495fe5bb98d9571b2cd5d8db172636c6cec6ba79", + "etherscanUrl": "https://etherscan.io/address/0x495fe5bb98d9571b2cd5d8db172636c6cec6ba79", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x49756fd40a569a42e37153ddaf47081ec054b58c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49756fd40a569a42e37153ddaf47081ec054b58c", + "etherscanUrl": "https://etherscan.io/address/0x49756fd40a569a42e37153ddaf47081ec054b58c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4e22b5c59213eed3cc41ad1f0603218b78f43a18", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e22b5c59213eed3cc41ad1f0603218b78f43a18", + "etherscanUrl": "https://etherscan.io/address/0x4e22b5c59213eed3cc41ad1f0603218b78f43a18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4e2e67836d10b02b1dce78591af6dfd1e2d7bcba", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nedvault.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4e2e67836d10b02b1dce78591af6dfd1e2d7bcba", + "etherscanUrl": "https://etherscan.io/address/0x4e2e67836d10b02b1dce78591af6dfd1e2d7bcba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x54cf3c91144277391b6a8174624d8ba27bc54ce2", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54cf3c91144277391b6a8174624d8ba27bc54ce2", + "etherscanUrl": "https://etherscan.io/address/0x54cf3c91144277391b6a8174624d8ba27bc54ce2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x55d7b5623dd7a7f306374768297793885fa957e6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55d7b5623dd7a7f306374768297793885fa957e6", + "etherscanUrl": "https://etherscan.io/address/0x55d7b5623dd7a7f306374768297793885fa957e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x577ff1df8c33f95c6180bcd7b56251a9d1f3422c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x577ff1df8c33f95c6180bcd7b56251a9d1f3422c", + "etherscanUrl": "https://etherscan.io/address/0x577ff1df8c33f95c6180bcd7b56251a9d1f3422c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x585f4fbe2d2a889c286fa71fb81d01f30773f4b1", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dontpanic.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x585f4fbe2d2a889c286fa71fb81d01f30773f4b1", + "etherscanUrl": "https://etherscan.io/address/0x585f4fbe2d2a889c286fa71fb81d01f30773f4b1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x58947f539f1c1e930c2aea6e8a9fb0ecc9763357", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "multisig.atriumart.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x58947f539f1c1e930c2aea6e8a9fb0ecc9763357", + "etherscanUrl": "https://etherscan.io/address/0x58947f539f1c1e930c2aea6e8a9fb0ecc9763357", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5a302906ce489e27ef16a3610f7f783a3d07f429", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a302906ce489e27ef16a3610f7f783a3d07f429", + "etherscanUrl": "https://etherscan.io/address/0x5a302906ce489e27ef16a3610f7f783a3d07f429", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5d6ccd5336b44d25c4dcb66e5dd86fe24d151c4d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d6ccd5336b44d25c4dcb66e5dd86fe24d151c4d", + "etherscanUrl": "https://etherscan.io/address/0x5d6ccd5336b44d25c4dcb66e5dd86fe24d151c4d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5fa2e92ecade860daff37d2b7f0b36abf42ad09c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5fa2e92ecade860daff37d2b7f0b36abf42ad09c", + "etherscanUrl": "https://etherscan.io/address/0x5fa2e92ecade860daff37d2b7f0b36abf42ad09c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5fc97b4358afc69565e2d120ca61e46a2e89e82b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "riz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5fc97b4358afc69565e2d120ca61e46a2e89e82b", + "etherscanUrl": "https://etherscan.io/address/0x5fc97b4358afc69565e2d120ca61e46a2e89e82b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x600618b3018e2ada1913a72851aa86556086282d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x600618b3018e2ada1913a72851aa86556086282d", + "etherscanUrl": "https://etherscan.io/address/0x600618b3018e2ada1913a72851aa86556086282d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x62f13d9993342d39f02d5a49f8a05414b5fdaff5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "1kx.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x62f13d9993342d39f02d5a49f8a05414b5fdaff5", + "etherscanUrl": "https://etherscan.io/address/0x62f13d9993342d39f02d5a49f8a05414b5fdaff5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6461f575da2371bb16210e936de5ee1cfb28f10d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6461f575da2371bb16210e936de5ee1cfb28f10d", + "etherscanUrl": "https://etherscan.io/address/0x6461f575da2371bb16210e936de5ee1cfb28f10d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64ae07209fce5abdb56196df9a75ef00d1c1a041", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64ae07209fce5abdb56196df9a75ef00d1c1a041", + "etherscanUrl": "https://etherscan.io/address/0x64ae07209fce5abdb56196df9a75ef00d1c1a041", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x65f6e805834286ae4e971d31c21d7bcda65bbc65", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65f6e805834286ae4e971d31c21d7bcda65bbc65", + "etherscanUrl": "https://etherscan.io/address/0x65f6e805834286ae4e971d31c21d7bcda65bbc65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6670decb587443bd054478e1cddb2174da760a1c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6670decb587443bd054478e1cddb2174da760a1c", + "etherscanUrl": "https://etherscan.io/address/0x6670decb587443bd054478e1cddb2174da760a1c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x68a003d1bf3a9674caf002bb7685f6a14f31bed1", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vault.wylin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x68a003d1bf3a9674caf002bb7685f6a14f31bed1", + "etherscanUrl": "https://etherscan.io/address/0x68a003d1bf3a9674caf002bb7685f6a14f31bed1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x68a2ad5b63ab374fc5f6f7d1fb5f41b267035868", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nounsesports.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/QmR2BN8fmLV1tXPPE7UVDKm3LrG1Yb1YYh8WojQ6XYLCLs", + "primaryAddress": "0x68a2ad5b63ab374fc5f6f7d1fb5f41b267035868", + "etherscanUrl": "https://etherscan.io/address/0x68a2ad5b63ab374fc5f6f7d1fb5f41b267035868", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x68f93ca632c5da79096cd92fa6fffa7182e55864", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68f93ca632c5da79096cd92fa6fffa7182e55864", + "etherscanUrl": "https://etherscan.io/address/0x68f93ca632c5da79096cd92fa6fffa7182e55864", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6a693a682f8cfea669c3170814d875107cb3accb", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "xoxo.lossy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6a693a682f8cfea669c3170814d875107cb3accb", + "etherscanUrl": "https://etherscan.io/address/0x6a693a682f8cfea669c3170814d875107cb3accb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6b54bdfcc61e57bb228111441869d4f357f9b1dc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b54bdfcc61e57bb228111441869d4f357f9b1dc", + "etherscanUrl": "https://etherscan.io/address/0x6b54bdfcc61e57bb228111441869d4f357f9b1dc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f262a55be7e14aeee5482d2ba863a2dabb44e72", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "treasuryhedgefund.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6f262a55be7e14aeee5482d2ba863a2dabb44e72", + "etherscanUrl": "https://etherscan.io/address/0x6f262a55be7e14aeee5482d2ba863a2dabb44e72", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f9e3976fa3b5b22761fe5d635e1f0d9d9aeb85d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "skilift.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6f9e3976fa3b5b22761fe5d635e1f0d9d9aeb85d", + "etherscanUrl": "https://etherscan.io/address/0x6f9e3976fa3b5b22761fe5d635e1f0d9d9aeb85d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6fb5d14b61e595e6f34baf952c5d3e60e45883b0", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "peterpandam.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6fb5d14b61e595e6f34baf952c5d3e60e45883b0", + "etherscanUrl": "https://etherscan.io/address/0x6fb5d14b61e595e6f34baf952c5d3e60e45883b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7079bfcd09ac050d3c8ca5d230336505bf5beb8a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vaultlandbread.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7079bfcd09ac050d3c8ca5d230336505bf5beb8a", + "etherscanUrl": "https://etherscan.io/address/0x7079bfcd09ac050d3c8ca5d230336505bf5beb8a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x723e7b9031c834e042b67c991718712065ef508f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x723e7b9031c834e042b67c991718712065ef508f", + "etherscanUrl": "https://etherscan.io/address/0x723e7b9031c834e042b67c991718712065ef508f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7313fbf9ee7cfaada3b61bc9b52e9fce4d461ae3", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7313fbf9ee7cfaada3b61bc9b52e9fce4d461ae3", + "etherscanUrl": "https://etherscan.io/address/0x7313fbf9ee7cfaada3b61bc9b52e9fce4d461ae3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73a9ee2784e5ae215e1493fadae60865c431a62b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73a9ee2784e5ae215e1493fadae60865c431a62b", + "etherscanUrl": "https://etherscan.io/address/0x73a9ee2784e5ae215e1493fadae60865c431a62b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x74c6cfc31e8c0eafe38cfc59930d00d06c3c1ce1", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x74c6cfc31e8c0eafe38cfc59930d00d06c3c1ce1", + "etherscanUrl": "https://etherscan.io/address/0x74c6cfc31e8c0eafe38cfc59930d00d06c3c1ce1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x75f54282d941d7485fe7ae7d4b7902b18cf57702", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x75f54282d941d7485fe7ae7d4b7902b18cf57702", + "etherscanUrl": "https://etherscan.io/address/0x75f54282d941d7485fe7ae7d4b7902b18cf57702", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7647fc553bc8a03df9affbdc656ae159d894a40c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7647fc553bc8a03df9affbdc656ae159d894a40c", + "etherscanUrl": "https://etherscan.io/address/0x7647fc553bc8a03df9affbdc656ae159d894a40c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76ade2f654eb9490275114310fde8dac0d0eed87", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76ade2f654eb9490275114310fde8dac0d0eed87", + "etherscanUrl": "https://etherscan.io/address/0x76ade2f654eb9490275114310fde8dac0d0eed87", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76eb5a680c47e900f1f6f887517309db02e26695", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76eb5a680c47e900f1f6f887517309db02e26695", + "etherscanUrl": "https://etherscan.io/address/0x76eb5a680c47e900f1f6f887517309db02e26695", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76fb13f00cdbdd5eac8e2664cf14be791af87cb0", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "matimio.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x76fb13f00cdbdd5eac8e2664cf14be791af87cb0", + "etherscanUrl": "https://etherscan.io/address/0x76fb13f00cdbdd5eac8e2664cf14be791af87cb0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7825d1967c8dc8a315e59893499f0b0a00ed0e5d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7825d1967c8dc8a315e59893499f0b0a00ed0e5d", + "etherscanUrl": "https://etherscan.io/address/0x7825d1967c8dc8a315e59893499f0b0a00ed0e5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x78324b3be207713b3219d4f2256055f91bf53ee5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78324b3be207713b3219d4f2256055f91bf53ee5", + "etherscanUrl": "https://etherscan.io/address/0x78324b3be207713b3219d4f2256055f91bf53ee5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x78e3951e3108158a7e5be26c266d755c7ff7cdf8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78e3951e3108158a7e5be26c266d755c7ff7cdf8", + "etherscanUrl": "https://etherscan.io/address/0x78e3951e3108158a7e5be26c266d755c7ff7cdf8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b5db6d63f4552b15b20dd16279e9892fdd1b541", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b5db6d63f4552b15b20dd16279e9892fdd1b541", + "etherscanUrl": "https://etherscan.io/address/0x7b5db6d63f4552b15b20dd16279e9892fdd1b541", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b5f647af561631226283108ce2363ec1a791567", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b5f647af561631226283108ce2363ec1a791567", + "etherscanUrl": "https://etherscan.io/address/0x7b5f647af561631226283108ce2363ec1a791567", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7bee754c1b75917cadc51e23f69304419970b04f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7bee754c1b75917cadc51e23f69304419970b04f", + "etherscanUrl": "https://etherscan.io/address/0x7bee754c1b75917cadc51e23f69304419970b04f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7c8a575b07d6a2e8ad27effb9856a12a7d88593b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "llindsayy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7c8a575b07d6a2e8ad27effb9856a12a7d88593b", + "etherscanUrl": "https://etherscan.io/address/0x7c8a575b07d6a2e8ad27effb9856a12a7d88593b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7c96b5a263fbaf7d5f8660fa19f79219f7fb4848", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c96b5a263fbaf7d5f8660fa19f79219f7fb4848", + "etherscanUrl": "https://etherscan.io/address/0x7c96b5a263fbaf7d5f8660fa19f79219f7fb4848", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e67c887a20c5bffb32745440752f0521fdca7a0", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e67c887a20c5bffb32745440752f0521fdca7a0", + "etherscanUrl": "https://etherscan.io/address/0x7e67c887a20c5bffb32745440752f0521fdca7a0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7feabf26185d54629a067ee237041e703e6a242f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "fred.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7feabf26185d54629a067ee237041e703e6a242f", + "etherscanUrl": "https://etherscan.io/address/0x7feabf26185d54629a067ee237041e703e6a242f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x80cc881c065656b3e29ea41de4cfc8b52ef55c1f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x80cc881c065656b3e29ea41de4cfc8b52ef55c1f", + "etherscanUrl": "https://etherscan.io/address/0x80cc881c065656b3e29ea41de4cfc8b52ef55c1f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x81790453078a15256ba3fff8997ae0d0b52924fa", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81790453078a15256ba3fff8997ae0d0b52924fa", + "etherscanUrl": "https://etherscan.io/address/0x81790453078a15256ba3fff8997ae0d0b52924fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x830bd73e4184cef73443c15111a1df14e495c706", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x830bd73e4184cef73443c15111a1df14e495c706", + "etherscanUrl": "https://etherscan.io/address/0x830bd73e4184cef73443c15111a1df14e495c706", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8323f1c687f7e2296ec71ee3549a7430ea7ec730", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vault.goat-club.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8323f1c687f7e2296ec71ee3549a7430ea7ec730", + "etherscanUrl": "https://etherscan.io/address/0x8323f1c687f7e2296ec71ee3549a7430ea7ec730", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x859483270ffef2f36dbab6401f858879520d37aa", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x859483270ffef2f36dbab6401f858879520d37aa", + "etherscanUrl": "https://etherscan.io/address/0x859483270ffef2f36dbab6401f858879520d37aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x88da118cc79a9fe0d3148a8bd9c025f5c427098e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88da118cc79a9fe0d3148a8bd9c025f5c427098e", + "etherscanUrl": "https://etherscan.io/address/0x88da118cc79a9fe0d3148a8bd9c025f5c427098e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b45d1caccb3593e9f1015ba8e97afb68de3a0d1", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b45d1caccb3593e9f1015ba8e97afb68de3a0d1", + "etherscanUrl": "https://etherscan.io/address/0x8b45d1caccb3593e9f1015ba8e97afb68de3a0d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8ba68cfe71550efc8988d81d040473709b7f9218", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ba68cfe71550efc8988d81d040473709b7f9218", + "etherscanUrl": "https://etherscan.io/address/0x8ba68cfe71550efc8988d81d040473709b7f9218", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c88def701323a02039fd6b77f4db670314e776d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c88def701323a02039fd6b77f4db670314e776d", + "etherscanUrl": "https://etherscan.io/address/0x8c88def701323a02039fd6b77f4db670314e776d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8daedff0a97d666cb571556b4277ee5ccebadffe", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8daedff0a97d666cb571556b4277ee5ccebadffe", + "etherscanUrl": "https://etherscan.io/address/0x8daedff0a97d666cb571556b4277ee5ccebadffe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8e4158c0b1865fc34e4c33ddbafcdfd3d0914242", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e4158c0b1865fc34e4c33ddbafcdfd3d0914242", + "etherscanUrl": "https://etherscan.io/address/0x8e4158c0b1865fc34e4c33ddbafcdfd3d0914242", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8f3b1b992f331a7180b38bdf1111a135e9a1c6fc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f3b1b992f331a7180b38bdf1111a135e9a1c6fc", + "etherscanUrl": "https://etherscan.io/address/0x8f3b1b992f331a7180b38bdf1111a135e9a1c6fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea", + "etherscanUrl": "https://etherscan.io/address/0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8fc6ebed94cfbc94e1d74576cfa03b986572c435", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8fc6ebed94cfbc94e1d74576cfa03b986572c435", + "etherscanUrl": "https://etherscan.io/address/0x8fc6ebed94cfbc94e1d74576cfa03b986572c435", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9244b806744709d9c607a5e98e8f553d2467418a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9244b806744709d9c607a5e98e8f553d2467418a", + "etherscanUrl": "https://etherscan.io/address/0x9244b806744709d9c607a5e98e8f553d2467418a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x93757e12bfb1c0d4d2e319b621e27cb499bd35be", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93757e12bfb1c0d4d2e319b621e27cb499bd35be", + "etherscanUrl": "https://etherscan.io/address/0x93757e12bfb1c0d4d2e319b621e27cb499bd35be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x937af09bd43bd2601b21d68f5a5b7fdad45795cc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "0xfrog.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x937af09bd43bd2601b21d68f5a5b7fdad45795cc", + "etherscanUrl": "https://etherscan.io/address/0x937af09bd43bd2601b21d68f5a5b7fdad45795cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x964cc7f2ba1ea48064d7dd7d8fd00cdaa656cbb6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x964cc7f2ba1ea48064d7dd7d8fd00cdaa656cbb6", + "etherscanUrl": "https://etherscan.io/address/0x964cc7f2ba1ea48064d7dd7d8fd00cdaa656cbb6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x975b60c6f486738a09b41fec71cde94b5d7c1e4e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x975b60c6f486738a09b41fec71cde94b5d7c1e4e", + "etherscanUrl": "https://etherscan.io/address/0x975b60c6f486738a09b41fec71cde94b5d7c1e4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9769334fc882775f4951865aa473481880669d47", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9769334fc882775f4951865aa473481880669d47", + "etherscanUrl": "https://etherscan.io/address/0x9769334fc882775f4951865aa473481880669d47", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x987dfce0563d4b733c60510928ffed0b3d0dc801", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "w.jesse.xyz", + "ensAvatarUrl": null, + "primaryAddress": "0x987dfce0563d4b733c60510928ffed0b3d0dc801", + "etherscanUrl": "https://etherscan.io/address/0x987dfce0563d4b733c60510928ffed0b3d0dc801", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9985cfbe0a03226e3f63e7ac04bdd70f4fccea52", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9985cfbe0a03226e3f63e7ac04bdd70f4fccea52", + "etherscanUrl": "https://etherscan.io/address/0x9985cfbe0a03226e3f63e7ac04bdd70f4fccea52", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9a57ea4b1e64cc64b26e51291441ca1d9eec045a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "honeyb.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9a57ea4b1e64cc64b26e51291441ca1d9eec045a", + "etherscanUrl": "https://etherscan.io/address/0x9a57ea4b1e64cc64b26e51291441ca1d9eec045a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9aceb64d23ff9944b17ac8f43c0af6f708ca9459", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "bid.wizzies.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9aceb64d23ff9944b17ac8f43c0af6f708ca9459", + "etherscanUrl": "https://etherscan.io/address/0x9aceb64d23ff9944b17ac8f43c0af6f708ca9459", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9d7711db9cdeacb073d689e79c50c648820ac650", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d7711db9cdeacb073d689e79c50c648820ac650", + "etherscanUrl": "https://etherscan.io/address/0x9d7711db9cdeacb073d689e79c50c648820ac650", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9dfa905f6192ba863ad309a8250f26cf58fe6487", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9dfa905f6192ba863ad309a8250f26cf58fe6487", + "etherscanUrl": "https://etherscan.io/address/0x9dfa905f6192ba863ad309a8250f26cf58fe6487", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9f4f78a6c4a5e6f8afa81631b9120ae3c831b494", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f4f78a6c4a5e6f8afa81631b9120ae3c831b494", + "etherscanUrl": "https://etherscan.io/address/0x9f4f78a6c4a5e6f8afa81631b9120ae3c831b494", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9f5a86b068b44d108f811f5ede5948a989f9ab7d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9f5a86b068b44d108f811f5ede5948a989f9ab7d", + "etherscanUrl": "https://etherscan.io/address/0x9f5a86b068b44d108f811f5ede5948a989f9ab7d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9fcd1c2826414a854d2482d732b35cd34cd7ec7e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9fcd1c2826414a854d2482d732b35cd34cd7ec7e", + "etherscanUrl": "https://etherscan.io/address/0x9fcd1c2826414a854d2482d732b35cd34cd7ec7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa002c3a0c7eb9330c5b21cf3bec7fd1a7fa0befe", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa002c3a0c7eb9330c5b21cf3bec7fd1a7fa0befe", + "etherscanUrl": "https://etherscan.io/address/0xa002c3a0c7eb9330c5b21cf3bec7fd1a7fa0befe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa0bd285e164f209d1163f449dc376d17adcd25c2", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0bd285e164f209d1163f449dc376d17adcd25c2", + "etherscanUrl": "https://etherscan.io/address/0xa0bd285e164f209d1163f449dc376d17adcd25c2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa21023920581fdadaa893124f401e0c0ed168725", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa21023920581fdadaa893124f401e0c0ed168725", + "etherscanUrl": "https://etherscan.io/address/0xa21023920581fdadaa893124f401e0c0ed168725", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa22e30ec47bf0a2005e11e81d9b08427bbca0b8b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "hot.nounsesports.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa22e30ec47bf0a2005e11e81d9b08427bbca0b8b", + "etherscanUrl": "https://etherscan.io/address/0xa22e30ec47bf0a2005e11e81d9b08427bbca0b8b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2da1b49191d3d26481842081a32b1e9c4577d7c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2da1b49191d3d26481842081a32b1e9c4577d7c", + "etherscanUrl": "https://etherscan.io/address/0xa2da1b49191d3d26481842081a32b1e9c4577d7c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2e41625416d46302e7352f56f8de92aadb6e886", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2e41625416d46302e7352f56f8de92aadb6e886", + "etherscanUrl": "https://etherscan.io/address/0xa2e41625416d46302e7352f56f8de92aadb6e886", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa397d02928acaaf6553fd7e832413c5a732cf559", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa397d02928acaaf6553fd7e832413c5a732cf559", + "etherscanUrl": "https://etherscan.io/address/0xa397d02928acaaf6553fd7e832413c5a732cf559", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa555d1ee16780b2d414ed97f4f169c0740099615", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa555d1ee16780b2d414ed97f4f169c0740099615", + "etherscanUrl": "https://etherscan.io/address/0xa555d1ee16780b2d414ed97f4f169c0740099615", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa5a7deca9bfa197f3a8d4e1738943516080917df", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa5a7deca9bfa197f3a8d4e1738943516080917df", + "etherscanUrl": "https://etherscan.io/address/0xa5a7deca9bfa197f3a8d4e1738943516080917df", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa66d568cd146c01ac44034a01272c69c2d9e4bab", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa66d568cd146c01ac44034a01272c69c2d9e4bab", + "etherscanUrl": "https://etherscan.io/address/0xa66d568cd146c01ac44034a01272c69c2d9e4bab", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa690f774e9ed5ca44a70a5f2e0f4181717fcd8b7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa690f774e9ed5ca44a70a5f2e0f4181717fcd8b7", + "etherscanUrl": "https://etherscan.io/address/0xa690f774e9ed5ca44a70a5f2e0f4181717fcd8b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa6922b2eba5c911e5adffa7d0d6a9817398ccca5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6922b2eba5c911e5adffa7d0d6a9817398ccca5", + "etherscanUrl": "https://etherscan.io/address/0xa6922b2eba5c911e5adffa7d0d6a9817398ccca5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa74d75b1dfb5238b3dfc8765565edd0a1bfb8a8c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa74d75b1dfb5238b3dfc8765565edd0a1bfb8a8c", + "etherscanUrl": "https://etherscan.io/address/0xa74d75b1dfb5238b3dfc8765565edd0a1bfb8a8c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa943e039b1ce670873cccd4024ab959082fc6dd8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa943e039b1ce670873cccd4024ab959082fc6dd8", + "etherscanUrl": "https://etherscan.io/address/0xa943e039b1ce670873cccd4024ab959082fc6dd8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xabda8e7bd535e25476dfef5c9474de4a821981e2", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabda8e7bd535e25476dfef5c9474de4a821981e2", + "etherscanUrl": "https://etherscan.io/address/0xabda8e7bd535e25476dfef5c9474de4a821981e2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac721445accd6b4502bf0205a06d1e1def2ad394", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac721445accd6b4502bf0205a06d1e1def2ad394", + "etherscanUrl": "https://etherscan.io/address/0xac721445accd6b4502bf0205a06d1e1def2ad394", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac780038c3b4248f1aa5f2e1856292a0e908ad84", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac780038c3b4248f1aa5f2e1856292a0e908ad84", + "etherscanUrl": "https://etherscan.io/address/0xac780038c3b4248f1aa5f2e1856292a0e908ad84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad8b3bda0b32faddb8d2b8f9cc08ff3bbcc2d57b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad8b3bda0b32faddb8d2b8f9cc08ff3bbcc2d57b", + "etherscanUrl": "https://etherscan.io/address/0xad8b3bda0b32faddb8d2b8f9cc08ff3bbcc2d57b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb0aa03d3fb70bf55cb3a57d0dc33e88afd6b133a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0aa03d3fb70bf55cb3a57d0dc33e88afd6b133a", + "etherscanUrl": "https://etherscan.io/address/0xb0aa03d3fb70bf55cb3a57d0dc33e88afd6b133a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb20d2b98151c4ff141a4ea1b4adce2964ea99af7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb20d2b98151c4ff141a4ea1b4adce2964ea99af7", + "etherscanUrl": "https://etherscan.io/address/0xb20d2b98151c4ff141a4ea1b4adce2964ea99af7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb34f0138e369721bff5c8b72a324bf4fa48cb873", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb34f0138e369721bff5c8b72a324bf4fa48cb873", + "etherscanUrl": "https://etherscan.io/address/0xb34f0138e369721bff5c8b72a324bf4fa48cb873", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb4df3b128d7e4d7eb374e155fb40bbdef20e8068", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4df3b128d7e4d7eb374e155fb40bbdef20e8068", + "etherscanUrl": "https://etherscan.io/address/0xb4df3b128d7e4d7eb374e155fb40bbdef20e8068", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb50b359e43d379a1e4878655966de033849f513f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb50b359e43d379a1e4878655966de033849f513f", + "etherscanUrl": "https://etherscan.io/address/0xb50b359e43d379a1e4878655966de033849f513f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb68dd1b11119034b58cb6be9b2e4252b1f28ede9", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb68dd1b11119034b58cb6be9b2e4252b1f28ede9", + "etherscanUrl": "https://etherscan.io/address/0xb68dd1b11119034b58cb6be9b2e4252b1f28ede9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7b037e83f492750152f25c24547476f0fd7ba31", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7b037e83f492750152f25c24547476f0fd7ba31", + "etherscanUrl": "https://etherscan.io/address/0xb7b037e83f492750152f25c24547476f0fd7ba31", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7c3785efba3ad94c2c3277e865a5ac62a9818d5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7c3785efba3ad94c2c3277e865a5ac62a9818d5", + "etherscanUrl": "https://etherscan.io/address/0xb7c3785efba3ad94c2c3277e865a5ac62a9818d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb82158dad53438a9f91404e3fac9c97cbbe2c00c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb82158dad53438a9f91404e3fac9c97cbbe2c00c", + "etherscanUrl": "https://etherscan.io/address/0xb82158dad53438a9f91404e3fac9c97cbbe2c00c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb88e279247c8c40f7089da84e0d69e65d84c545a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb88e279247c8c40f7089da84e0d69e65d84c545a", + "etherscanUrl": "https://etherscan.io/address/0xb88e279247c8c40f7089da84e0d69e65d84c545a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb8a25da593116692444b606be0ed838570b0d7c8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb8a25da593116692444b606be0ed838570b0d7c8", + "etherscanUrl": "https://etherscan.io/address/0xb8a25da593116692444b606be0ed838570b0d7c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb9f6ac8535b7afd8af4614a5a0fb1e0ebd601831", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9f6ac8535b7afd8af4614a5a0fb1e0ebd601831", + "etherscanUrl": "https://etherscan.io/address/0xb9f6ac8535b7afd8af4614a5a0fb1e0ebd601831", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba4b00b09d1b5ce18e2e044b09e05ef6f4ebb061", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba4b00b09d1b5ce18e2e044b09e05ef6f4ebb061", + "etherscanUrl": "https://etherscan.io/address/0xba4b00b09d1b5ce18e2e044b09e05ef6f4ebb061", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbbb589796d01ef05f24c49f57d53125d4382ab62", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbb589796d01ef05f24c49f57d53125d4382ab62", + "etherscanUrl": "https://etherscan.io/address/0xbbb589796d01ef05f24c49f57d53125d4382ab62", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbbd4429f99f0fe92b5c35a47e84a337337efe6b6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbbd4429f99f0fe92b5c35a47e84a337337efe6b6", + "etherscanUrl": "https://etherscan.io/address/0xbbd4429f99f0fe92b5c35a47e84a337337efe6b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbc18860eae54418b392ec880775f1084e4a8dedc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc18860eae54418b392ec880775f1084e4a8dedc", + "etherscanUrl": "https://etherscan.io/address/0xbc18860eae54418b392ec880775f1084e4a8dedc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbd64e8a8f9ed2d634c91f500442af7bad67bfd03", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd64e8a8f9ed2d634c91f500442af7bad67bfd03", + "etherscanUrl": "https://etherscan.io/address/0xbd64e8a8f9ed2d634c91f500442af7bad67bfd03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbdc0d7ecb484c8f03c7cef13f37eb11cc643f586", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdc0d7ecb484c8f03c7cef13f37eb11cc643f586", + "etherscanUrl": "https://etherscan.io/address/0xbdc0d7ecb484c8f03c7cef13f37eb11cc643f586", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbf710a872f2c336119fb077f1ada83310cdb255a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf710a872f2c336119fb077f1ada83310cdb255a", + "etherscanUrl": "https://etherscan.io/address/0xbf710a872f2c336119fb077f1ada83310cdb255a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbf8060106d2e83c106915a575baea3dc90c892a6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf8060106d2e83c106915a575baea3dc90c892a6", + "etherscanUrl": "https://etherscan.io/address/0xbf8060106d2e83c106915a575baea3dc90c892a6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc2e1869e148d867cbbb6d88ba8845c561bab356e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2e1869e148d867cbbb6d88ba8845c561bab356e", + "etherscanUrl": "https://etherscan.io/address/0xc2e1869e148d867cbbb6d88ba8845c561bab356e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3b80922832450aabafe6aae8a6aaf1e5e6158ea", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3b80922832450aabafe6aae8a6aaf1e5e6158ea", + "etherscanUrl": "https://etherscan.io/address/0xc3b80922832450aabafe6aae8a6aaf1e5e6158ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc4c57c2d1d6bbe6575f7839861252d3cbb79e96c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc4c57c2d1d6bbe6575f7839861252d3cbb79e96c", + "etherscanUrl": "https://etherscan.io/address/0xc4c57c2d1d6bbe6575f7839861252d3cbb79e96c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc681ca88420efb78a418f06c2f511ab130b867fa", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc681ca88420efb78a418f06c2f511ab130b867fa", + "etherscanUrl": "https://etherscan.io/address/0xc681ca88420efb78a418f06c2f511ab130b867fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc7d89ad366244ebf0ed85f2addc3ad7a81da387e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7d89ad366244ebf0ed85f2addc3ad7a81da387e", + "etherscanUrl": "https://etherscan.io/address/0xc7d89ad366244ebf0ed85f2addc3ad7a81da387e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc8993df844bde5eb4a8434971bf0d26367fc0f27", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8993df844bde5eb4a8434971bf0d26367fc0f27", + "etherscanUrl": "https://etherscan.io/address/0xc8993df844bde5eb4a8434971bf0d26367fc0f27", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc8a2ad99a24177a7889b9bfbe00c60cb6400fa6c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc8a2ad99a24177a7889b9bfbe00c60cb6400fa6c", + "etherscanUrl": "https://etherscan.io/address/0xc8a2ad99a24177a7889b9bfbe00c60cb6400fa6c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc942c86a2404101376c838efbff0789efbd9e1f6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc942c86a2404101376c838efbff0789efbd9e1f6", + "etherscanUrl": "https://etherscan.io/address/0xc942c86a2404101376c838efbff0789efbd9e1f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc9899208e8ca2e193fbbb6c713f46a2bf8529236", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc9899208e8ca2e193fbbb6c713f46a2bf8529236", + "etherscanUrl": "https://etherscan.io/address/0xc9899208e8ca2e193fbbb6c713f46a2bf8529236", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xca6caedcc79d4d6541b3f82dc7754a14d9b196f8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca6caedcc79d4d6541b3f82dc7754a14d9b196f8", + "etherscanUrl": "https://etherscan.io/address/0xca6caedcc79d4d6541b3f82dc7754a14d9b196f8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcdfd504e82211b37c5e18ec0f37355a2ea3fab6d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcdfd504e82211b37c5e18ec0f37355a2ea3fab6d", + "etherscanUrl": "https://etherscan.io/address/0xcdfd504e82211b37c5e18ec0f37355a2ea3fab6d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xce82fc16d33da963a790729224ada78ab0bd1299", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce82fc16d33da963a790729224ada78ab0bd1299", + "etherscanUrl": "https://etherscan.io/address/0xce82fc16d33da963a790729224ada78ab0bd1299", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd1295fcbaf56bf1a6dff3e1df7e437f987f6feca", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1295fcbaf56bf1a6dff3e1df7e437f987f6feca", + "etherscanUrl": "https://etherscan.io/address/0xd1295fcbaf56bf1a6dff3e1df7e437f987f6feca", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd21befcf2cb69a2525ca556f17f8becfd9bc14cd", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd21befcf2cb69a2525ca556f17f8becfd9bc14cd", + "etherscanUrl": "https://etherscan.io/address/0xd21befcf2cb69a2525ca556f17f8becfd9bc14cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd2343cbf4cbc8701e9a2c4e752fcdcb34fb03e0e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd2343cbf4cbc8701e9a2c4e752fcdcb34fb03e0e", + "etherscanUrl": "https://etherscan.io/address/0xd2343cbf4cbc8701e9a2c4e752fcdcb34fb03e0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd266c194e126d4fcfc85e8c665ed7f668f6aae93", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd266c194e126d4fcfc85e8c665ed7f668f6aae93", + "etherscanUrl": "https://etherscan.io/address/0xd266c194e126d4fcfc85e8c665ed7f668f6aae93", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd33f519291a5ba56da1351243789c91a9c2a319e", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd33f519291a5ba56da1351243789c91a9c2a319e", + "etherscanUrl": "https://etherscan.io/address/0xd33f519291a5ba56da1351243789c91a9c2a319e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd3cb4bdf982a1e49daa1187b3d6b7be511301515", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3cb4bdf982a1e49daa1187b3d6b7be511301515", + "etherscanUrl": "https://etherscan.io/address/0xd3cb4bdf982a1e49daa1187b3d6b7be511301515", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd418eac34ded02b47eacf548e8e8da682ce26708", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd418eac34ded02b47eacf548e8e8da682ce26708", + "etherscanUrl": "https://etherscan.io/address/0xd418eac34ded02b47eacf548e8e8da682ce26708", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd44e9b676e74ae45c0a39150be771eb189bb2337", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "max-power-motors.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd44e9b676e74ae45c0a39150be771eb189bb2337", + "etherscanUrl": "https://etherscan.io/address/0xd44e9b676e74ae45c0a39150be771eb189bb2337", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd54b1e138a0ace381b1ee6e9deb83d087d5c4d33", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd54b1e138a0ace381b1ee6e9deb83d087d5c4d33", + "etherscanUrl": "https://etherscan.io/address/0xd54b1e138a0ace381b1ee6e9deb83d087d5c4d33", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd83b7af20636b7e1a0d62b5600b5abf8d49d4c96", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd83b7af20636b7e1a0d62b5600b5abf8d49d4c96", + "etherscanUrl": "https://etherscan.io/address/0xd83b7af20636b7e1a0d62b5600b5abf8d49d4c96", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd84e61deca17212b30acfa1d83d56d366c7cc311", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd84e61deca17212b30acfa1d83d56d366c7cc311", + "etherscanUrl": "https://etherscan.io/address/0xd84e61deca17212b30acfa1d83d56d366c7cc311", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda4fa3162f46fb9508949e3bc14093fd0a8392dd", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda4fa3162f46fb9508949e3bc14093fd0a8392dd", + "etherscanUrl": "https://etherscan.io/address/0xda4fa3162f46fb9508949e3bc14093fd0a8392dd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xda5921614a824a6cc187175750b8b3dcb4dbe67d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xda5921614a824a6cc187175750b8b3dcb4dbe67d", + "etherscanUrl": "https://etherscan.io/address/0xda5921614a824a6cc187175750b8b3dcb4dbe67d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdb6c223043a56dc4428d2ff20fc65a64bcdd5d2d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb6c223043a56dc4428d2ff20fc65a64bcdd5d2d", + "etherscanUrl": "https://etherscan.io/address/0xdb6c223043a56dc4428d2ff20fc65a64bcdd5d2d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdb916d62765173980f0be8de1abe5b182a321887", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "akhand.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdb916d62765173980f0be8de1abe5b182a321887", + "etherscanUrl": "https://etherscan.io/address/0xdb916d62765173980f0be8de1abe5b182a321887", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc96cce74777fe9f34a5e35bc6cf2bc310bc3ceb", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc96cce74777fe9f34a5e35bc6cf2bc310bc3ceb", + "etherscanUrl": "https://etherscan.io/address/0xdc96cce74777fe9f34a5e35bc6cf2bc310bc3ceb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xddf53915051687b0e9638376ed04d4570a11eaf3", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xddf53915051687b0e9638376ed04d4570a11eaf3", + "etherscanUrl": "https://etherscan.io/address/0xddf53915051687b0e9638376ed04d4570a11eaf3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde64416af4739eb13f7aafc0197ac7baabead753", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde64416af4739eb13f7aafc0197ac7baabead753", + "etherscanUrl": "https://etherscan.io/address/0xde64416af4739eb13f7aafc0197ac7baabead753", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdeb18dd31c5d02c8ff62a7a891d85352eb190565", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdeb18dd31c5d02c8ff62a7a891d85352eb190565", + "etherscanUrl": "https://etherscan.io/address/0xdeb18dd31c5d02c8ff62a7a891d85352eb190565", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe097a354833a567bc3a26bffe347fd9cfb4ee141", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe097a354833a567bc3a26bffe347fd9cfb4ee141", + "etherscanUrl": "https://etherscan.io/address/0xe097a354833a567bc3a26bffe347fd9cfb4ee141", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe0cb2e9b24d2f129ac26b50c35f6a17816561ed4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe0cb2e9b24d2f129ac26b50c35f6a17816561ed4", + "etherscanUrl": "https://etherscan.io/address/0xe0cb2e9b24d2f129ac26b50c35f6a17816561ed4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe4f5058d3b9fb5229e5568cfbbc2b9754f85984f", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4f5058d3b9fb5229e5568cfbbc2b9754f85984f", + "etherscanUrl": "https://etherscan.io/address/0xe4f5058d3b9fb5229e5568cfbbc2b9754f85984f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe552785f683fd6b3576c941535b45fd9a2737527", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "theparkdao.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe552785f683fd6b3576c941535b45fd9a2737527", + "etherscanUrl": "https://etherscan.io/address/0xe552785f683fd6b3576c941535b45fd9a2737527", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe70b5f16dc842feecffe740be9fb565bb4e970e3", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe70b5f16dc842feecffe740be9fb565bb4e970e3", + "etherscanUrl": "https://etherscan.io/address/0xe70b5f16dc842feecffe740be9fb565bb4e970e3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe8d24be3abf6eb27b800f752a969d3c1e84fd401", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "budlight.beer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe8d24be3abf6eb27b800f752a969d3c1e84fd401", + "etherscanUrl": "https://etherscan.io/address/0xe8d24be3abf6eb27b800f752a969d3c1e84fd401", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec0f63b46049f65440a7477af0f73534ec2269f7", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec0f63b46049f65440a7477af0f73534ec2269f7", + "etherscanUrl": "https://etherscan.io/address/0xec0f63b46049f65440a7477af0f73534ec2269f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xed6a0ec8813fb7cd4088435a8eb900052ce3daf8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed6a0ec8813fb7cd4088435a8eb900052ce3daf8", + "etherscanUrl": "https://etherscan.io/address/0xed6a0ec8813fb7cd4088435a8eb900052ce3daf8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xedbd2c0a9a813789ba6f2ed5427f6c0bb9d2e906", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xedbd2c0a9a813789ba6f2ed5427f6c0bb9d2e906", + "etherscanUrl": "https://etherscan.io/address/0xedbd2c0a9a813789ba6f2ed5427f6c0bb9d2e906", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xedcbbaf69da1b6bb916d123008054bc1e493c632", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xedcbbaf69da1b6bb916d123008054bc1e493c632", + "etherscanUrl": "https://etherscan.io/address/0xedcbbaf69da1b6bb916d123008054bc1e493c632", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xee72ca0cdae499be75b87c0383b5c6abc8129ab6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee72ca0cdae499be75b87c0383b5c6abc8129ab6", + "etherscanUrl": "https://etherscan.io/address/0xee72ca0cdae499be75b87c0383b5c6abc8129ab6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xee79047c7dc592feea8b562bc90bfc9302c0c6e6", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee79047c7dc592feea8b562bc90bfc9302c0c6e6", + "etherscanUrl": "https://etherscan.io/address/0xee79047c7dc592feea8b562bc90bfc9302c0c6e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf22a3a7dfd8861820a4ce900d45ce1b9b26c0259", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf22a3a7dfd8861820a4ce900d45ce1b9b26c0259", + "etherscanUrl": "https://etherscan.io/address/0xf22a3a7dfd8861820a4ce900d45ce1b9b26c0259", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf2efc7b78168abc6a5be99e5624c64f2499d91fc", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf2efc7b78168abc6a5be99e5624c64f2499d91fc", + "etherscanUrl": "https://etherscan.io/address/0xf2efc7b78168abc6a5be99e5624c64f2499d91fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3322c299a550f67eaba67f997dc00e38bc30b6c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3322c299a550f67eaba67f997dc00e38bc30b6c", + "etherscanUrl": "https://etherscan.io/address/0xf3322c299a550f67eaba67f997dc00e38bc30b6c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3d3c4532308241a4e5275a268ce4e5ed787a95d", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3d3c4532308241a4e5275a268ce4e5ed787a95d", + "etherscanUrl": "https://etherscan.io/address/0xf3d3c4532308241a4e5275a268ce4e5ed787a95d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf41a98d4f2e52aa1ccb48f0b6539e955707b8f7a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf41a98d4f2e52aa1ccb48f0b6539e955707b8f7a", + "etherscanUrl": "https://etherscan.io/address/0xf41a98d4f2e52aa1ccb48f0b6539e955707b8f7a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf4cba43655eeb8fd4323f556e6ac727bc56c229a", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4cba43655eeb8fd4323f556e6ac727bc56c229a", + "etherscanUrl": "https://etherscan.io/address/0xf4cba43655eeb8fd4323f556e6ac727bc56c229a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf4dfcd61c36fc3ac374e52206c43253e14c2ffe2", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf4dfcd61c36fc3ac374e52206c43253e14c2ffe2", + "etherscanUrl": "https://etherscan.io/address/0xf4dfcd61c36fc3ac374e52206c43253e14c2ffe2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf65ea2be0340ddf6c71a4f3c2aff79d8c8f8f9f4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf65ea2be0340ddf6c71a4f3c2aff79d8c8f8f9f4", + "etherscanUrl": "https://etherscan.io/address/0xf65ea2be0340ddf6c71a4f3c2aff79d8c8f8f9f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf68e4d63c8ea83083d1cb9858210cf2b03d8266b", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf68e4d63c8ea83083d1cb9858210cf2b03d8266b", + "etherscanUrl": "https://etherscan.io/address/0xf68e4d63c8ea83083d1cb9858210cf2b03d8266b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf6e1e441c5113e9a76f84efa6c98f54a036668ce", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vault.rac.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf6e1e441c5113e9a76f84efa6c98f54a036668ce", + "etherscanUrl": "https://etherscan.io/address/0xf6e1e441c5113e9a76f84efa6c98f54a036668ce", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf74afa07c0d0cf2addad8252afa6b6f2cee8fdb4", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf74afa07c0d0cf2addad8252afa6b6f2cee8fdb4", + "etherscanUrl": "https://etherscan.io/address/0xf74afa07c0d0cf2addad8252afa6b6f2cee8fdb4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf754ce4cd7a8ec94716c0ced4bd1a8da8a8e1bbf", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf754ce4cd7a8ec94716c0ced4bd1a8da8a8e1bbf", + "etherscanUrl": "https://etherscan.io/address/0xf754ce4cd7a8ec94716c0ced4bd1a8da8a8e1bbf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf7571cd2fc4703f348a750193a665e9d0a51ba81", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7571cd2fc4703f348a750193a665e9d0a51ba81", + "etherscanUrl": "https://etherscan.io/address/0xf7571cd2fc4703f348a750193a665e9d0a51ba81", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf8fb31a8fdf4294af3e00d4ee209e0c8d75a82c5", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf8fb31a8fdf4294af3e00d4ee209e0c8d75a82c5", + "etherscanUrl": "https://etherscan.io/address/0xf8fb31a8fdf4294af3e00d4ee209e0c8d75a82c5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf9ce47cd66fc857ea947eabef476191fd199612c", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9ce47cd66fc857ea947eabef476191fd199612c", + "etherscanUrl": "https://etherscan.io/address/0xf9ce47cd66fc857ea947eabef476191fd199612c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf9e4793d35c3f04c6afcde355a5850d571c067db", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9e4793d35c3f04c6afcde355a5850d571c067db", + "etherscanUrl": "https://etherscan.io/address/0xf9e4793d35c3f04c6afcde355a5850d571c067db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfad487ded5b60fee99f51df3b087382f24aeee13", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfad487ded5b60fee99f51df3b087382f24aeee13", + "etherscanUrl": "https://etherscan.io/address/0xfad487ded5b60fee99f51df3b087382f24aeee13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3711", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "goldy", + "displayName": "Goldy ⌐◨-◨", + "fid": 3711, + "followers": 2685, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9564f274-502a-43fd-f657-5dc923558400/rectcrop3", + "ensName": "goldy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd164a24b5f30f4b37c8779ddd941853ca71926d7", + "etherscanUrl": "https://etherscan.io/address/0xd164a24b5f30f4b37c8779ddd941853ca71926d7", + "xHandle": "goldypix", + "xUrl": "https://twitter.com/goldypix", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_527313", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nounspacetom", + "displayName": "nounspaceTom.eth", + "fid": 527313, + "followers": 9259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46134281-9cbd-431e-01cc-d128c7695700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbdadb758612d6dda15b243ca20afc6314d2a3560", + "etherscanUrl": "https://etherscan.io/address/0xbdadb758612d6dda15b243ca20afc6314d2a3560", + "xHandle": "nounspacetom", + "xUrl": "https://twitter.com/nounspacetom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4262", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "0age", + "displayName": "0age", + "fid": 4262, + "followers": 61967, + "pfpUrl": "https://i.imgur.com/VL7oEV7.gif", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb776044e07fd4c2b16a7d5f784e97be8abba206a", + "etherscanUrl": "https://etherscan.io/address/0xb776044e07fd4c2b16a7d5f784e97be8abba206a", + "xHandle": "z0age", + "xUrl": "https://twitter.com/z0age", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20147", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "bixbite", + "displayName": "Bixbite ⌐◨-◨", + "fid": 20147, + "followers": 16697, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc7d8e7c-d1ff-4ce8-0689-81624bb5d200/rectcrop3", + "ensName": "bixbite.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x073f0dc58e9989c827ba5b7b35570b7315652e63", + "etherscanUrl": "https://etherscan.io/address/0x073f0dc58e9989c827ba5b7b35570b7315652e63", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3602", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "amir", + "displayName": "Amir Bandeali", + "fid": 3602, + "followers": 1229, + "pfpUrl": "https://i.seadn.io/gae/_RduiRKJlrGI_JaJVV6RtAH9O880Fic7nZPOrxcFKbcsLn40bPkAFKKsvxhLkpSRsboDb0vFe7h1YDojUvjwa83O3OuNCEQtys-x?w=500&auto=format", + "ensName": "amirb.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1c0c294ae36ae3b366bbfae673d2c108509763b6", + "etherscanUrl": "https://etherscan.io/address/0x1c0c294ae36ae3b366bbfae673d2c108509763b6", + "xHandle": "abandeali1", + "xUrl": "https://twitter.com/abandeali1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_318094", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "basedandyellow", + "displayName": "The Yellow Collective on Base", + "fid": 318094, + "followers": 930, + "pfpUrl": "https://i.imgur.com/WrfdngZ.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xed16f1a77f60161acb6a642d3dab9da45fa67e66", + "etherscanUrl": "https://etherscan.io/address/0xed16f1a77f60161acb6a642d3dab9da45fa67e66", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12342", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "bigshotklim", + "displayName": "⌐◨-◨ BiGSHOT ⌐◨-◨", + "fid": 12342, + "followers": 3882, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7eaaea43-5f63-4e8a-5ae6-78b47230bd00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa406ff89d9542464ab21cb0cba1d85ebd4f3dfa4", + "etherscanUrl": "https://etherscan.io/address/0xa406ff89d9542464ab21cb0cba1d85ebd4f3dfa4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_436", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "shriphani", + "displayName": "Shriphani Palakodety", + "fid": 436, + "followers": 883, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7c2e76c-d11c-4d00-b4c7-917d57997500/original", + "ensName": "shriphani.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3b039059b674988c0db53a690a3bd0eb43b2965a", + "etherscanUrl": "https://etherscan.io/address/0x3b039059b674988c0db53a690a3bd0eb43b2965a", + "xHandle": "shriphani", + "xUrl": "https://twitter.com/shriphani", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_8", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "jacob", + "displayName": "$jacob", + "fid": 8, + "followers": 473846, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89ed9bfb-655c-472d-e907-6a3da8d2ec00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x10783602f0754c4ba3d5ff5da515e9dd2ce6ef5c", + "etherscanUrl": "https://etherscan.io/address/0x10783602f0754c4ba3d5ff5da515e9dd2ce6ef5c", + "xHandle": "js_horne", + "xUrl": "https://twitter.com/js_horne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_190804", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "yukihamada", + "displayName": "yukihamada", + "fid": 190804, + "followers": 30, + "pfpUrl": "https://i.seadn.io/gae/MpMRrSUjBFte76JqtGMvUw66zcRWRwRi14y4niiRK7MUOv0rWdVl8j0rCmIqF17eQVreafnaPrjSbi95Hkqs6Z0eBniLVQrQ3en14w?w=500&auto=format", + "ensName": "yukihamada.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1bde33dbc5c2ac7109c4a7ecf0d0a0a6cd6f57cc", + "etherscanUrl": "https://etherscan.io/address/0x1bde33dbc5c2ac7109c4a7ecf0d0a0a6cd6f57cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_701", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "w1nt3r", + "displayName": "W1NTΞR", + "fid": 701, + "followers": 130098, + "pfpUrl": "https://lh3.googleusercontent.com/z0kMeAkpMrUtVCSxK02he1fH37Lwmt_kyf7JJj-FnuriNP2Vvqzst0P9ZtZ9RdlhCo50PSBGM5wxXQM7SdBbzwhPUtQpPA-uwv8y", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x570d4cd10421fa0c0cf09f8725c3d1caae90b937", + "etherscanUrl": "https://etherscan.io/address/0x570d4cd10421fa0c0cf09f8725c3d1caae90b937", + "xHandle": "w1nt3r_eth", + "xUrl": "https://twitter.com/w1nt3r_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20539", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "87bones", + "displayName": "87Bones", + "fid": 20539, + "followers": 3796, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ec75c73-89b2-4ae4-9e95-7580fc2abf00/original", + "ensName": "87bones.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf2390dcdb2d57b3b19a4e729e3a79bc7e1c1b600", + "etherscanUrl": "https://etherscan.io/address/0xf2390dcdb2d57b3b19a4e729e3a79bc7e1c1b600", + "xHandle": "87b0nes", + "xUrl": "https://twitter.com/87b0nes", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20413", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "amiyoko", + "displayName": "amiyoko", + "fid": 20413, + "followers": 595, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32d2e1c9-5829-485b-5de8-46f595fba200/original", + "ensName": "amiyoko.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xeff2b0610ded9f0d060c2ea262bb014f0948966f", + "etherscanUrl": "https://etherscan.io/address/0xeff2b0610ded9f0d060c2ea262bb014f0948966f", + "xHandle": "amiyoko409", + "xUrl": "https://twitter.com/amiyoko409", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20087", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "eguegu", + "displayName": "eguegu ", + "fid": 20087, + "followers": 170, + "pfpUrl": "https://i.imgur.com/2ad0q7s.jpg", + "ensName": "eguegu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdd957b44b357cceea0fa17f4b93b9a0830fc2490", + "etherscanUrl": "https://etherscan.io/address/0xdd957b44b357cceea0fa17f4b93b9a0830fc2490", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_377328", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "daobase", + "displayName": "Daobase.ai", + "fid": 377328, + "followers": 3896, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ede9a321-10ea-413e-738f-0aebc1f38700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb89a9292725800941520bc6d4507b005143644a7", + "etherscanUrl": "https://etherscan.io/address/0xb89a9292725800941520bc6d4507b005143644a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3713", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "adel", + "displayName": "Adel", + "fid": 3713, + "followers": 274, + "pfpUrl": "https://openseauserdata.com/files/39e534575bbcf52e902fcd067c875a21.svg", + "ensName": "adelidusiam.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd83f906502f8cab076bdfed831295529a76426b3", + "etherscanUrl": "https://etherscan.io/address/0xd83f906502f8cab076bdfed831295529a76426b3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_382001", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "cccrypto", + "displayName": "C C", + "fid": 382001, + "followers": 15, + "pfpUrl": "https://i.imgur.com/B3glfVw.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3abfc7ffa744edc456d361be957f972d1bac4991", + "etherscanUrl": "https://etherscan.io/address/0x3abfc7ffa744edc456d361be957f972d1bac4991", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_472", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "ccarella.eth", + "displayName": "Chris Carella", + "fid": 472, + "followers": 217343, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6d1f880-c63c-4fac-2cfe-ccdd96bcb500/original", + "ensName": "ccarella.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3d0438cf16e6bf871d1f28e18b5bb175762f3f7c", + "etherscanUrl": "https://etherscan.io/address/0x3d0438cf16e6bf871d1f28e18b5bb175762f3f7c", + "xHandle": "ccarella", + "xUrl": "https://twitter.com/ccarella", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_155", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "will", + "displayName": "Will Papper", + "fid": 155, + "followers": 7777, + "pfpUrl": "https://i.imgur.com/fDHtyad.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55264675b16e8d02d5e3f463e5f7b680f0a904a9", + "etherscanUrl": "https://etherscan.io/address/0x55264675b16e8d02d5e3f463e5f7b680f0a904a9", + "xHandle": "willpapper", + "xUrl": "https://twitter.com/willpapper", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_64", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "maksim", + "displayName": "Maksim Stepanenko", + "fid": 64, + "followers": 725, + "pfpUrl": "https://pbs.twimg.com/profile_images/1184946065692385281/_iRevtBm_400x400.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77110e1c3c74d58efb15e9b52dd58ff44c43288b", + "etherscanUrl": "https://etherscan.io/address/0x77110e1c3c74d58efb15e9b52dd58ff44c43288b", + "xHandle": "mksm", + "xUrl": "https://twitter.com/mksm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_44", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "guy", + "displayName": "Guy", + "fid": 44, + "followers": 1359, + "pfpUrl": "https://guywuollet.com/assets/images/headshot.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca1fd0f572db3215af363ad2eb2c4a34ffb71e13", + "etherscanUrl": "https://etherscan.io/address/0xca1fd0f572db3215af363ad2eb2c4a34ffb71e13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3750", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "gremplin", + "displayName": "Gremplin", + "fid": 3750, + "followers": 2134, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2241265e-7b88-4a64-a209-60426aa21f00/rectcrop3", + "ensName": "gremplin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb9bc35e93b1416e7dad8eb01398e9df49fff9ff4", + "etherscanUrl": "https://etherscan.io/address/0xb9bc35e93b1416e7dad8eb01398e9df49fff9ff4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_834", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "gabrielayuso.eth", + "displayName": "Gabriel Ayuso", + "fid": 834, + "followers": 92758, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a4721e1-7694-44c0-f120-4eec4f747300/original", + "ensName": "vault.gabrielayuso.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1aa17349d51636bd9e1a975c49d2ca8d77622d63", + "etherscanUrl": "https://etherscan.io/address/0x1aa17349d51636bd9e1a975c49d2ca8d77622d63", + "xHandle": "gabrielayuso", + "xUrl": "https://twitter.com/gabrielayuso", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17564", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "json", + "displayName": "Jayson Hobby", + "fid": 17564, + "followers": 540, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ea3321f2-b9bc-4e58-ff0e-547a00795f00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x411d497aeed3e96267e5d54617ac61c6365b45ed", + "etherscanUrl": "https://etherscan.io/address/0x411d497aeed3e96267e5d54617ac61c6365b45ed", + "xHandle": "jaysonhobby", + "xUrl": "https://twitter.com/jaysonhobby", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10201", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "chadfowler", + "displayName": "Chad Fowler", + "fid": 10201, + "followers": 435, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cca01fb1-f3f2-435d-fa5a-64db56f37800/original", + "ensName": "chadfowler.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x362281a9b85969763040fb3aad885041d88315eb", + "etherscanUrl": "https://etherscan.io/address/0x362281a9b85969763040fb3aad885041d88315eb", + "xHandle": "chadfowler", + "xUrl": "https://twitter.com/chadfowler", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_399769", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "!399769", + "displayName": null, + "fid": 399769, + "followers": 1, + "pfpUrl": null, + "ensName": "jiji.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x48466bc93df6563c2a638a4be20feca46a1e314e", + "etherscanUrl": "https://etherscan.io/address/0x48466bc93df6563c2a638a4be20feca46a1e314e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20721", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "skateboard", + "displayName": "Skateboard.⌐◨-◨", + "fid": 20721, + "followers": 1779, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f381719c-7d66-4837-d832-0e16395c9800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d1882304c9a6fa7f987c1b41c9fd5e8cf0516e2", + "etherscanUrl": "https://etherscan.io/address/0x2d1882304c9a6fa7f987c1b41c9fd5e8cf0516e2", + "xHandle": "sk8ordao", + "xUrl": "https://twitter.com/sk8ordao", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_195353", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "sinri12", + "displayName": "sinri🎩", + "fid": 195353, + "followers": 938, + "pfpUrl": "https://i.imgur.com/mb27ENH.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbd2917864276b21ee22a1ae72e6e5016e258f505", + "etherscanUrl": "https://etherscan.io/address/0xbd2917864276b21ee22a1ae72e6e5016e258f505", + "xHandle": "the_gen12", + "xUrl": "https://twitter.com/the_gen12", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4888", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "realitycrafter.eth", + "displayName": "RealityCrafter", + "fid": 4888, + "followers": 4589, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46cc5cfb-4ad4-4aa4-5673-5fef6d116300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51603c7059f369ab04b16addfb7bb6c4e34b8523", + "etherscanUrl": "https://etherscan.io/address/0x51603c7059f369ab04b16addfb7bb6c4e34b8523", + "xHandle": "realitycrafter", + "xUrl": "https://twitter.com/realitycrafter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_855755", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "asm.eth", + "displayName": "ASM", + "fid": 855755, + "followers": 43, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08a8305e-a55d-4c0a-3582-f73c8b906500/rectcrop3", + "ensName": "asm.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x545a2ed169eac188638763539d30951488a9c8f7", + "etherscanUrl": "https://etherscan.io/address/0x545a2ed169eac188638763539d30951488a9c8f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14088", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "ses.eth", + "displayName": "Simon Emanuel | ses.eth", + "fid": 14088, + "followers": 642, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4aa7cead-27a3-468c-d6d8-cebc76257600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46819ab93d642afd153a3b836342619886fc0fd6", + "etherscanUrl": "https://etherscan.io/address/0x46819ab93d642afd153a3b836342619886fc0fd6", + "xHandle": "schmid_si", + "xUrl": "https://twitter.com/schmid_si", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2112", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "rubinovitz", + "displayName": "rubinovitz", + "fid": 2112, + "followers": 16167, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/QmU21hW5YLBVymHBz5E1JnNobCfiu3v1PgRC3NfxwPF57Y?pinataGatewayToken=PMz6RFTDuk-300OttNnb_U0PSKbbXQdzLmUqdiEq7lesXcsVK8TK7S5GoOtxRGl2", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6040cdbb6a1f636ae91f8268d7a6afd8676fcf6e", + "etherscanUrl": "https://etherscan.io/address/0x6040cdbb6a1f636ae91f8268d7a6afd8676fcf6e", + "xHandle": "rubinovitz", + "xUrl": "https://twitter.com/rubinovitz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13006", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "0xmonografia", + "displayName": "mono.⌐◨-◨ 🐵", + "fid": 13006, + "followers": 1453, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/019ee7c6-fe17-403a-2da5-2b9cc3f02600/original", + "ensName": "monografia.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbfaedc3979544c7cd5c3388a095cbd08476f91cb", + "etherscanUrl": "https://etherscan.io/address/0xbfaedc3979544c7cd5c3388a095cbd08476f91cb", + "xHandle": "0xmonografia", + "xUrl": "https://twitter.com/0xmonografia", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_340309", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nounsmx", + "displayName": "nounsmx.⌐◨-◨", + "fid": 340309, + "followers": 182, + "pfpUrl": "https://i.imgur.com/W95Uc6Q.jpg", + "ensName": "nounsmx.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5c3e2c131cb10e4f4c9df581725bee57443d8523", + "etherscanUrl": "https://etherscan.io/address/0x5c3e2c131cb10e4f4c9df581725bee57443d8523", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_734", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "salvino", + "displayName": "salvino armati", + "fid": 734, + "followers": 73517, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9375cff4-064f-4f8d-5bba-c373bb23f300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7911998258fce5b599cb6bd93bfb21855cf31987", + "etherscanUrl": "https://etherscan.io/address/0x7911998258fce5b599cb6bd93bfb21855cf31987", + "xHandle": "salvinoarmati", + "xUrl": "https://twitter.com/salvinoarmati", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3642", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "toadyhawk.eth", + "displayName": "Toady Hawk", + "fid": 3642, + "followers": 156711, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/961c607f-84d6-4973-4a2a-bcba6ed82c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49fcf7fd8bced178a3c65d3341f61821eef76423", + "etherscanUrl": "https://etherscan.io/address/0x49fcf7fd8bced178a3c65d3341f61821eef76423", + "xHandle": "toady_hawk", + "xUrl": "https://twitter.com/toady_hawk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7429", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "msa", + "displayName": "M1K4", + "fid": 7429, + "followers": 105, + "pfpUrl": "https://i.seadn.io/gcs/files/3ff9f5c01b4923e38d722abead55af17.png?w=500&auto=format", + "ensName": "m1k4.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5fc3afaeef0ff1149cee3bd80c1b20de629df880", + "etherscanUrl": "https://etherscan.io/address/0x5fc3afaeef0ff1149cee3bd80c1b20de629df880", + "xHandle": "m1_k4____", + "xUrl": "https://twitter.com/m1_k4____", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_215732", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "0xishal", + "displayName": "0xishal", + "fid": 215732, + "followers": 164, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/90796ece-4ef0-4d14-abcd-59be302dc500/rectcrop3", + "ensName": "0xishal.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc42616ecc4a554a5247f048f1d9a7b57a7704286", + "etherscanUrl": "https://etherscan.io/address/0xc42616ecc4a554a5247f048f1d9a7b57a7704286", + "xHandle": "0xishal", + "xUrl": "https://twitter.com/0xishal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12493", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "cadillion", + "displayName": "Colton Dillion 🃏🎩", + "fid": 12493, + "followers": 2430, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b3820ae-2458-4c70-ea56-80e15be1e800/rectcrop3", + "ensName": "cadillion.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc38377ca00c9b74a625076fd4e3e57c26d47a0f3", + "etherscanUrl": "https://etherscan.io/address/0xc38377ca00c9b74a625076fd4e3e57c26d47a0f3", + "xHandle": "cadillion", + "xUrl": "https://twitter.com/cadillion", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3710", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "dot", + "displayName": "dot", + "fid": 3710, + "followers": 1896, + "pfpUrl": "https://i.imgur.com/7VYOEnN.jpg", + "ensName": "0xsvg.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa538bbd53526f3c71bab9487bff6531e3e32b61f", + "etherscanUrl": "https://etherscan.io/address/0xa538bbd53526f3c71bab9487bff6531e3e32b61f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20252", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "observer", + "displayName": "fable.eth 🦇🔊", + "fid": 20252, + "followers": 342, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab1cc5dd-4dbf-4df3-d8ea-a49489b08500/rectcrop3", + "ensName": "firewatch.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xfb69d421fed36f1c2a01fe5b300c9f7c42b33226", + "etherscanUrl": "https://etherscan.io/address/0xfb69d421fed36f1c2a01fe5b300c9f7c42b33226", + "xHandle": "fable_eth", + "xUrl": "https://twitter.com/fable_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_239882", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "yunus", + "displayName": "yunus.eth", + "fid": 239882, + "followers": 92, + "pfpUrl": "https://i.imgur.com/tTj353m.jpg", + "ensName": "celebrimbor.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x85a11badef61937c88341accb73eb4a0109c8e75", + "etherscanUrl": "https://etherscan.io/address/0x85a11badef61937c88341accb73eb4a0109c8e75", + "xHandle": "celebrimbor_eth", + "xUrl": "https://twitter.com/celebrimbor_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_847988", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "chompix.base.eth", + "displayName": "Chompix", + "fid": 847988, + "followers": 3274, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7788107b-e0a0-4864-310f-ab9631520800/rectcrop3", + "ensName": "chompixgg.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xba17d65f97d0e7a686b156c380c9f22491c3378f", + "etherscanUrl": "https://etherscan.io/address/0xba17d65f97d0e7a686b156c380c9f22491c3378f", + "xHandle": "chompixgaming", + "xUrl": "https://twitter.com/chompixgaming", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11031", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "pazivalsong", + "displayName": "Parzival 🎩", + "fid": 11031, + "followers": 29, + "pfpUrl": "https://i.imgur.com/wi1qmQ2.jpg", + "ensName": "721.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x74e2560995ba0b3e27539cea74d40b784f54689c", + "etherscanUrl": "https://etherscan.io/address/0x74e2560995ba0b3e27539cea74d40b784f54689c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5460", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "chris-waters", + "displayName": "Chris", + "fid": 5460, + "followers": 344, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1325e67-e360-4198-2391-ca4d5bed8e00/rectcrop3", + "ensName": "cwaters.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7549dcaad7d31af14dd8a4adf7cf8241d04fa91c", + "etherscanUrl": "https://etherscan.io/address/0x7549dcaad7d31af14dd8a4adf7cf8241d04fa91c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_290", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "moonowl.eth", + "displayName": "moonowl.eth", + "fid": 290, + "followers": 3221, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a6d64de-549d-4d36-0e27-ac12a043c400/original", + "ensName": "moonowl.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x857e080e9e596fc8af87be8530df29eee2bde7fc", + "etherscanUrl": "https://etherscan.io/address/0x857e080e9e596fc8af87be8530df29eee2bde7fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210451", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "spookyaction-btc", + "displayName": "Dara Khan", + "fid": 210451, + "followers": 615, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d762da9-b72e-4e8e-2ad5-6536590a8600/original", + "ensName": "darakhan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6ac5ffb373633f27e47fe180cd99133104f7f464", + "etherscanUrl": "https://etherscan.io/address/0x6ac5ffb373633f27e47fe180cd99133104f7f464", + "xHandle": "dara_khan", + "xUrl": "https://twitter.com/dara_khan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23036", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "noun74", + "displayName": "noun74", + "fid": 23036, + "followers": 1036, + "pfpUrl": "https://i.imgur.com/ayfE8Oi.jpg", + "ensName": "hashconfucius.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7c1282a7621f0e2f6169e151628552a8b8a57b2d", + "etherscanUrl": "https://etherscan.io/address/0x7c1282a7621f0e2f6169e151628552a8b8a57b2d", + "xHandle": "noun_74", + "xUrl": "https://twitter.com/noun_74", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261657", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "cameronb", + "displayName": "Cam 👾 ", + "fid": 261657, + "followers": 170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5425e5b3-1402-4f2f-4d0f-cb63a25a5900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f8248ef064e53ef1e673fe586058d312e50388b", + "etherscanUrl": "https://etherscan.io/address/0x7f8248ef064e53ef1e673fe586058d312e50388b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5584", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "valko", + "displayName": "valko", + "fid": 5584, + "followers": 166, + "pfpUrl": "https://i.imgur.com/Tb82cjA.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81b9a5f21efdb5df0210471b9a94e0d4ad9951ed", + "etherscanUrl": "https://etherscan.io/address/0x81b9a5f21efdb5df0210471b9a94e0d4ad9951ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_275606", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "asier", + "displayName": "Asier", + "fid": 275606, + "followers": 23, + "pfpUrl": "https://i.imgur.com/aV0aji1.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16b24ad3a28ce87139328a2a2c06f6e4f9d4fbbe", + "etherscanUrl": "https://etherscan.io/address/0x16b24ad3a28ce87139328a2a2c06f6e4f9d4fbbe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_297532", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "mralan", + "displayName": "MrAlan", + "fid": 297532, + "followers": 23, + "pfpUrl": "https://i.imgur.com/B6J9Gdp.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc61ac66b5082e0abf54a82b176340b92e626528", + "etherscanUrl": "https://etherscan.io/address/0xdc61ac66b5082e0abf54a82b176340b92e626528", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_309308", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "lowbrow", + "displayName": "Lowbrow", + "fid": 309308, + "followers": 135, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f99a0896-a7a3-4c61-f2de-896011dcaf00/rectcrop3", + "ensName": "lowbrow.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x26628d06dd9b02c68e1977e343751fa928c61ac7", + "etherscanUrl": "https://etherscan.io/address/0x26628d06dd9b02c68e1977e343751fa928c61ac7", + "xHandle": "low__brow", + "xUrl": "https://twitter.com/low__brow", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5953", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "russia", + "displayName": "Joshua Harris", + "fid": 5953, + "followers": 1244, + "pfpUrl": "https://i.imgur.com/FSMG7gk.jpg", + "ensName": "pixiechess.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x09f2c846a1861a731fd9ca408a69e2cb419907ef", + "etherscanUrl": "https://etherscan.io/address/0x09f2c846a1861a731fd9ca408a69e2cb419907ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5126", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "jklb.eth", + "displayName": "Jake", + "fid": 5126, + "followers": 3193, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cebd13ad-20be-4d21-e591-680078e69800/original", + "ensName": "jklb.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe3348bce3b5a76c946c878d01fb89af1ed38229c", + "etherscanUrl": "https://etherscan.io/address/0xe3348bce3b5a76c946c878d01fb89af1ed38229c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20228", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "thebower.eth", + "displayName": "TheBower.eth", + "fid": 20228, + "followers": 708, + "pfpUrl": "https://i.imgur.com/r8I79jx.png", + "ensName": "thebower.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc40de5cb0b324ddc480b62ec684ddfadc1d007db", + "etherscanUrl": "https://etherscan.io/address/0xc40de5cb0b324ddc480b62ec684ddfadc1d007db", + "xHandle": "thebower_", + "xUrl": "https://twitter.com/thebower_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196513", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "brushee", + "displayName": "Brushee", + "fid": 196513, + "followers": 9, + "pfpUrl": "https://i.imgur.com/2bfhUiq.jpg", + "ensName": "brushee.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x94b9fa136ef7c17cea6cea456e2b0d023e69ebe0", + "etherscanUrl": "https://etherscan.io/address/0x94b9fa136ef7c17cea6cea456e2b0d023e69ebe0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7759", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "leoclark.eth", + "displayName": "leoclark.base.eth.⌐◨-◨🎩", + "fid": 7759, + "followers": 4103, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762140241/IMG_0337.jpg.jpg", + "ensName": "leoclark.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1d50a3e9adc55c6ca4ce7cecae2ec5f61f143dcc", + "etherscanUrl": "https://etherscan.io/address/0x1d50a3e9adc55c6ca4ce7cecae2ec5f61f143dcc", + "xHandle": "leoclark", + "xUrl": "https://twitter.com/leoclark", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17838", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nekofar.eth", + "displayName": "Zero", + "fid": 17838, + "followers": 4726, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a3566be-8132-4e41-3e40-acda52f4a200/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc36955010c2073bc98a00bcbffeb76883be77f98", + "etherscanUrl": "https://etherscan.io/address/0xc36955010c2073bc98a00bcbffeb76883be77f98", + "xHandle": "nekofar", + "xUrl": "https://twitter.com/nekofar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_471663", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "9gagceo.eth", + "displayName": "9GAGCEO ❤️ Memecoin", + "fid": 471663, + "followers": 14, + "pfpUrl": "https://i.imgur.com/Q1xr1tp.jpg", + "ensName": "9gagceo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9e29a34dfd3cb99798e8d88515fee01f2e4cd5a8", + "etherscanUrl": "https://etherscan.io/address/0x9e29a34dfd3cb99798e8d88515fee01f2e4cd5a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_318911", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "papercliplabs.eth", + "displayName": "Paperclip Labs", + "fid": 318911, + "followers": 7417, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a65e3d03-e79c-4e44-3e05-02f32ebaa300/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x056b30b31fdd9ff49239d5d0772ed5e8310d3b7f", + "etherscanUrl": "https://etherscan.io/address/0x056b30b31fdd9ff49239d5d0772ed5e8310d3b7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3539", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "noun51", + "displayName": "noun51", + "fid": 3539, + "followers": 200, + "pfpUrl": "https://openseauserdata.com/files/f17605e8882ac3de4690c43b5f365bf3.svg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39d9505670d7d750b6751bf75a9a97df770842ee", + "etherscanUrl": "https://etherscan.io/address/0x39d9505670d7d750b6751bf75a9a97df770842ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15434", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "eusoujp", + "displayName": "jp.⌐◨-◨", + "fid": 15434, + "followers": 4734, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b102b59f-667b-4583-12a4-d3bcf5993300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x455c80518760f95efbf221ca42242da5ebc2e825", + "etherscanUrl": "https://etherscan.io/address/0x455c80518760f95efbf221ca42242da5ebc2e825", + "xHandle": "eusou_jp", + "xUrl": "https://twitter.com/eusou_jp", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_272456", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "0xailin", + "displayName": "满意", + "fid": 272456, + "followers": 16, + "pfpUrl": "https://i.imgur.com/C6GJTS0.jpg", + "ensName": "0xnuk.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xea4e6dc254b5b5cd4dcd95e6a743d888a558ba09", + "etherscanUrl": "https://etherscan.io/address/0xea4e6dc254b5b5cd4dcd95e6a743d888a558ba09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_191593", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "pip", + "displayName": "lil 67", + "fid": 191593, + "followers": 7334, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02fc0166-4735-40bd-ecdc-4e1c20cd1f00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9909bbce017e7abb98d017e1f9e1121e113819a4", + "etherscanUrl": "https://etherscan.io/address/0x9909bbce017e7abb98d017e1f9e1121e113819a4", + "xHandle": "60r90", + "xUrl": "https://twitter.com/60r90", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_269091", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nickysap", + "displayName": "nick", + "fid": 269091, + "followers": 10843, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9898cc1f-6574-453c-5817-da0e8bc3a800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81d29f93a5a55936598411085ea9b171b7e025b4", + "etherscanUrl": "https://etherscan.io/address/0x81d29f93a5a55936598411085ea9b171b7e025b4", + "xHandle": "nicky_sap", + "xUrl": "https://twitter.com/nicky_sap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11299", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "tempetechie.eth", + "displayName": "Tempe Techie", + "fid": 11299, + "followers": 4368, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27dd3233-68e8-4c14-4f96-abccbeeebc00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe64ae6b6c7bdafefad768d9354bbed2c55c9b0f2", + "etherscanUrl": "https://etherscan.io/address/0xe64ae6b6c7bdafefad768d9354bbed2c55c9b0f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5062", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "zherring", + "displayName": "Zach", + "fid": 5062, + "followers": 10529, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeihlond74ij2vbzyuagma2uxtv2b7e4nmty6ujxbapqopsarzy3yo4/3312.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8654d1005d314e7ff242cbc62a68e8d098d979a6", + "etherscanUrl": "https://etherscan.io/address/0x8654d1005d314e7ff242cbc62a68e8d098d979a6", + "xHandle": "zherring", + "xUrl": "https://twitter.com/zherring", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210757", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "tfg", + "displayName": "TFG", + "fid": 210757, + "followers": 23, + "pfpUrl": "https://i.imgur.com/RAYVhaC.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7fc0c0e31a416b3c26f9a7c0c3046c4b40169f2", + "etherscanUrl": "https://etherscan.io/address/0xb7fc0c0e31a416b3c26f9a7c0c3046c4b40169f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_34", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "matthuang", + "displayName": "Matt Huang", + "fid": 34, + "followers": 37989, + "pfpUrl": "https://github.com/matthuang.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd4f50f809f057a4af259db06cf17bafc4542475f", + "etherscanUrl": "https://etherscan.io/address/0xd4f50f809f057a4af259db06cf17bafc4542475f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_898149", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "alexmurray", + "displayName": "Alex Murray", + "fid": 898149, + "followers": 41, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a1839402-79c4-4df2-be0f-86bc3fcbc900/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x628045ef381cd3d335d4be8413a0af8ab066cd27", + "etherscanUrl": "https://etherscan.io/address/0x628045ef381cd3d335d4be8413a0af8ab066cd27", + "xHandle": "alex_m_murray", + "xUrl": "https://twitter.com/alex_m_murray", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_143", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "mk", + "displayName": "mk", + "fid": 143, + "followers": 92357, + "pfpUrl": "https://lh3.googleusercontent.com/VqX9ry1EZd6eFM-x1WYuut3UorMrHqE5zjyxLmpA15ItRgSJ80DcKEHeaVEfFCPg_mXeg7QhGYicCEr3Myq0TwhfZNtjTS47lvTrhV0", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b3a2504d99417e6cced0a2f9f1e82dd4af36824", + "etherscanUrl": "https://etherscan.io/address/0x8b3a2504d99417e6cced0a2f9f1e82dd4af36824", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3895", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "drewcoffman.eth", + "displayName": "drewcoffman", + "fid": 3895, + "followers": 98021, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a66ea281-6781-4c00-1dc5-c815ab5df700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x088ad00cfa0cc872c37beec9fc99d16ac77ace1e", + "etherscanUrl": "https://etherscan.io/address/0x088ad00cfa0cc872c37beec9fc99d16ac77ace1e", + "xHandle": "drewcoffman", + "xUrl": "https://twitter.com/drewcoffman", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_371241", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "mattdowney", + "displayName": "Matt Downey", + "fid": 371241, + "followers": 264, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f236b779-c718-4752-d39c-217b19498400/original", + "ensName": "mattdowney.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7ac624149640d2013dcad3296166d2d43bd71eea", + "etherscanUrl": "https://etherscan.io/address/0x7ac624149640d2013dcad3296166d2d43bd71eea", + "xHandle": "mattdowney", + "xUrl": "https://twitter.com/mattdowney", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_750610", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "thewardoctor", + "displayName": "TheWarDoctor ⌐◨-◨", + "fid": 750610, + "followers": 60, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/382b36e5-b076-4f46-8238-3a28974ff800/rectcrop3", + "ensName": "thewardoctor.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xec32ccfd0476f35be73ec6b9f3da45bd892a190e", + "etherscanUrl": "https://etherscan.io/address/0xec32ccfd0476f35be73ec6b9f3da45bd892a190e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1353911", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "mdl.eth", + "displayName": "mdl.eth", + "fid": 1353911, + "followers": 37, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763239656/b77e4554-af0d-4c6b-bb8d-69bc3929a566.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x68f1cfbc7847f706d823d2b956db8cc29b46fd4d", + "etherscanUrl": "https://etherscan.io/address/0x68f1cfbc7847f706d823d2b956db8cc29b46fd4d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_828", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "scottrepreneur.eth", + "displayName": "scottrepreneur", + "fid": 828, + "followers": 51629, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/daed3bdc-9b84-413c-6d5c-ef84c4860900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2eeaa132a480dc7713423f2e3dae6cfc8f584880", + "etherscanUrl": "https://etherscan.io/address/0x2eeaa132a480dc7713423f2e3dae6cfc8f584880", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4167", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nounishprof", + "displayName": "Nounish Prof ⌐◧-◧🎩", + "fid": 4167, + "followers": 91820, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e0686be-ae1a-47d2-c737-5beecfe21700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9353cc2583356ce6ea8f92e239d7c9eb8412acaf", + "etherscanUrl": "https://etherscan.io/address/0x9353cc2583356ce6ea8f92e239d7c9eb8412acaf", + "xHandle": "profwerder", + "xUrl": "https://twitter.com/profwerder", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_302199", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "lanbo", + "displayName": "Wenlanbo", + "fid": 302199, + "followers": 294, + "pfpUrl": "https://tba-mobile.mypinata.cloud/ipfs/Qme1QhwAZLBS4ZriKsY4KMfbUu8VibeZUYS7XoRy8RypTV?pinataGatewayToken=3nq0UVhtd3rYmgYDdb1I9qv7rHsw-_DzwdWkZPRQ-QW1avFI9dCS8knaSfq_R5_q", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42a1c540f7c5c1053fb48fd0af2e207404e44a71", + "etherscanUrl": "https://etherscan.io/address/0x42a1c540f7c5c1053fb48fd0af2e207404e44a71", + "xHandle": "wenlanbo", + "xUrl": "https://twitter.com/wenlanbo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_193623", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "patyiutazza", + "displayName": "Pat Yiu", + "fid": 193623, + "followers": 970, + "pfpUrl": "https://i.imgur.com/76hhTMZ.jpg", + "ensName": "patyiu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7837ae5613e36812f29aaeeb922e8ae7c8b03c37", + "etherscanUrl": "https://etherscan.io/address/0x7837ae5613e36812f29aaeeb922e8ae7c8b03c37", + "xHandle": "patyiutazza", + "xUrl": "https://twitter.com/patyiutazza", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10051", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "cardno.eth", + "displayName": "cardno ⌐◨-◨", + "fid": 10051, + "followers": 3916, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dee94f0b-3ab5-48f5-5fef-385788a89a00/original", + "ensName": "cardno.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdb5dd352527539b7c3382bd4b5693e116d09fb9b", + "etherscanUrl": "https://etherscan.io/address/0xdb5dd352527539b7c3382bd4b5693e116d09fb9b", + "xHandle": "cardnonft", + "xUrl": "https://twitter.com/cardnonft", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_237855", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "p4u", + "displayName": "Pau 🎩 ⛓️‍💥", + "fid": 237855, + "followers": 438, + "pfpUrl": "https://i.imgur.com/jFrkJ0V.gif", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38694c0e499c93f06b26535ec357e5ba246b7184", + "etherscanUrl": "https://etherscan.io/address/0x38694c0e499c93f06b26535ec357e5ba246b7184", + "xHandle": "wildp4u", + "xUrl": "https://twitter.com/wildp4u", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5516", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "sky", + "displayName": "Sky (funky Farcaster friend)", + "fid": 5516, + "followers": 1654, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c570f6b-3680-405c-ea28-889e655efb00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19c64affde518de2884c1944700e12d2bb7016a4", + "etherscanUrl": "https://etherscan.io/address/0x19c64affde518de2884c1944700e12d2bb7016a4", + "xHandle": "0xskymine", + "xUrl": "https://twitter.com/0xskymine", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2618", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "nbaronia", + "displayName": "Neel", + "fid": 2618, + "followers": 699, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a5aeb6e-fb7c-4903-31e0-8e94bda83100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec3b4580e1fdbf13841df5141dd107cd93dc6e18", + "etherscanUrl": "https://etherscan.io/address/0xec3b4580e1fdbf13841df5141dd107cd93dc6e18", + "xHandle": "nbaronia1", + "xUrl": "https://twitter.com/nbaronia1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11500", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "sams", + "displayName": "Sam", + "fid": 11500, + "followers": 2311, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77a6924c-73e2-4679-2f7f-75669342ac00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2fda88c8706e5f3ec92ec2d13889567a7e3d7bb", + "etherscanUrl": "https://etherscan.io/address/0xc2fda88c8706e5f3ec92ec2d13889567a7e3d7bb", + "xHandle": "samscolari", + "xUrl": "https://twitter.com/samscolari", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_311", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "bgrill.eth", + "displayName": "bgrill.eth", + "fid": 311, + "followers": 49042, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88883947-8a37-4cda-08cd-ccea262d1e00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0a2cca2528a5778388c40a0c87cf9cc2bfa1bcf", + "etherscanUrl": "https://etherscan.io/address/0xb0a2cca2528a5778388c40a0c87cf9cc2bfa1bcf", + "xHandle": "bennetgrill", + "xUrl": "https://twitter.com/bennetgrill", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196215", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "sloppy", + "displayName": "Sloppy.⌐◨-◨", + "fid": 196215, + "followers": 8114, + "pfpUrl": "https://i.imgur.com/N1Na2oD.jpg", + "ensName": "sloppynfts.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x86f9781959f885209b58167a398c171d292a398e", + "etherscanUrl": "https://etherscan.io/address/0x86f9781959f885209b58167a398c171d292a398e", + "xHandle": "sloppypencil", + "xUrl": "https://twitter.com/sloppypencil", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_194", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "rish", + "displayName": "rish", + "fid": 194, + "followers": 277843, + "pfpUrl": "https://i.imgur.com/naZWL9n.gif", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x11d5d3f2feccb882947bf8ff6599beb823986e75", + "etherscanUrl": "https://etherscan.io/address/0x11d5d3f2feccb882947bf8ff6599beb823986e75", + "xHandle": "rish_neynar", + "xUrl": "https://twitter.com/rish_neynar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23357", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "richerd", + "displayName": "richerd", + "fid": 23357, + "followers": 987, + "pfpUrl": "https://i.imgur.com/WaTaLqT.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb1c22baacafac7836f20f684c946228401ff01c", + "etherscanUrl": "https://etherscan.io/address/0xeb1c22baacafac7836f20f684c946228401ff01c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_594841", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "napenjoyoor", + "displayName": "Napenjoyoor", + "fid": 594841, + "followers": 64, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/233175c3-baff-4ae5-7292-4917f47c3200/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38b6e9234c6c64e9eddfce9bc082312b72c8b836", + "etherscanUrl": "https://etherscan.io/address/0x38b6e9234c6c64e9eddfce9bc082312b72c8b836", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_3781", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "voadz", + "displayName": "WNX", + "fid": 3781, + "followers": 2466, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b488ccee-1579-4d49-e008-c61c27606100/original", + "ensName": "voadz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb18c332960c3fcacdec089d513f77be5783b1342", + "etherscanUrl": "https://etherscan.io/address/0xb18c332960c3fcacdec089d513f77be5783b1342", + "xHandle": "thevoadz", + "xUrl": "https://twitter.com/thevoadz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2007", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "jacopo.eth", + "displayName": "jacopo.eth", + "fid": 2007, + "followers": 36279, + "pfpUrl": "https://i.imgur.com/pJt6PFK.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9ca3b89fb461c1a279b27ca85aef1821687e6214", + "etherscanUrl": "https://etherscan.io/address/0x9ca3b89fb461c1a279b27ca85aef1821687e6214", + "xHandle": "jj_ranalli", + "xUrl": "https://twitter.com/jj_ranalli", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_941103", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "lasagne", + "displayName": "mr. lasagne", + "fid": 941103, + "followers": 2825, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4defa980-1792-402a-7bca-e4aa7cedde00/rectcrop3", + "ensName": "mrlasagne.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4f2577c331954e67e4ea3561a9079c637d660826", + "etherscanUrl": "https://etherscan.io/address/0x4f2577c331954e67e4ea3561a9079c637d660826", + "xHandle": "xboxlasagne", + "xUrl": "https://twitter.com/xboxlasagne", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11998", + "balanceRaw": "1", + "balanceFormatted": "1", + "lastTransferAt": null, + "username": "wideeyekarl", + "displayName": "Karl", + "fid": 11998, + "followers": 612, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34368fec-887c-44fa-35fa-42a09c070300/original", + "ensName": "pirateshipplayground.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x93ac8c8d1563d10f7c3797edb29031ee0a8c4ca0", + "etherscanUrl": "https://etherscan.io/address/0x93ac8c8d1563d10f7c3797edb29031ee0a8c4ca0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + } + ], + "tokenSymbol": null, + "tokenDecimals": 0, + "lastUpdatedTimestamp": "2025-11-17T21:25:05.053Z", + "lastFetchSettings": { + "source": "tokenHolders", + "network": "mainnet", + "contractAddress": "0x9c8ff314c9bc7f6e59a9d9225fb22946427edc03", + "assetType": "nft" + } +} diff --git a/src/config/nouns/initialSpaces/exploreTabs/spaceHolders.json b/src/config/nouns/initialSpaces/exploreTabs/spaceHolders.json new file mode 100644 index 000000000..0da3328a9 --- /dev/null +++ b/src/config/nouns/initialSpaces/exploreTabs/spaceHolders.json @@ -0,0 +1,18880 @@ +{ + "members": [ + { + "address": "0x0df1b77aafec59e926315e5234db3fdea419d4e4", + "balanceRaw": "21995688406122196609632883", + "balanceFormatted": "21995688.406122196609632883", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0df1b77aafec59e926315e5234db3fdea419d4e4", + "etherscanUrl": "https://etherscan.io/address/0x0df1b77aafec59e926315e5234db3fdea419d4e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "balanceRaw": "15563484332800000000000000", + "balanceFormatted": "15563484.3328", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "etherscanUrl": "https://etherscan.io/address/0x2cde9919e81b20b4b33dd562a48a84b54c48f00c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0093d7f7ef2b7c0ad7633b4955641fcf23743a8d", + "balanceRaw": "13379015284232356837497607", + "balanceFormatted": "13379015.284232356837497607", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0093d7f7ef2b7c0ad7633b4955641fcf23743a8d", + "etherscanUrl": "https://etherscan.io/address/0x0093d7f7ef2b7c0ad7633b4955641fcf23743a8d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2654e8df46466b7bffd0cb97fb7ddeab8d3f015", + "balanceRaw": "9709100568737462611835735", + "balanceFormatted": "9709100.568737462611835735", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa2654e8df46466b7bffd0cb97fb7ddeab8d3f015", + "etherscanUrl": "https://etherscan.io/address/0xa2654e8df46466b7bffd0cb97fb7ddeab8d3f015", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4e395ec7b71dd87a23dd836edb3efe15a6c2002b", + "balanceRaw": "8314738307406335232159614", + "balanceFormatted": "8314738.307406335232159614", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e395ec7b71dd87a23dd836edb3efe15a6c2002b", + "etherscanUrl": "https://etherscan.io/address/0x4e395ec7b71dd87a23dd836edb3efe15a6c2002b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x742e2868f9fd2bdf464494100c1829ba75836c9f", + "balanceRaw": "5460281430370238040704001", + "balanceFormatted": "5460281.430370238040704001", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x742e2868f9fd2bdf464494100c1829ba75836c9f", + "etherscanUrl": "https://etherscan.io/address/0x742e2868f9fd2bdf464494100c1829ba75836c9f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3cd48a0cb9c82608e743086b1ffda59741beef3f", + "balanceRaw": "3781947234046085162816352", + "balanceFormatted": "3781947.234046085162816352", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3cd48a0cb9c82608e743086b1ffda59741beef3f", + "etherscanUrl": "https://etherscan.io/address/0x3cd48a0cb9c82608e743086b1ffda59741beef3f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdd9b9a7b7814b718282967dde9489e68894bdf84", + "balanceRaw": "2856984539759348379784301", + "balanceFormatted": "2856984.539759348379784301", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdd9b9a7b7814b718282967dde9489e68894bdf84", + "etherscanUrl": "https://etherscan.io/address/0xdd9b9a7b7814b718282967dde9489e68894bdf84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76a847b165d8acaee240b3eaa0b2f68be4329260", + "balanceRaw": "2503900843736905673997870", + "balanceFormatted": "2503900.84373690567399787", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76a847b165d8acaee240b3eaa0b2f68be4329260", + "etherscanUrl": "https://etherscan.io/address/0x76a847b165d8acaee240b3eaa0b2f68be4329260", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20721", + "balanceRaw": "2112154843011050825758061", + "balanceFormatted": "2112154.843011050825758061", + "lastTransferAt": null, + "username": "skateboard", + "displayName": "Skateboard.⌐◨-◨", + "fid": 20721, + "followers": 1779, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f381719c-7d66-4837-d832-0e16395c9800/original", + "ensName": "sktbrd.eth", + "ensAvatarUrl": "https://i.ibb.co/ChbsDSr/Screenshot-1.png", + "primaryAddress": "0x2d1882304c9a6fa7f987c1b41c9fd5e8cf0516e2", + "etherscanUrl": "https://etherscan.io/address/0x2d1882304c9a6fa7f987c1b41c9fd5e8cf0516e2", + "xHandle": "sk8ordao", + "xUrl": "https://twitter.com/sk8ordao", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_230941", + "balanceRaw": "1923956769007123845203109", + "balanceFormatted": "1923956.769007123845203109", + "lastTransferAt": null, + "username": "willywonka.eth", + "displayName": "willywonka ⌐◨-◨", + "fid": 230941, + "followers": 4220, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c2324ecf-c09f-40f5-936c-80fbbd0cb500/original", + "ensName": "willywonka.eth", + "ensAvatarUrl": "https://raw.seadn.io/files/aceb5cc8fcad6ae508c82f5b6f07ffff.svg", + "primaryAddress": "0x3b525f808df863413afd4c5ae1eed276af266c97", + "etherscanUrl": "https://etherscan.io/address/0x3b525f808df863413afd4c5ae1eed276af266c97", + "xHandle": "willyogo", + "xUrl": "https://twitter.com/willyogo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaaf88ae8b30aa8301248ca3f45177290a64a3db1", + "balanceRaw": "1693604009333211355408343", + "balanceFormatted": "1693604.009333211355408343", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaaf88ae8b30aa8301248ca3f45177290a64a3db1", + "etherscanUrl": "https://etherscan.io/address/0xaaf88ae8b30aa8301248ca3f45177290a64a3db1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5248079a03ffea97aea9e86a0721f8090619d036", + "balanceRaw": "1525486917805154130859152", + "balanceFormatted": "1525486.917805154130859152", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5248079a03ffea97aea9e86a0721f8090619d036", + "etherscanUrl": "https://etherscan.io/address/0x5248079a03ffea97aea9e86a0721f8090619d036", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb36c4aa5cd17376d682f2ff2709316487e601af2", + "balanceRaw": "1376786483070693999589249", + "balanceFormatted": "1376786.483070693999589249", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb36c4aa5cd17376d682f2ff2709316487e601af2", + "etherscanUrl": "https://etherscan.io/address/0xb36c4aa5cd17376d682f2ff2709316487e601af2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a2725a6f04816a5274ddd9feadd3bd0c253c1a6", + "balanceRaw": "1275700934508000000000000", + "balanceFormatted": "1275700.934508", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a2725a6f04816a5274ddd9feadd3bd0c253c1a6", + "etherscanUrl": "https://etherscan.io/address/0x8a2725a6f04816a5274ddd9feadd3bd0c253c1a6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4888", + "balanceRaw": "1234987520034877874512891", + "balanceFormatted": "1234987.520034877874512891", + "lastTransferAt": null, + "username": "realitycrafter.eth", + "displayName": "RealityCrafter", + "fid": 4888, + "followers": 4589, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46cc5cfb-4ad4-4aa4-5673-5fef6d116300/original", + "ensName": "realitycrafter.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x51603c7059f369ab04b16addfb7bb6c4e34b8523", + "etherscanUrl": "https://etherscan.io/address/0x51603c7059f369ab04b16addfb7bb6c4e34b8523", + "xHandle": "realitycrafter", + "xUrl": "https://twitter.com/realitycrafter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261657", + "balanceRaw": "1209323000000000000000000", + "balanceFormatted": "1209323", + "lastTransferAt": null, + "username": "cameronb", + "displayName": "Cam 👾 ", + "fid": 261657, + "followers": 170, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5425e5b3-1402-4f2f-4d0f-cb63a25a5900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f8248ef064e53ef1e673fe586058d312e50388b", + "etherscanUrl": "https://etherscan.io/address/0x7f8248ef064e53ef1e673fe586058d312e50388b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38b7e6ded0e70b50be76b4e1c7597429a204d7ac", + "balanceRaw": "986481500000000000000000", + "balanceFormatted": "986481.5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38b7e6ded0e70b50be76b4e1c7597429a204d7ac", + "etherscanUrl": "https://etherscan.io/address/0x38b7e6ded0e70b50be76b4e1c7597429a204d7ac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeec02491258a23d22ede259b78a8ca3d98fabdd4", + "balanceRaw": "952605282171093263998145", + "balanceFormatted": "952605.282171093263998145", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeec02491258a23d22ede259b78a8ca3d98fabdd4", + "etherscanUrl": "https://etherscan.io/address/0xeec02491258a23d22ede259b78a8ca3d98fabdd4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1396374", + "balanceRaw": "806965596915441156145938", + "balanceFormatted": "806965.596915441156145938", + "lastTransferAt": null, + "username": "vaipraonde.base.eth", + "displayName": "vaipraonde", + "fid": 1396374, + "followers": 0, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761077295/1000077265.jpg.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32d1c8a4d133241a710d780f1198992a015ea5ed", + "etherscanUrl": "https://etherscan.io/address/0x32d1c8a4d133241a710d780f1198992a015ea5ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1961a23409ca59eedca6a99c97e4087dad752486", + "balanceRaw": "790100674584073919025732", + "balanceFormatted": "790100.674584073919025732", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1961a23409ca59eedca6a99c97e4087dad752486", + "etherscanUrl": "https://etherscan.io/address/0x1961a23409ca59eedca6a99c97e4087dad752486", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2be2997722535c731502f924dcc3dc654338cd89", + "balanceRaw": "673027314567997245458512", + "balanceFormatted": "673027.314567997245458512", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2be2997722535c731502f924dcc3dc654338cd89", + "etherscanUrl": "https://etherscan.io/address/0x2be2997722535c731502f924dcc3dc654338cd89", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2bae9feefa90f4f45d5c6bb9b787b5181515386", + "balanceRaw": "646954873554659337148460", + "balanceFormatted": "646954.87355465933714846", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "alandershowitz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa2bae9feefa90f4f45d5c6bb9b787b5181515386", + "etherscanUrl": "https://etherscan.io/address/0xa2bae9feefa90f4f45d5c6bb9b787b5181515386", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3e39f1829056d8589699494bda61f9e7cecbcac8", + "balanceRaw": "632653543393533075484626", + "balanceFormatted": "632653.543393533075484626", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e39f1829056d8589699494bda61f9e7cecbcac8", + "etherscanUrl": "https://etherscan.io/address/0x3e39f1829056d8589699494bda61f9e7cecbcac8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_726881", + "balanceRaw": "459528496012601941863995", + "balanceFormatted": "459528.496012601941863995", + "lastTransferAt": null, + "username": "xn--4zg", + "displayName": "xn--4zg", + "fid": 726881, + "followers": 4, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/70a62a83-b760-46dd-d353-7093408e4b00/rectcrop3", + "ensName": "💎✋🤚.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb5b8c2939348be0cde88285821889ef1193a9655", + "etherscanUrl": "https://etherscan.io/address/0xb5b8c2939348be0cde88285821889ef1193a9655", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_357485", + "balanceRaw": "435717149220366461931161", + "balanceFormatted": "435717.149220366461931161", + "lastTransferAt": null, + "username": "giantkin", + "displayName": "Giant Kin", + "fid": 357485, + "followers": 18, + "pfpUrl": "https://i.imgur.com/Ou24PqJ.jpg", + "ensName": "giantkin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf4bc2053f62cef5519813ebdb1c39950fd0311fa", + "etherscanUrl": "https://etherscan.io/address/0xf4bc2053f62cef5519813ebdb1c39950fd0311fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf3ac232c8d43decbc707d4cce9b9afbff279dfe1", + "balanceRaw": "287119447540253701440218", + "balanceFormatted": "287119.447540253701440218", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf3ac232c8d43decbc707d4cce9b9afbff279dfe1", + "etherscanUrl": "https://etherscan.io/address/0xf3ac232c8d43decbc707d4cce9b9afbff279dfe1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe1fea276c2cd5b55f8c1bf5baa2967d24cb4a7c7", + "balanceRaw": "199735377076646780858263", + "balanceFormatted": "199735.377076646780858263", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1fea276c2cd5b55f8c1bf5baa2967d24cb4a7c7", + "etherscanUrl": "https://etherscan.io/address/0xe1fea276c2cd5b55f8c1bf5baa2967d24cb4a7c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x34753e738406023f54108c3cb0129d4d1c458851", + "balanceRaw": "178463370295385604427449", + "balanceFormatted": "178463.370295385604427449", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x34753e738406023f54108c3cb0129d4d1c458851", + "etherscanUrl": "https://etherscan.io/address/0x34753e738406023f54108c3cb0129d4d1c458851", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd19b38f9396c5e6c03d2b8ac668d8422fc5e2ad2", + "balanceRaw": "174181282674352821591826", + "balanceFormatted": "174181.282674352821591826", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd19b38f9396c5e6c03d2b8ac668d8422fc5e2ad2", + "etherscanUrl": "https://etherscan.io/address/0xd19b38f9396c5e6c03d2b8ac668d8422fc5e2ad2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x89a17bc5d24b5cb684ba374b18178e728085ed09", + "balanceRaw": "165671497080857942853511", + "balanceFormatted": "165671.497080857942853511", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89a17bc5d24b5cb684ba374b18178e728085ed09", + "etherscanUrl": "https://etherscan.io/address/0x89a17bc5d24b5cb684ba374b18178e728085ed09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_363047", + "balanceRaw": "145665026234477136027695", + "balanceFormatted": "145665.026234477136027695", + "lastTransferAt": null, + "username": "bdunn", + "displayName": "b", + "fid": 363047, + "followers": 222, + "pfpUrl": "https://p765cpbvm0.execute-api.eu-central-1.amazonaws.com/p1/renderer/Minteeble/chain/base/collection/6e0b39a5-8569-4e67-b330-d352593c9629/image/8607.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf00637df305e096a12fafef48014339cca1c1da", + "etherscanUrl": "https://etherscan.io/address/0xaf00637df305e096a12fafef48014339cca1c1da", + "xHandle": "life_with_be", + "xUrl": "https://twitter.com/life_with_be", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1f2aac54e7f2d001572571980664aa2185aff164", + "balanceRaw": "130042209695681242737263", + "balanceFormatted": "130042.209695681242737263", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f2aac54e7f2d001572571980664aa2185aff164", + "etherscanUrl": "https://etherscan.io/address/0x1f2aac54e7f2d001572571980664aa2185aff164", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb5fd34d19d34977fa0a0426c8058fc32fc091e28", + "balanceRaw": "120640559198102620899284", + "balanceFormatted": "120640.559198102620899284", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb5fd34d19d34977fa0a0426c8058fc32fc091e28", + "etherscanUrl": "https://etherscan.io/address/0xb5fd34d19d34977fa0a0426c8058fc32fc091e28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x008973057f82ec4cc24e4cfb31c9053afb1ecf61", + "balanceRaw": "113705500000000000000000", + "balanceFormatted": "113705.5", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x008973057f82ec4cc24e4cfb31c9053afb1ecf61", + "etherscanUrl": "https://etherscan.io/address/0x008973057f82ec4cc24e4cfb31c9053afb1ecf61", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc827d1bd0d3b5838101cca6f6d4a0ebaadf23e9e", + "balanceRaw": "101843075849822424756330", + "balanceFormatted": "101843.07584982242475633", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc827d1bd0d3b5838101cca6f6d4a0ebaadf23e9e", + "etherscanUrl": "https://etherscan.io/address/0xc827d1bd0d3b5838101cca6f6d4a0ebaadf23e9e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ae97e4770b7034c7ca99ab7edc26a18a23cb412", + "balanceRaw": "100000000000000000000000", + "balanceFormatted": "100000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ae97e4770b7034c7ca99ab7edc26a18a23cb412", + "etherscanUrl": "https://etherscan.io/address/0x5ae97e4770b7034c7ca99ab7edc26a18a23cb412", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7589", + "balanceRaw": "91257848375351425027189", + "balanceFormatted": "91257.848375351425027189", + "lastTransferAt": null, + "username": "lior", + "displayName": "Lior", + "fid": 7589, + "followers": 6167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f2641cdd-906e-4cdd-ca3e-845ae2dfc900/original", + "ensName": "liorg.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcbf37605a4a169cb16bf18f01329ef218df32f93", + "etherscanUrl": "https://etherscan.io/address/0xcbf37605a4a169cb16bf18f01329ef218df32f93", + "xHandle": "goldenberglior", + "xUrl": "https://twitter.com/goldenberglior", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18091", + "balanceRaw": "90766313325359236359053", + "balanceFormatted": "90766.313325359236359053", + "lastTransferAt": null, + "username": "player1taco", + "displayName": "Player1Taco", + "fid": 18091, + "followers": 437, + "pfpUrl": "https://i.imgur.com/OQKyRtu.jpg", + "ensName": "player1taco.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2d2a102e59c805aedfb077e9853815787878cbce", + "etherscanUrl": "https://etherscan.io/address/0x2d2a102e59c805aedfb077e9853815787878cbce", + "xHandle": "player1taco", + "xUrl": "https://twitter.com/player1taco", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc8d65e1bd67f16522e3117b980e1c9d2caeb9dc3", + "balanceRaw": "83691990106544900367552", + "balanceFormatted": "83691.990106544900367552", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "generalmagic.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc8d65e1bd67f16522e3117b980e1c9d2caeb9dc3", + "etherscanUrl": "https://etherscan.io/address/0xc8d65e1bd67f16522e3117b980e1c9d2caeb9dc3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb4a2a90c210e3d471a913fc3800694df230a38e7", + "balanceRaw": "72192561652771501623054", + "balanceFormatted": "72192.561652771501623054", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "charitableonchain.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb4a2a90c210e3d471a913fc3800694df230a38e7", + "etherscanUrl": "https://etherscan.io/address/0xb4a2a90c210e3d471a913fc3800694df230a38e7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x12a048306d8d0ad3f0a4b87a16f224cb6862bcd2", + "balanceRaw": "69133547599581185445046", + "balanceFormatted": "69133.547599581185445046", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12a048306d8d0ad3f0a4b87a16f224cb6862bcd2", + "etherscanUrl": "https://etherscan.io/address/0x12a048306d8d0ad3f0a4b87a16f224cb6862bcd2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4561d18a9c52a0064a3a2335a5d0542052346ebb", + "balanceRaw": "66522666817590850733575", + "balanceFormatted": "66522.666817590850733575", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4561d18a9c52a0064a3a2335a5d0542052346ebb", + "etherscanUrl": "https://etherscan.io/address/0x4561d18a9c52a0064a3a2335a5d0542052346ebb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x609938347d5d4a91f3a58e089b29823ad947c980", + "balanceRaw": "62209143265908558568293", + "balanceFormatted": "62209.143265908558568293", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x609938347d5d4a91f3a58e089b29823ad947c980", + "etherscanUrl": "https://etherscan.io/address/0x609938347d5d4a91f3a58e089b29823ad947c980", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4959", + "balanceRaw": "61634828285468956918816", + "balanceFormatted": "61634.828285468956918816", + "lastTransferAt": null, + "username": "jmann.eth", + "displayName": "16 years of Song A Day", + "fid": 4959, + "followers": 3471, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cff6628a-c2d5-441c-5064-bf8d7676d000/original", + "ensName": "jmann.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/bafybeigrqdhqklyj32mmvbj46yybgauruh7rc22n4x2qjiyz4a3oyset2q", + "primaryAddress": "0xa6fd7709a3cc8c04a82ed6e9a710f1b3f3616839", + "etherscanUrl": "https://etherscan.io/address/0xa6fd7709a3cc8c04a82ed6e9a710f1b3f3616839", + "xHandle": "songadaymann", + "xUrl": "https://twitter.com/songadaymann", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5701", + "balanceRaw": "61094705770717040624973", + "balanceFormatted": "61094.705770717040624973", + "lastTransferAt": null, + "username": "chriscocreated", + "displayName": "ChrisCoCreated", + "fid": 5701, + "followers": 63870, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/117f5639-2d6f-4aef-f414-c83538564600/original", + "ensName": "chriscocreated.eth", + "ensAvatarUrl": "https://euc.li/chriscocreated.eth", + "primaryAddress": "0x307f9cc8650862e0815adf833b9125f4e0ed4055", + "etherscanUrl": "https://etherscan.io/address/0x307f9cc8650862e0815adf833b9125f4e0ed4055", + "xHandle": "chriscocreated", + "xUrl": "https://twitter.com/chriscocreated", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x24a5bdd2b09eba095af933397f409f9d0b14ac6c", + "balanceRaw": "60376363334706318813217", + "balanceFormatted": "60376.363334706318813217", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x24a5bdd2b09eba095af933397f409f9d0b14ac6c", + "etherscanUrl": "https://etherscan.io/address/0x24a5bdd2b09eba095af933397f409f9d0b14ac6c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3e3048c8131b6dbcaa214faa1c458f6f5ea1f0c5", + "balanceRaw": "50474224749942103712193", + "balanceFormatted": "50474.224749942103712193", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e3048c8131b6dbcaa214faa1c458f6f5ea1f0c5", + "etherscanUrl": "https://etherscan.io/address/0x3e3048c8131b6dbcaa214faa1c458f6f5ea1f0c5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192539", + "balanceRaw": "46173307632945713661450", + "balanceFormatted": "46173.30763294571366145", + "lastTransferAt": null, + "username": "yougogirl.eth", + "displayName": "yggᵛᵛ", + "fid": 192539, + "followers": 7669, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32c2e24c-62fd-4118-82e8-c321acccb700/original", + "ensName": "yougogirl.eth", + "ensAvatarUrl": "https://euc.li/yougogirl.eth", + "primaryAddress": "0x94b501e614828ed87229c16be6ed0d6a135bc4ee", + "etherscanUrl": "https://etherscan.io/address/0x94b501e614828ed87229c16be6ed0d6a135bc4ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1462f0c35a3e48027ad72bef4e3925aa4fb4a14d", + "balanceRaw": "36134891500069193959556", + "balanceFormatted": "36134.891500069193959556", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1462f0c35a3e48027ad72bef4e3925aa4fb4a14d", + "etherscanUrl": "https://etherscan.io/address/0x1462f0c35a3e48027ad72bef4e3925aa4fb4a14d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc078419833f9cd7e22af92d703bbe7ad80b62b1b", + "balanceRaw": "35220366472316315571914", + "balanceFormatted": "35220.366472316315571914", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc078419833f9cd7e22af92d703bbe7ad80b62b1b", + "etherscanUrl": "https://etherscan.io/address/0xc078419833f9cd7e22af92d703bbe7ad80b62b1b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ea83447807941fb777bb60137b030b3e795dd7e", + "balanceRaw": "33750495516276739768119", + "balanceFormatted": "33750.495516276739768119", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gerbz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0ea83447807941fb777bb60137b030b3e795dd7e", + "etherscanUrl": "https://etherscan.io/address/0x0ea83447807941fb777bb60137b030b3e795dd7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb9f0758e4a1aabcfa8473a29724aab91f030733e", + "balanceRaw": "30976905352677066430241", + "balanceFormatted": "30976.905352677066430241", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9f0758e4a1aabcfa8473a29724aab91f030733e", + "etherscanUrl": "https://etherscan.io/address/0xb9f0758e4a1aabcfa8473a29724aab91f030733e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_502816", + "balanceRaw": "30839617018661900557950", + "balanceFormatted": "30839.61701866190055795", + "lastTransferAt": null, + "username": "777px", + "displayName": "777px.base.eth", + "fid": 502816, + "followers": 189, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61cdde70-25fb-4541-3cd8-4d1e6d386900/original", + "ensName": "777px.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x734f9aba23e8432bbed9693c3ab8eb9ee5eecbc6", + "etherscanUrl": "https://etherscan.io/address/0x734f9aba23e8432bbed9693c3ab8eb9ee5eecbc6", + "xHandle": "_akeemthedream_", + "xUrl": "https://twitter.com/_akeemthedream_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5d64d14d2cf4fe5fe4e65b1c7e3d11e18d493091", + "balanceRaw": "30260843271353790041553", + "balanceFormatted": "30260.843271353790041553", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d64d14d2cf4fe5fe4e65b1c7e3d11e18d493091", + "etherscanUrl": "https://etherscan.io/address/0x5d64d14d2cf4fe5fe4e65b1c7e3d11e18d493091", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf79faedfb3bb130c449363d5e760eb0c2f77b27e", + "balanceRaw": "29621348729549338490097", + "balanceFormatted": "29621.348729549338490097", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf79faedfb3bb130c449363d5e760eb0c2f77b27e", + "etherscanUrl": "https://etherscan.io/address/0xf79faedfb3bb130c449363d5e760eb0c2f77b27e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "balanceRaw": "28410745592632190841586", + "balanceFormatted": "28410.745592632190841586", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "pavansethi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "etherscanUrl": "https://etherscan.io/address/0xb01b6810075a425f0e7ff26f7dbb688e38e1daf2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_305058", + "balanceRaw": "28196161125751484397050", + "balanceFormatted": "28196.16112575148439705", + "lastTransferAt": null, + "username": "forestclub", + "displayName": "Forest🎩", + "fid": 305058, + "followers": 1443, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b78107a-f977-496b-adeb-0043902ff300/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x30dd49bc33c5ab888059345a8c69c9bdbc26d9d1", + "etherscanUrl": "https://etherscan.io/address/0x30dd49bc33c5ab888059345a8c69c9bdbc26d9d1", + "xHandle": "forest_club3", + "xUrl": "https://twitter.com/forest_club3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf25281c5b5620ca0e9ab6a1442cb6e9b333ccb06", + "balanceRaw": "26566699903193505353026", + "balanceFormatted": "26566.699903193505353026", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf25281c5b5620ca0e9ab6a1442cb6e9b333ccb06", + "etherscanUrl": "https://etherscan.io/address/0xf25281c5b5620ca0e9ab6a1442cb6e9b333ccb06", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5516", + "balanceRaw": "25348361276812544110575", + "balanceFormatted": "25348.361276812544110575", + "lastTransferAt": null, + "username": "sky", + "displayName": "Sky (funky Farcaster friend)", + "fid": 5516, + "followers": 1654, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4c570f6b-3680-405c-ea28-889e655efb00/original", + "ensName": "skydao.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x19c64affde518de2884c1944700e12d2bb7016a4", + "etherscanUrl": "https://etherscan.io/address/0x19c64affde518de2884c1944700e12d2bb7016a4", + "xHandle": "0xskymine", + "xUrl": "https://twitter.com/0xskymine", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_234616", + "balanceRaw": "24703467645072448263212", + "balanceFormatted": "24703.467645072448263212", + "lastTransferAt": null, + "username": "pichi", + "displayName": "Pichi", + "fid": 234616, + "followers": 53733, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/343ce6bb-b2d3-4f7c-1359-deba9af91000/original", + "ensName": "pi-chi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe51f0abdcadaeb97f409a2a7f2c1baff8b4fdfb6", + "etherscanUrl": "https://etherscan.io/address/0xe51f0abdcadaeb97f409a2a7f2c1baff8b4fdfb6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_215093", + "balanceRaw": "23901165811644649263716", + "balanceFormatted": "23901.165811644649263716", + "lastTransferAt": null, + "username": "klint", + "displayName": "Klint", + "fid": 215093, + "followers": 12, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d23f34e-d079-47ea-73c3-82bcbd91dd00/rectcrop3", + "ensName": "klintmar.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x238ac1f6d962b29044c2c69c15cce73ac9fd183e", + "etherscanUrl": "https://etherscan.io/address/0x238ac1f6d962b29044c2c69c15cce73ac9fd183e", + "xHandle": "taylorryantweet", + "xUrl": "https://twitter.com/taylorryantweet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6313695a3a1666602252fccdbc747f0181932875", + "balanceRaw": "22963713744625914235207", + "balanceFormatted": "22963.713744625914235207", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6313695a3a1666602252fccdbc747f0181932875", + "etherscanUrl": "https://etherscan.io/address/0x6313695a3a1666602252fccdbc747f0181932875", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9735a879946008f3efa93042f3cc0f882556f970", + "balanceRaw": "22759634697172507960906", + "balanceFormatted": "22759.634697172507960906", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9735a879946008f3efa93042f3cc0f882556f970", + "etherscanUrl": "https://etherscan.io/address/0x9735a879946008f3efa93042f3cc0f882556f970", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_628657", + "balanceRaw": "22649271967834934490722", + "balanceFormatted": "22649.271967834934490722", + "lastTransferAt": null, + "username": "raygbiv", + "displayName": "raygbiv", + "fid": 628657, + "followers": 15, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/212935fe-635d-464d-a1e1-7145c331ac00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x111393494fb677dbf9685e05a79ca5aefcdd316c", + "etherscanUrl": "https://etherscan.io/address/0x111393494fb677dbf9685e05a79ca5aefcdd316c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd275f6ae50b5faea167296ebe3615ee33538cd9c", + "balanceRaw": "22281663615127936231642", + "balanceFormatted": "22281.663615127936231642", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd275f6ae50b5faea167296ebe3615ee33538cd9c", + "etherscanUrl": "https://etherscan.io/address/0xd275f6ae50b5faea167296ebe3615ee33538cd9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb9a9c602cab4e9c4e37857e54ca08735b8df7bde", + "balanceRaw": "22043809150660711561539", + "balanceFormatted": "22043.809150660711561539", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9a9c602cab4e9c4e37857e54ca08735b8df7bde", + "etherscanUrl": "https://etherscan.io/address/0xb9a9c602cab4e9c4e37857e54ca08735b8df7bde", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2e8ccb712dba8d8f39f0903e3a2bfd574e6904dd", + "balanceRaw": "21984918009158279173681", + "balanceFormatted": "21984.918009158279173681", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "🩲💰282.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2e8ccb712dba8d8f39f0903e3a2bfd574e6904dd", + "etherscanUrl": "https://etherscan.io/address/0x2e8ccb712dba8d8f39f0903e3a2bfd574e6904dd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x90df4c48a49b63f25754ed79f2e5f4389e57fb0b", + "balanceRaw": "21663270701204950827570", + "balanceFormatted": "21663.27070120495082757", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90df4c48a49b63f25754ed79f2e5f4389e57fb0b", + "etherscanUrl": "https://etherscan.io/address/0x90df4c48a49b63f25754ed79f2e5f4389e57fb0b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf8b9f1749df166fba1c93b5ac305e631b5e54fb", + "balanceRaw": "21259936471379843889589", + "balanceFormatted": "21259.936471379843889589", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf8b9f1749df166fba1c93b5ac305e631b5e54fb", + "etherscanUrl": "https://etherscan.io/address/0xaf8b9f1749df166fba1c93b5ac305e631b5e54fb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb512b9b9d9f0cacd8d02c7fbb54b76bb0b7f0433", + "balanceRaw": "21257233910425556237691", + "balanceFormatted": "21257.233910425556237691", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb512b9b9d9f0cacd8d02c7fbb54b76bb0b7f0433", + "etherscanUrl": "https://etherscan.io/address/0xb512b9b9d9f0cacd8d02c7fbb54b76bb0b7f0433", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_393610", + "balanceRaw": "20609824889663738017231", + "balanceFormatted": "20609.824889663738017231", + "lastTransferAt": null, + "username": "minato35", + "displayName": "minato🎩", + "fid": 393610, + "followers": 1643, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42aee619-20ac-4583-8b2b-17fee459b300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x871f8b9f81172d2bc2a696acf7d231de0c735473", + "etherscanUrl": "https://etherscan.io/address/0x871f8b9f81172d2bc2a696acf7d231de0c735473", + "xHandle": "minato3570", + "xUrl": "https://twitter.com/minato3570", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21431", + "balanceRaw": "20000652173913000000000", + "balanceFormatted": "20000.652173913", + "lastTransferAt": null, + "username": "gramajo.eth", + "displayName": "Gramajo", + "fid": 21431, + "followers": 6958, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cd4b7693-342b-42c8-0e98-c4dd13bbca00/rectcrop3", + "ensName": "gramajo.eth", + "ensAvatarUrl": "https://euc.li/gramajo.eth", + "primaryAddress": "0x53aea1ec0a7ca04eb4463984a7da085f35697f05", + "etherscanUrl": "https://etherscan.io/address/0x53aea1ec0a7ca04eb4463984a7da085f35697f05", + "xHandle": "0xgramajo", + "xUrl": "https://twitter.com/0xgramajo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_5037", + "balanceRaw": "19729708496858163325024", + "balanceFormatted": "19729.708496858163325024", + "lastTransferAt": null, + "username": "earth2travis", + "displayName": "Ξ2T 🏰", + "fid": 5037, + "followers": 2339, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/463ae478-43a7-43c3-9e54-9120d6edbc00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeaf650c612e8d0243ddbc15fd15a85622013af71", + "etherscanUrl": "https://etherscan.io/address/0xeaf650c612e8d0243ddbc15fd15a85622013af71", + "xHandle": "earth2travis", + "xUrl": "https://twitter.com/earth2travis", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xba5e00b0d91fa0a0fa40b704d00d01cb0c8008c1", + "balanceRaw": "19303616093258258067899", + "balanceFormatted": "19303.616093258258067899", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xba5e00b0d91fa0a0fa40b704d00d01cb0c8008c1", + "etherscanUrl": "https://etherscan.io/address/0xba5e00b0d91fa0a0fa40b704d00d01cb0c8008c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a4a2b41267cd7f2c242c97c2491a56b8a4b9b3b", + "balanceRaw": "19183484993164237814615", + "balanceFormatted": "19183.484993164237814615", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a4a2b41267cd7f2c242c97c2491a56b8a4b9b3b", + "etherscanUrl": "https://etherscan.io/address/0x7a4a2b41267cd7f2c242c97c2491a56b8a4b9b3b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6b601613ecbeb09127135318948f0485e3ecf20f", + "balanceRaw": "18347754144056000442119", + "balanceFormatted": "18347.754144056000442119", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b601613ecbeb09127135318948f0485e3ecf20f", + "etherscanUrl": "https://etherscan.io/address/0x6b601613ecbeb09127135318948f0485e3ecf20f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_375154", + "balanceRaw": "17123958672000000000000", + "balanceFormatted": "17123.958672", + "lastTransferAt": null, + "username": "fio1", + "displayName": "fio1", + "fid": 375154, + "followers": 4, + "pfpUrl": "https://i.imgur.com/hiyxeMk.jpg", + "ensName": "tudorizer.eth", + "ensAvatarUrl": "https://euc.li/tudorizer.eth", + "primaryAddress": "0xbdca59f1346f6ccf05ee0c28ce4491cdf119fb4c", + "etherscanUrl": "https://etherscan.io/address/0xbdca59f1346f6ccf05ee0c28ce4491cdf119fb4c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_295897", + "balanceRaw": "17011274260823989626947", + "balanceFormatted": "17011.274260823989626947", + "lastTransferAt": null, + "username": "supachimp", + "displayName": "supachimp", + "fid": 295897, + "followers": 45, + "pfpUrl": "https://i.imgur.com/aQDQtH9.jpg", + "ensName": "supachimp.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe6f61afb06caef91a37ba354d65812058f78e6c3", + "etherscanUrl": "https://etherscan.io/address/0xe6f61afb06caef91a37ba354d65812058f78e6c3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9bd518c90cd891239072b13ee484c2000448af4a", + "balanceRaw": "16485277398508227413861", + "balanceFormatted": "16485.277398508227413861", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bd518c90cd891239072b13ee484c2000448af4a", + "etherscanUrl": "https://etherscan.io/address/0x9bd518c90cd891239072b13ee484c2000448af4a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6357b6c6e2d79b570a0c5a0b17e20ab46f72bcf8", + "balanceRaw": "15706162672654852886806", + "balanceFormatted": "15706.162672654852886806", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6357b6c6e2d79b570a0c5a0b17e20ab46f72bcf8", + "etherscanUrl": "https://etherscan.io/address/0x6357b6c6e2d79b570a0c5a0b17e20ab46f72bcf8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_883758", + "balanceRaw": "15662341894977168645360", + "balanceFormatted": "15662.34189497716864536", + "lastTransferAt": null, + "username": "juria", + "displayName": "juria", + "fid": 883758, + "followers": 17, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6707dc3a-f8f4-4124-c806-0a84cfd0ea00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa0a7dd1043c04e1baee6a85b71c87a0717758b3f", + "etherscanUrl": "https://etherscan.io/address/0xa0a7dd1043c04e1baee6a85b71c87a0717758b3f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_670639", + "balanceRaw": "15651801133362803248666", + "balanceFormatted": "15651.801133362803248666", + "lastTransferAt": null, + "username": "thekris", + "displayName": "Kris Gligoroski", + "fid": 670639, + "followers": 1143, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80bcef5f-002d-41a5-c8fd-6deaf17ed800/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf6ac7c1d638069f1f3565bf4baae9e3a5afbba16", + "etherscanUrl": "https://etherscan.io/address/0xf6ac7c1d638069f1f3565bf4baae9e3a5afbba16", + "xHandle": "optimismshow", + "xUrl": "https://twitter.com/optimismshow", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11778", + "balanceRaw": "15400849043003539072199", + "balanceFormatted": "15400.849043003539072199", + "lastTransferAt": null, + "username": "rohekbenitez.eth", + "displayName": "rohekbenitez ツ🎩🍄🔥", + "fid": 11778, + "followers": 5903, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1763342287/a76af411-0953-41fb-9b9e-f66200cedb2d.gif", + "ensName": "rohekbenitez.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb59589b5323cb3312f04acaf063ef2e0c91f7864", + "etherscanUrl": "https://etherscan.io/address/0xb59589b5323cb3312f04acaf063ef2e0c91f7864", + "xHandle": "rohekbenitez20", + "xUrl": "https://twitter.com/rohekbenitez20", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_847902", + "balanceRaw": "14285130313883162589926", + "balanceFormatted": "14285.130313883162589926", + "lastTransferAt": null, + "username": "vaipraonde", + "displayName": "vaipraonde ⌐◨-◨", + "fid": 847902, + "followers": 196, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8fa98f2b-fd39-4a33-94ad-0bd3084f6d00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x32d1c8a4d133241a710d780f1198992a015ea5ed", + "etherscanUrl": "https://etherscan.io/address/0x32d1c8a4d133241a710d780f1198992a015ea5ed", + "xHandle": "arferrari", + "xUrl": "https://twitter.com/arferrari", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e536919abc2b0df86de137d4ba17ab95021509d", + "balanceRaw": "14052056223272121730673", + "balanceFormatted": "14052.056223272121730673", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dancingpenguin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5e536919abc2b0df86de137d4ba17ab95021509d", + "etherscanUrl": "https://etherscan.io/address/0x5e536919abc2b0df86de137d4ba17ab95021509d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x748d4efa050fec0b9ba60789e1ffb1c68f412d4c", + "balanceRaw": "13404947422936661787498", + "balanceFormatted": "13404.947422936661787498", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x748d4efa050fec0b9ba60789e1ffb1c68f412d4c", + "etherscanUrl": "https://etherscan.io/address/0x748d4efa050fec0b9ba60789e1ffb1c68f412d4c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeba3a859c8fa0c4f8cfca1ed94f03891bb21067f", + "balanceRaw": "13273215902777365835122", + "balanceFormatted": "13273.215902777365835122", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeba3a859c8fa0c4f8cfca1ed94f03891bb21067f", + "etherscanUrl": "https://etherscan.io/address/0xeba3a859c8fa0c4f8cfca1ed94f03891bb21067f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_997435", + "balanceRaw": "13260889418182183601478", + "balanceFormatted": "13260.889418182183601478", + "lastTransferAt": null, + "username": "trustfund", + "displayName": "Paper Hands", + "fid": 997435, + "followers": 19, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9d75e25-351f-4903-a1e5-b36319861600/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x89768bfbfbd59ba2d8a0d7a6a9dc2edccc95fd36", + "etherscanUrl": "https://etherscan.io/address/0x89768bfbfbd59ba2d8a0d7a6a9dc2edccc95fd36", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_10938", + "balanceRaw": "12990652173913000000000", + "balanceFormatted": "12990.652173913", + "lastTransferAt": null, + "username": "divine-comedian", + "displayName": "Mitch", + "fid": 10938, + "followers": 75, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a397ea1a-734f-4fe1-6c1d-c2bb31215e00/original", + "ensName": "divinecomedian.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/bafybeieb7tqigv72w6ihiigdakyq2fhafh4b76a7445kdzwynnexhub4fy", + "primaryAddress": "0x14cd3e5467a8f1ac8f09422ee781654ecd89a887", + "etherscanUrl": "https://etherscan.io/address/0x14cd3e5467a8f1ac8f09422ee781654ecd89a887", + "xHandle": "divine_comedian", + "xUrl": "https://twitter.com/divine_comedian", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0a40e22690b6afed19108a4487c8031211940d5d", + "balanceRaw": "12769235489708148658343", + "balanceFormatted": "12769.235489708148658343", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a40e22690b6afed19108a4487c8031211940d5d", + "etherscanUrl": "https://etherscan.io/address/0x0a40e22690b6afed19108a4487c8031211940d5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_409857", + "balanceRaw": "12697871702292598632307", + "balanceFormatted": "12697.871702292598632307", + "lastTransferAt": null, + "username": "yerbearserker", + "displayName": "yerbearserker.base.eth 🏛️", + "fid": 409857, + "followers": 5060, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9230eb32-7441-40f0-3781-84c4dc20ed00/original", + "ensName": "orajo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6851dc5e4af118f7821bb798df56866cd1491f43", + "etherscanUrl": "https://etherscan.io/address/0x6851dc5e4af118f7821bb798df56866cd1491f43", + "xHandle": "yerbearserker", + "xUrl": "https://twitter.com/yerbearserker", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x41f3032969313948c4ebf72d4f6a331b3a489253", + "balanceRaw": "11939094892940088044394", + "balanceFormatted": "11939.094892940088044394", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41f3032969313948c4ebf72d4f6a331b3a489253", + "etherscanUrl": "https://etherscan.io/address/0x41f3032969313948c4ebf72d4f6a331b3a489253", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_472977", + "balanceRaw": "11311000000000000000000", + "balanceFormatted": "11311", + "lastTransferAt": null, + "username": "kirr0yal", + "displayName": "Yessil 🍄", + "fid": 472977, + "followers": 1178, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/abd68aa7-5ac2-4b00-abb3-2a9f9d77d000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x17e17d45f4b967c930f94856a89d10f3937d632c", + "etherscanUrl": "https://etherscan.io/address/0x17e17d45f4b967c930f94856a89d10f3937d632c", + "xHandle": "kirr0yal", + "xUrl": "https://twitter.com/kirr0yal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5255fb6e58e5cd8e157b43cab10b2b6192ab1691", + "balanceRaw": "11232675403470541445542", + "balanceFormatted": "11232.675403470541445542", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5255fb6e58e5cd8e157b43cab10b2b6192ab1691", + "etherscanUrl": "https://etherscan.io/address/0x5255fb6e58e5cd8e157b43cab10b2b6192ab1691", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x99f63dedd180fb394c55cdbd3b961bdbfea9d2c7", + "balanceRaw": "11126837359098185185184", + "balanceFormatted": "11126.837359098185185184", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x99f63dedd180fb394c55cdbd3b961bdbfea9d2c7", + "etherscanUrl": "https://etherscan.io/address/0x99f63dedd180fb394c55cdbd3b961bdbfea9d2c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_206967", + "balanceRaw": "11111000312913000000000", + "balanceFormatted": "11111.000312913", + "lastTransferAt": null, + "username": "netnose", + "displayName": "Mirko 🔵🟡 .⌐◨-◨", + "fid": 206967, + "followers": 2510, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/998136d4-792c-481b-363e-6a369c116500/original", + "ensName": "netnose.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4d1fd46f87449ffe235e3fce21df8a9bf8bd9206", + "etherscanUrl": "https://etherscan.io/address/0x4d1fd46f87449ffe235e3fce21df8a9bf8bd9206", + "xHandle": "netnose", + "xUrl": "https://twitter.com/netnose", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_14012", + "balanceRaw": "10984286144119983113807", + "balanceFormatted": "10984.286144119983113807", + "lastTransferAt": null, + "username": "amack.eth", + "displayName": "Nate Amack", + "fid": 14012, + "followers": 95, + "pfpUrl": "https://i.imgur.com/Pr39Igr.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60b8d507ff5f58a2a974c75363e22dd1ae51f807", + "etherscanUrl": "https://etherscan.io/address/0x60b8d507ff5f58a2a974c75363e22dd1ae51f807", + "xHandle": "nate_amack", + "xUrl": "https://twitter.com/nate_amack", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_15069", + "balanceRaw": "10681536315901023890800", + "balanceFormatted": "10681.5363159010238908", + "lastTransferAt": null, + "username": "nadiecito.eth", + "displayName": "Nadie ⌐◨-◨ (amigo 82)", + "fid": 15069, + "followers": 3413, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9d7feac4-b60b-451f-cdd4-307b1e825500/original", + "ensName": "nadiecito.eth", + "ensAvatarUrl": "https://i.imgur.com/x4Hjca6.jpg", + "primaryAddress": "0x4e2a3a65d0e2bcdb507a70fe2d3fc5dff464aa25", + "etherscanUrl": "https://etherscan.io/address/0x4e2a3a65d0e2bcdb507a70fe2d3fc5dff464aa25", + "xHandle": "ningunartista", + "xUrl": "https://twitter.com/ningunartista", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe7f525dd1bc6d748ae4d7f21d31e54741e05e110", + "balanceRaw": "10243313050572085123576", + "balanceFormatted": "10243.313050572085123576", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7f525dd1bc6d748ae4d7f21d31e54741e05e110", + "etherscanUrl": "https://etherscan.io/address/0xe7f525dd1bc6d748ae4d7f21d31e54741e05e110", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_2736", + "balanceRaw": "9362325841237457413827", + "balanceFormatted": "9362.325841237457413827", + "lastTransferAt": null, + "username": "annoushka.eth", + "displayName": "annoushka", + "fid": 2736, + "followers": 14689, + "pfpUrl": "https://i.imgur.com/C9MzmTN.jpg", + "ensName": "annoushka.eth", + "ensAvatarUrl": "https://euc.li/annoushka.eth", + "primaryAddress": "0x1b733924da0584c1c90c39c48feb4317cf477b50", + "etherscanUrl": "https://etherscan.io/address/0x1b733924da0584c1c90c39c48feb4317cf477b50", + "xHandle": "annoushkaxyz", + "xUrl": "https://twitter.com/annoushkaxyz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x221e438e4a8fc6569457bae62cbccdb8b5b02a93", + "balanceRaw": "9324358513707715607280", + "balanceFormatted": "9324.35851370771560728", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "blockpal.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x221e438e4a8fc6569457bae62cbccdb8b5b02a93", + "etherscanUrl": "https://etherscan.io/address/0x221e438e4a8fc6569457bae62cbccdb8b5b02a93", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe1a7e89e47db49e86d45bb2a1b360c6a014c673d", + "balanceRaw": "9241089973265532783115", + "balanceFormatted": "9241.089973265532783115", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1a7e89e47db49e86d45bb2a1b360c6a014c673d", + "etherscanUrl": "https://etherscan.io/address/0xe1a7e89e47db49e86d45bb2a1b360c6a014c673d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214447", + "balanceRaw": "8981702901992524716175", + "balanceFormatted": "8981.702901992524716175", + "lastTransferAt": null, + "username": "yes2crypto.eth", + "displayName": "YES2Crypto 🎩 🟪🟡", + "fid": 214447, + "followers": 21249, + "pfpUrl": "https://i.imgur.com/dBoVmnG.jpg", + "ensName": "yes2crypto.eth", + "ensAvatarUrl": "https://euc.li/yes2crypto.eth", + "primaryAddress": "0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "etherscanUrl": "https://etherscan.io/address/0xe068579e46ca32a7ed3d51f217fcc5a0d829fca0", + "xHandle": "yes2crypto1", + "xUrl": "https://twitter.com/yes2crypto1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3aa5905b6189233dd53addc235d4d6737174c16a", + "balanceRaw": "8773969389883141021132", + "balanceFormatted": "8773.969389883141021132", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3aa5905b6189233dd53addc235d4d6737174c16a", + "etherscanUrl": "https://etherscan.io/address/0x3aa5905b6189233dd53addc235d4d6737174c16a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_712277", + "balanceRaw": "8309617876449042449947", + "balanceFormatted": "8309.617876449042449947", + "lastTransferAt": null, + "username": "!712277", + "displayName": null, + "fid": 712277, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdff92a1d3c7832cbcc762ee5f326679dd801648e", + "etherscanUrl": "https://etherscan.io/address/0xdff92a1d3c7832cbcc762ee5f326679dd801648e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x59708a095fb44a9054f9ba3b2fb82fce07b182c1", + "balanceRaw": "8232435778499093305136", + "balanceFormatted": "8232.435778499093305136", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59708a095fb44a9054f9ba3b2fb82fce07b182c1", + "etherscanUrl": "https://etherscan.io/address/0x59708a095fb44a9054f9ba3b2fb82fce07b182c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21458", + "balanceRaw": "8205323810965081981164", + "balanceFormatted": "8205.323810965081981164", + "lastTransferAt": null, + "username": "pot", + "displayName": "Pot🫖", + "fid": 21458, + "followers": 37, + "pfpUrl": "https://i.imgur.com/45ohFPC.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65268d4fb73544b6056fa4f4bf20fc90e0b12a80", + "etherscanUrl": "https://etherscan.io/address/0x65268d4fb73544b6056fa4f4bf20fc90e0b12a80", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212348", + "balanceRaw": "7941176470588235293800", + "balanceFormatted": "7941.1764705882352938", + "lastTransferAt": null, + "username": "dylang", + "displayName": "DylanΞGra₿owski", + "fid": 212348, + "followers": 972, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b776d2c5-30c1-4b7e-244c-7d87510fd900/original", + "ensName": "goldendylan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6123c6091d1e87bb7509407cd46c940097e0bc2c", + "etherscanUrl": "https://etherscan.io/address/0x6123c6091d1e87bb7509407cd46c940097e0bc2c", + "xHandle": "grabowskidylan", + "xUrl": "https://twitter.com/grabowskidylan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe29f5a28b46a390e917930b3b0be6dab20eceeb4", + "balanceRaw": "7495355298468310003845", + "balanceFormatted": "7495.355298468310003845", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe29f5a28b46a390e917930b3b0be6dab20eceeb4", + "etherscanUrl": "https://etherscan.io/address/0xe29f5a28b46a390e917930b3b0be6dab20eceeb4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1ccb60667f4c90f76eb3b44408b01982c71669e4", + "balanceRaw": "7343904324961039257532", + "balanceFormatted": "7343.904324961039257532", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1ccb60667f4c90f76eb3b44408b01982c71669e4", + "etherscanUrl": "https://etherscan.io/address/0x1ccb60667f4c90f76eb3b44408b01982c71669e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x04f9432e0ee95c959b4541e17a6f882e87ec9db7", + "balanceRaw": "7009345794000000000000", + "balanceFormatted": "7009.345794", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x04f9432e0ee95c959b4541e17a6f882e87ec9db7", + "etherscanUrl": "https://etherscan.io/address/0x04f9432e0ee95c959b4541e17a6f882e87ec9db7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7308", + "balanceRaw": "7009345794000000000000", + "balanceFormatted": "7009.345794", + "lastTransferAt": null, + "username": "ahmad", + "displayName": "Ahmad", + "fid": 7308, + "followers": 164, + "pfpUrl": "https://i.imgur.com/RiKXtRt.jpg", + "ensName": "aabugosh.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x838ec81d3fd6e6a7c73c072bb8dc2ed337e7f47a", + "etherscanUrl": "https://etherscan.io/address/0x838ec81d3fd6e6a7c73c072bb8dc2ed337e7f47a", + "xHandle": "aabugosh", + "xUrl": "https://twitter.com/aabugosh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2ed0aa38466895e26933ff3d70857d06c80f7dd2", + "balanceRaw": "7000000000000000000000", + "balanceFormatted": "7000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ed0aa38466895e26933ff3d70857d06c80f7dd2", + "etherscanUrl": "https://etherscan.io/address/0x2ed0aa38466895e26933ff3d70857d06c80f7dd2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7afa9d836d2fccf172b66622625e56404e465dbd", + "balanceRaw": "6693088362403180201291", + "balanceFormatted": "6693.088362403180201291", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7afa9d836d2fccf172b66622625e56404e465dbd", + "etherscanUrl": "https://etherscan.io/address/0x7afa9d836d2fccf172b66622625e56404e465dbd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb502bcf27d3ad34ae6a26156612fbba3245f0923", + "balanceRaw": "6670616442896172724420", + "balanceFormatted": "6670.61644289617272442", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb502bcf27d3ad34ae6a26156612fbba3245f0923", + "etherscanUrl": "https://etherscan.io/address/0xb502bcf27d3ad34ae6a26156612fbba3245f0923", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb9a24f5b63cc41def4ac66237e5284c9c18cbed0", + "balanceRaw": "6654436797536028220214", + "balanceFormatted": "6654.436797536028220214", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb9a24f5b63cc41def4ac66237e5284c9c18cbed0", + "etherscanUrl": "https://etherscan.io/address/0xb9a24f5b63cc41def4ac66237e5284c9c18cbed0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1044545", + "balanceRaw": "6614517905842931271548", + "balanceFormatted": "6614.517905842931271548", + "lastTransferAt": null, + "username": "swarthyhatter", + "displayName": "SwarthyHatter", + "fid": 1044545, + "followers": 227, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7f1aa2f-bef0-4e59-0b69-97125a1e6000/original", + "ensName": "swarthyhatter.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8463387dfbf40b8c487e24e015b291b3b75a2f89", + "etherscanUrl": "https://etherscan.io/address/0x8463387dfbf40b8c487e24e015b291b3b75a2f89", + "xHandle": "swarthyhatter", + "xUrl": "https://twitter.com/swarthyhatter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_263648", + "balanceRaw": "6332698233871234964350", + "balanceFormatted": "6332.69823387123496435", + "lastTransferAt": null, + "username": "fattybuthappy", + "displayName": "Fattybuthappy", + "fid": 263648, + "followers": 4886, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6100d8f1-e27a-4415-a694-94ba8f8add00/original", + "ensName": "fattybuthappy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x14935b6b19c0b4b3a7f68d9b8e4e8652315759d0", + "etherscanUrl": "https://etherscan.io/address/0x14935b6b19c0b4b3a7f68d9b8e4e8652315759d0", + "xHandle": "fattybuthappyy", + "xUrl": "https://twitter.com/fattybuthappyy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_6351", + "balanceRaw": "6250253882068534696733", + "balanceFormatted": "6250.253882068534696733", + "lastTransferAt": null, + "username": "morereese", + "displayName": "moreReese", + "fid": 6351, + "followers": 45526, + "pfpUrl": "https://i.seadn.io/gae/md2a4dECvBrjQnYWrm-nyI3hU7G7-NXVUtD1rlQ2VhBhIiLVSyvzEdzndGGclI9AMZeEkOg8TBAe1q0EtMQ1BjiYzmj8emcLXKZahpQ?w=500&auto=format", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x794d961eda9163f46095dc24b6c1a1774b684551", + "etherscanUrl": "https://etherscan.io/address/0x794d961eda9163f46095dc24b6c1a1774b684551", + "xHandle": "more_reese", + "xUrl": "https://twitter.com/more_reese", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x164deb4d5917cfd0627289e142171a4af49a33d1", + "balanceRaw": "6020991756029644435424", + "balanceFormatted": "6020.991756029644435424", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x164deb4d5917cfd0627289e142171a4af49a33d1", + "etherscanUrl": "https://etherscan.io/address/0x164deb4d5917cfd0627289e142171a4af49a33d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd928ac6176543b3f8cade0278662be2d10a3449c", + "balanceRaw": "6000000000000000000000", + "balanceFormatted": "6000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd928ac6176543b3f8cade0278662be2d10a3449c", + "etherscanUrl": "https://etherscan.io/address/0xd928ac6176543b3f8cade0278662be2d10a3449c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_267374", + "balanceRaw": "5983199122873545088570", + "balanceFormatted": "5983.19912287354508857", + "lastTransferAt": null, + "username": "webvr.eth", + "displayName": "webvr.base.eth", + "fid": 267374, + "followers": 359, + "pfpUrl": "https://i.imgur.com/gmb8Jr3.png", + "ensName": "webvr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcc849e340acddc90b389032c04ab8c0b82a4d8b4", + "etherscanUrl": "https://etherscan.io/address/0xcc849e340acddc90b389032c04ab8c0b82a4d8b4", + "xHandle": "webvr_eth", + "xUrl": "https://twitter.com/webvr_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaf692c931f645d3915b8ef9aa7cb9b48d79cea50", + "balanceRaw": "5837963000732307471480", + "balanceFormatted": "5837.96300073230747148", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf692c931f645d3915b8ef9aa7cb9b48d79cea50", + "etherscanUrl": "https://etherscan.io/address/0xaf692c931f645d3915b8ef9aa7cb9b48d79cea50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x08f83e8860912f8c8186461ea00db5f6030c70f6", + "balanceRaw": "5828470348098747464832", + "balanceFormatted": "5828.470348098747464832", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08f83e8860912f8c8186461ea00db5f6030c70f6", + "etherscanUrl": "https://etherscan.io/address/0x08f83e8860912f8c8186461ea00db5f6030c70f6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x382ffce2287252f930e1c8dc9328dac5bf282ba1", + "balanceRaw": "5620386143426855323985", + "balanceFormatted": "5620.386143426855323985", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x382ffce2287252f930e1c8dc9328dac5bf282ba1", + "etherscanUrl": "https://etherscan.io/address/0x382ffce2287252f930e1c8dc9328dac5bf282ba1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6ed7f81208839e31e11840049201201c469a7a56", + "balanceRaw": "5349572666195962817081", + "balanceFormatted": "5349.572666195962817081", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "crypt0xninja.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6ed7f81208839e31e11840049201201c469a7a56", + "etherscanUrl": "https://etherscan.io/address/0x6ed7f81208839e31e11840049201201c469a7a56", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7200b61222b2127d168ddcfef5809ab0b72aa86b", + "balanceRaw": "5216966945781332805012", + "balanceFormatted": "5216.966945781332805012", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7200b61222b2127d168ddcfef5809ab0b72aa86b", + "etherscanUrl": "https://etherscan.io/address/0x7200b61222b2127d168ddcfef5809ab0b72aa86b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_215589", + "balanceRaw": "5111233182800982048768", + "balanceFormatted": "5111.233182800982048768", + "lastTransferAt": null, + "username": "listen2mm.eth", + "displayName": "MM", + "fid": 215589, + "followers": 2393, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4eb2d1e6-a7bd-4e17-e8f7-6e36ca0c9700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09a80a434a3ea1e247dabc7ec979b7392f34b510", + "etherscanUrl": "https://etherscan.io/address/0x09a80a434a3ea1e247dabc7ec979b7392f34b510", + "xHandle": "listen2mm", + "xUrl": "https://twitter.com/listen2mm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_942326", + "balanceRaw": "5056983160173107550548", + "balanceFormatted": "5056.983160173107550548", + "lastTransferAt": null, + "username": "mrbis", + "displayName": "SharmaX", + "fid": 942326, + "followers": 8, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0159a053-c5d4-4fbf-3b70-6f8e84fea300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7812710bf06a3dbc7b0d2024cff72c4c08bb5fa8", + "etherscanUrl": "https://etherscan.io/address/0x7812710bf06a3dbc7b0d2024cff72c4c08bb5fa8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18975", + "balanceRaw": "5002243725272669996298", + "balanceFormatted": "5002.243725272669996298", + "lastTransferAt": null, + "username": "taliskye", + "displayName": "Drake 🫘", + "fid": 18975, + "followers": 3319, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0def01a-2297-4a61-f81d-8379a0d54e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xabdc34f1def5ed2e60f72f34d67567b6d954e7e8", + "etherscanUrl": "https://etherscan.io/address/0xabdc34f1def5ed2e60f72f34d67567b6d954e7e8", + "xHandle": "taliskye_", + "xUrl": "https://twitter.com/taliskye_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdebb78d5d39d5e3450e532698d18c81b6c552d3a", + "balanceRaw": "5001867307367571621239", + "balanceFormatted": "5001.867307367571621239", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdebb78d5d39d5e3450e532698d18c81b6c552d3a", + "etherscanUrl": "https://etherscan.io/address/0xdebb78d5d39d5e3450e532698d18c81b6c552d3a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe126717e61a73fbb4f96175bb3ffafa7ac01f823", + "balanceRaw": "5000000000000000000000", + "balanceFormatted": "5000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "haaznick.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe126717e61a73fbb4f96175bb3ffafa7ac01f823", + "etherscanUrl": "https://etherscan.io/address/0xe126717e61a73fbb4f96175bb3ffafa7ac01f823", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "balanceRaw": "5000000000000000000000", + "balanceFormatted": "5000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dydymoon.sismo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "etherscanUrl": "https://etherscan.io/address/0xafe4043c9ffd31753c5be2b76dfc45aaa70ebd6f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x49072cd3bf4153da87d5eb30719bb32bda60884b", + "balanceRaw": "5000000000000000000000", + "balanceFormatted": "5000", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x49072cd3bf4153da87d5eb30719bb32bda60884b", + "etherscanUrl": "https://etherscan.io/address/0x49072cd3bf4153da87d5eb30719bb32bda60884b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7316", + "balanceRaw": "5000000000000000000000", + "balanceFormatted": "5000", + "lastTransferAt": null, + "username": "dydymoon", + "displayName": "dydymoon.eth .⌐◨-◨", + "fid": 7316, + "followers": 536, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c961106-d764-43c0-31bb-165333f7fb00/rectcrop3", + "ensName": "dydymoon.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x60e0d90123fec37a5a4007fa6520866d671e04fc", + "etherscanUrl": "https://etherscan.io/address/0x60e0d90123fec37a5a4007fa6520866d671e04fc", + "xHandle": "dydymoon1", + "xUrl": "https://twitter.com/dydymoon1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_9829", + "balanceRaw": "4969973808484440802315", + "balanceFormatted": "4969.973808484440802315", + "lastTransferAt": null, + "username": "tommyjo.eth", + "displayName": "TommyJo", + "fid": 9829, + "followers": 1708, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18696594-0e63-4cf0-3e3f-aa04b02ab300/original", + "ensName": "tommyjo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcfeb18eb97b60caf255f9ce31253a4a860405f6f", + "etherscanUrl": "https://etherscan.io/address/0xcfeb18eb97b60caf255f9ce31253a4a860405f6f", + "xHandle": "tommyjostuart", + "xUrl": "https://twitter.com/tommyjostuart", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x28b37d7f235fe68cf073beb87e78978bc38eecba", + "balanceRaw": "4880948241192168770362", + "balanceFormatted": "4880.948241192168770362", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "feelsrare.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x28b37d7f235fe68cf073beb87e78978bc38eecba", + "etherscanUrl": "https://etherscan.io/address/0x28b37d7f235fe68cf073beb87e78978bc38eecba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x50f5ceb114fbbb90a5b798a7478adc49fd4b18f1", + "balanceRaw": "4622116371642114730756", + "balanceFormatted": "4622.116371642114730756", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50f5ceb114fbbb90a5b798a7478adc49fd4b18f1", + "etherscanUrl": "https://etherscan.io/address/0x50f5ceb114fbbb90a5b798a7478adc49fd4b18f1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb0eac879f30ec042512876b4010a4b47d03bbb9c", + "balanceRaw": "4546638716922587600100", + "balanceFormatted": "4546.6387169225876001", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0eac879f30ec042512876b4010a4b47d03bbb9c", + "etherscanUrl": "https://etherscan.io/address/0xb0eac879f30ec042512876b4010a4b47d03bbb9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x69135ce4cc73e6e34b46788c13fd0fd4d446dcc6", + "balanceRaw": "4518140712109527799181", + "balanceFormatted": "4518.140712109527799181", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x69135ce4cc73e6e34b46788c13fd0fd4d446dcc6", + "etherscanUrl": "https://etherscan.io/address/0x69135ce4cc73e6e34b46788c13fd0fd4d446dcc6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ded9bf7f19251857259e825199f1a07cce5e858", + "balanceRaw": "4368495582586421791760", + "balanceFormatted": "4368.49558258642179176", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5ded9bf7f19251857259e825199f1a07cce5e858", + "etherscanUrl": "https://etherscan.io/address/0x5ded9bf7f19251857259e825199f1a07cce5e858", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_243897", + "balanceRaw": "4283602285428670105751", + "balanceFormatted": "4283.602285428670105751", + "lastTransferAt": null, + "username": "luke152", + "displayName": "Luke152", + "fid": 243897, + "followers": 52, + "pfpUrl": "https://i.imgur.com/KTUpUUb.jpg", + "ensName": "luke152.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x211b2bdd397e18ab4bb08656af798408f617e150", + "etherscanUrl": "https://etherscan.io/address/0x211b2bdd397e18ab4bb08656af798408f617e150", + "xHandle": "luke152", + "xUrl": "https://twitter.com/luke152", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x35cbcb479446dfc53f5af2c8fb08b65b495b1f97", + "balanceRaw": "4231733040174814586082", + "balanceFormatted": "4231.733040174814586082", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x35cbcb479446dfc53f5af2c8fb08b65b495b1f97", + "etherscanUrl": "https://etherscan.io/address/0x35cbcb479446dfc53f5af2c8fb08b65b495b1f97", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_226703", + "balanceRaw": "4216673997523405368689", + "balanceFormatted": "4216.673997523405368689", + "lastTransferAt": null, + "username": "!226703", + "displayName": null, + "fid": 226703, + "followers": 0, + "pfpUrl": null, + "ensName": "flow4.eth", + "ensAvatarUrl": "https://euc.li/flow4.eth", + "primaryAddress": "0x810816a0f73590d43160d6ec14399acb8124e4bb", + "etherscanUrl": "https://etherscan.io/address/0x810816a0f73590d43160d6ec14399acb8124e4bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc02427f0b937f9905c47ddcc661374e0a49c8f03", + "balanceRaw": "4154455125409830874157", + "balanceFormatted": "4154.455125409830874157", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "0002020000.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc02427f0b937f9905c47ddcc661374e0a49c8f03", + "etherscanUrl": "https://etherscan.io/address/0xc02427f0b937f9905c47ddcc661374e0a49c8f03", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf626e9a2fddbf55b0b1a87c56128a7ba6723a85a", + "balanceRaw": "4096170799972559989015", + "balanceFormatted": "4096.170799972559989015", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "frozzyreggy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf626e9a2fddbf55b0b1a87c56128a7ba6723a85a", + "etherscanUrl": "https://etherscan.io/address/0xf626e9a2fddbf55b0b1a87c56128a7ba6723a85a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_234321", + "balanceRaw": "4072061665457337884000", + "balanceFormatted": "4072.061665457337884", + "lastTransferAt": null, + "username": "stellaachenbach", + "displayName": "stellaachenbach", + "fid": 234321, + "followers": 2395, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/418ce659-72b2-4388-2f8f-54232799c100/original", + "ensName": "stellaachenbach.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe061c96b1630187fac6d340f968fcea2398f413d", + "etherscanUrl": "https://etherscan.io/address/0xe061c96b1630187fac6d340f968fcea2398f413d", + "xHandle": "stellaachenbach", + "xUrl": "https://twitter.com/stellaachenbach", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbc2d284b88c6171cee50ffc371527db2e4b435b2", + "balanceRaw": "3743000000000000000000", + "balanceFormatted": "3743", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbc2d284b88c6171cee50ffc371527db2e4b435b2", + "etherscanUrl": "https://etherscan.io/address/0xbc2d284b88c6171cee50ffc371527db2e4b435b2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x055085d57ec9d9750c3b28a25f6f3e520e7766e5", + "balanceRaw": "3729642868166453506137", + "balanceFormatted": "3729.642868166453506137", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x055085d57ec9d9750c3b28a25f6f3e520e7766e5", + "etherscanUrl": "https://etherscan.io/address/0x055085d57ec9d9750c3b28a25f6f3e520e7766e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_335640", + "balanceRaw": "3676714318817158174804", + "balanceFormatted": "3676.714318817158174804", + "lastTransferAt": null, + "username": "hibikilla.eth", + "displayName": "Hibikilla.base.eth", + "fid": 335640, + "followers": 202, + "pfpUrl": "https://i.imgur.com/tfarBaB.jpg", + "ensName": "hibikilla.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb46da1f59eccfade2eae30a841ca1937b49ba978", + "etherscanUrl": "https://etherscan.io/address/0xb46da1f59eccfade2eae30a841ca1937b49ba978", + "xHandle": "hbkl30", + "xUrl": "https://twitter.com/hbkl30", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_207250", + "balanceRaw": "3436781652012307331990", + "balanceFormatted": "3436.78165201230733199", + "lastTransferAt": null, + "username": "mekleo", + "displayName": "Mekleo", + "fid": 207250, + "followers": 33, + "pfpUrl": "https://i.imgur.com/h3KxOCi.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe0b07ae2c50cd448fafeeded068dc277300ab4ca", + "etherscanUrl": "https://etherscan.io/address/0xe0b07ae2c50cd448fafeeded068dc277300ab4ca", + "xHandle": "mak90z", + "xUrl": "https://twitter.com/mak90z", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_774000", + "balanceRaw": "3380926714858876207793", + "balanceFormatted": "3380.926714858876207793", + "lastTransferAt": null, + "username": "vasconsa", + "displayName": "Filipe Vasconcelos", + "fid": 774000, + "followers": 47, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69f3eefd-145d-4d90-11b6-c32b0def4700/rectcrop3", + "ensName": "vasconsa.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1273261b09dc30d0b6ce460d7cab5820fa42e38c", + "etherscanUrl": "https://etherscan.io/address/0x1273261b09dc30d0b6ce460d7cab5820fa42e38c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_388611", + "balanceRaw": "3350976461580225090826", + "balanceFormatted": "3350.976461580225090826", + "lastTransferAt": null, + "username": "defidaniel.eth", + "displayName": "DanielHeld", + "fid": 388611, + "followers": 14, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b3be3da-e355-4c21-d50f-233a9f901300/rectcrop3", + "ensName": "defidaniel.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd3a80a9bf950c9615b78d92aaef84f36fd844ebd", + "etherscanUrl": "https://etherscan.io/address/0xd3a80a9bf950c9615b78d92aaef84f36fd844ebd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x65c64aa96ba71741cc657ca464e3330778fa9696", + "balanceRaw": "3344244644278736196358", + "balanceFormatted": "3344.244644278736196358", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65c64aa96ba71741cc657ca464e3330778fa9696", + "etherscanUrl": "https://etherscan.io/address/0x65c64aa96ba71741cc657ca464e3330778fa9696", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18570", + "balanceRaw": "3261671051722272669418", + "balanceFormatted": "3261.671051722272669418", + "lastTransferAt": null, + "username": "qt", + "displayName": "qt", + "fid": 18570, + "followers": 32304, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e78e1f19-486d-412a-0339-68ab36c4e000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad3d6f4934faa8e317de00b6f88a54aecc17b2e3", + "etherscanUrl": "https://etherscan.io/address/0xad3d6f4934faa8e317de00b6f88a54aecc17b2e3", + "xHandle": "downtimemachine", + "xUrl": "https://twitter.com/downtimemachine", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x00000000009726632680fb29d3f7a9734e3010e2", + "balanceRaw": "3061135865100554555070", + "balanceFormatted": "3061.13586510055455507", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00000000009726632680fb29d3f7a9734e3010e2", + "etherscanUrl": "https://etherscan.io/address/0x00000000009726632680fb29d3f7a9734e3010e2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4e67ae20bb427cf04b8d13f8bfb5944d68a942b6", + "balanceRaw": "3008764623277580450004", + "balanceFormatted": "3008.764623277580450004", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4e67ae20bb427cf04b8d13f8bfb5944d68a942b6", + "etherscanUrl": "https://etherscan.io/address/0x4e67ae20bb427cf04b8d13f8bfb5944d68a942b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdbe981a0e21a536caecf8c56b00d890e9a1613ae", + "balanceRaw": "2941402029212329191480", + "balanceFormatted": "2941.40202921232919148", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdbe981a0e21a536caecf8c56b00d890e9a1613ae", + "etherscanUrl": "https://etherscan.io/address/0xdbe981a0e21a536caecf8c56b00d890e9a1613ae", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc3f40f7c38830a114f3302daf6bbb48a7a43313", + "balanceRaw": "2841429218631657961995", + "balanceFormatted": "2841.429218631657961995", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc3f40f7c38830a114f3302daf6bbb48a7a43313", + "etherscanUrl": "https://etherscan.io/address/0xdc3f40f7c38830a114f3302daf6bbb48a7a43313", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3b2534b8ea1f9a8bf9d9915b91bae673d161f2a5", + "balanceRaw": "2814907405024977244405", + "balanceFormatted": "2814.907405024977244405", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b2534b8ea1f9a8bf9d9915b91bae673d161f2a5", + "etherscanUrl": "https://etherscan.io/address/0x3b2534b8ea1f9a8bf9d9915b91bae673d161f2a5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_538839", + "balanceRaw": "2730375426621160409600", + "balanceFormatted": "2730.3754266211604096", + "lastTransferAt": null, + "username": "skatehive", + "displayName": "Skatehive", + "fid": 538839, + "followers": 86, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26f97e10-881a-49da-7420-cddea1906b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe7b89d71f3edf63a211c3178f6a9f6a5dd9c2628", + "etherscanUrl": "https://etherscan.io/address/0xe7b89d71f3edf63a211c3178f6a9f6a5dd9c2628", + "xHandle": "skate_hive", + "xUrl": "https://twitter.com/skate_hive", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b480f79d77524588e29fbdbb3454f66279b16a4", + "balanceRaw": "2715556263963766071892", + "balanceFormatted": "2715.556263963766071892", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b480f79d77524588e29fbdbb3454f66279b16a4", + "etherscanUrl": "https://etherscan.io/address/0x0b480f79d77524588e29fbdbb3454f66279b16a4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192317", + "balanceRaw": "2623993404911189296478", + "balanceFormatted": "2623.993404911189296478", + "lastTransferAt": null, + "username": "0xvanz.eth", + "displayName": "0xVanz👁️🚪🔄🎩", + "fid": 192317, + "followers": 714, + "pfpUrl": "https://i.imgur.com/BJUhRaE.jpg", + "ensName": "0xvanz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x15a1bd808ef58fa10f4dd759d60ec703cf34f351", + "etherscanUrl": "https://etherscan.io/address/0x15a1bd808ef58fa10f4dd759d60ec703cf34f351", + "xHandle": "pinitdotnet", + "xUrl": "https://twitter.com/pinitdotnet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x23cb5f48fa3f4502232f3442637f90e8e3355701", + "balanceRaw": "2602459404150362924882", + "balanceFormatted": "2602.459404150362924882", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x23cb5f48fa3f4502232f3442637f90e8e3355701", + "etherscanUrl": "https://etherscan.io/address/0x23cb5f48fa3f4502232f3442637f90e8e3355701", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7d20ab6d8af50d87a5e8def46e48f4d7dc2ea5c7", + "balanceRaw": "2551071147790758494006", + "balanceFormatted": "2551.071147790758494006", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d20ab6d8af50d87a5e8def46e48f4d7dc2ea5c7", + "etherscanUrl": "https://etherscan.io/address/0x7d20ab6d8af50d87a5e8def46e48f4d7dc2ea5c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1159784", + "balanceRaw": "2500000000000000000000", + "balanceFormatted": "2500", + "lastTransferAt": null, + "username": "cryptokort", + "displayName": "Crypto Kort", + "fid": 1159784, + "followers": 1, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b421f559-eca6-44b8-46ab-50059f744300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3846b580a81f98972034e62a5b6ef3c28914d567", + "etherscanUrl": "https://etherscan.io/address/0x3846b580a81f98972034e62a5b6ef3c28914d567", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530196", + "balanceRaw": "2432373766942123354369", + "balanceFormatted": "2432.373766942123354369", + "lastTransferAt": null, + "username": "rekoshet.eth", + "displayName": "Erdenejargal ", + "fid": 530196, + "followers": 38, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fcfedec7-b350-4583-ebfc-4a1723cf6700/original", + "ensName": "rekoshet.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe80e72ef1d8481ad04b16b166a684494bab8cbdb", + "etherscanUrl": "https://etherscan.io/address/0xe80e72ef1d8481ad04b16b166a684494bab8cbdb", + "xHandle": "rekoshet_14", + "xUrl": "https://twitter.com/rekoshet_14", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_504662", + "balanceRaw": "2370283029212567911677", + "balanceFormatted": "2370.283029212567911677", + "lastTransferAt": null, + "username": "prodpran", + "displayName": "Prodpran", + "fid": 504662, + "followers": 332, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac066e8e-285a-49b4-58c1-f5d146c0e400/rectcrop3", + "ensName": "prodpran.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x10972013a83053ffd2e2c6f7add59067eb32c192", + "etherscanUrl": "https://etherscan.io/address/0x10972013a83053ffd2e2c6f7add59067eb32c192", + "xHandle": "mrnaipiaw1978", + "xUrl": "https://twitter.com/mrnaipiaw1978", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x19ceead7105607cd444f5ad10dd51356436095a1", + "balanceRaw": "2359714362859902791829", + "balanceFormatted": "2359.714362859902791829", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x19ceead7105607cd444f5ad10dd51356436095a1", + "etherscanUrl": "https://etherscan.io/address/0x19ceead7105607cd444f5ad10dd51356436095a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_862549", + "balanceRaw": "2348700655307295466827", + "balanceFormatted": "2348.700655307295466827", + "lastTransferAt": null, + "username": "!862549", + "displayName": "d3rwisj", + "fid": 862549, + "followers": 0, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/pink.jpg", + "ensName": "d3rwisj.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xeb0e6ecd0e78b0a84ecd9663a041f453c454a99d", + "etherscanUrl": "https://etherscan.io/address/0xeb0e6ecd0e78b0a84ecd9663a041f453c454a99d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_712227", + "balanceRaw": "2324099716928923743215", + "balanceFormatted": "2324.099716928923743215", + "lastTransferAt": null, + "username": "sehajm", + "displayName": "Sehaj Mehta", + "fid": 712227, + "followers": 23, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/444e58b0-1478-4fcf-f52e-2eee2bcd7500/rectcrop3", + "ensName": "sehajm.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf4ec11956f7b7a6a15c159b14e49491c6ca05935", + "etherscanUrl": "https://etherscan.io/address/0xf4ec11956f7b7a6a15c159b14e49491c6ca05935", + "xHandle": "smcrypto29", + "xUrl": "https://twitter.com/smcrypto29", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13089", + "balanceRaw": "2314000000000000000000", + "balanceFormatted": "2314", + "lastTransferAt": null, + "username": "arjantupan", + "displayName": "Arjan | That Poetry Guy", + "fid": 13089, + "followers": 49377, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a1532956-4541-4f56-c92a-1c1c90292600/original", + "ensName": "arjantupan.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/bafybeiehgvmeyv7iztfnamsbvwpg56tw4of5svcjzclzuofanvyvpbenea", + "primaryAddress": "0x4a90f5a9401158a70f5f307aa13ff0b0e62c7b51", + "etherscanUrl": "https://etherscan.io/address/0x4a90f5a9401158a70f5f307aa13ff0b0e62c7b51", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_289789", + "balanceRaw": "2249793182918345354700", + "balanceFormatted": "2249.7931829183453547", + "lastTransferAt": null, + "username": "schlummer", + "displayName": "schlummer.base.eth", + "fid": 289789, + "followers": 544, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a095f25-0572-409c-14fd-c33244f92e00/original", + "ensName": "schlummer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x02acee69446db5dd5825bbddef7c0aeada05cbbf", + "etherscanUrl": "https://etherscan.io/address/0x02acee69446db5dd5825bbddef7c0aeada05cbbf", + "xHandle": "schlummerx", + "xUrl": "https://twitter.com/schlummerx", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x55d1a5f0028c04b5d2a01ee886ebe379b788d078", + "balanceRaw": "2248004163249619353812", + "balanceFormatted": "2248.004163249619353812", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55d1a5f0028c04b5d2a01ee886ebe379b788d078", + "etherscanUrl": "https://etherscan.io/address/0x55d1a5f0028c04b5d2a01ee886ebe379b788d078", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2394a5faaa90936be901c9b02d9c03d863de2647", + "balanceRaw": "2079857077397666881639", + "balanceFormatted": "2079.857077397666881639", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2394a5faaa90936be901c9b02d9c03d863de2647", + "etherscanUrl": "https://etherscan.io/address/0x2394a5faaa90936be901c9b02d9c03d863de2647", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_527313", + "balanceRaw": "2048825833231869034670", + "balanceFormatted": "2048.82583323186903467", + "lastTransferAt": null, + "username": "nounspacetom", + "displayName": "nounspaceTom.eth", + "fid": 527313, + "followers": 9259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/46134281-9cbd-431e-01cc-d128c7695700/original", + "ensName": "nounspacetom.eth", + "ensAvatarUrl": "https://euc.li/nounspacetom.eth", + "primaryAddress": "0xbdadb758612d6dda15b243ca20afc6314d2a3560", + "etherscanUrl": "https://etherscan.io/address/0xbdadb758612d6dda15b243ca20afc6314d2a3560", + "xHandle": "nounspacetom", + "xUrl": "https://twitter.com/nounspacetom", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8e8913197114c911f13cfbfcbbd138c1dc74b964", + "balanceRaw": "1996394678050984806485", + "balanceFormatted": "1996.394678050984806485", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e8913197114c911f13cfbfcbbd138c1dc74b964", + "etherscanUrl": "https://etherscan.io/address/0x8e8913197114c911f13cfbfcbbd138c1dc74b964", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_7759", + "balanceRaw": "1848330157338466136978", + "balanceFormatted": "1848.330157338466136978", + "lastTransferAt": null, + "username": "leoclark.eth", + "displayName": "leoclark.base.eth.⌐◨-◨🎩", + "fid": 7759, + "followers": 4103, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762140241/IMG_0337.jpg.jpg", + "ensName": "leoclark.eth", + "ensAvatarUrl": "https://ipfs.io/ipfs/bafybeibyskam7mrp4dg3oq7mloc2kap5a7b4nmsy4vyxqp6ezmsgadmai4", + "primaryAddress": "0x1d50a3e9adc55c6ca4ce7cecae2ec5f61f143dcc", + "etherscanUrl": "https://etherscan.io/address/0x1d50a3e9adc55c6ca4ce7cecae2ec5f61f143dcc", + "xHandle": "leoclark", + "xUrl": "https://twitter.com/leoclark", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212703", + "balanceRaw": "1841003105334122363242", + "balanceFormatted": "1841.003105334122363242", + "lastTransferAt": null, + "username": "civilmonkey", + "displayName": "civil🍄💚🫂", + "fid": 212703, + "followers": 3563, + "pfpUrl": "https://i.imgur.com/biJ4sUV.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3174833a698081b8d918635b2e456507f1176c0f", + "etherscanUrl": "https://etherscan.io/address/0x3174833a698081b8d918635b2e456507f1176c0f", + "xHandle": "civilmonkey", + "xUrl": "https://twitter.com/civilmonkey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212078", + "balanceRaw": "1802000000000000000000", + "balanceFormatted": "1802", + "lastTransferAt": null, + "username": "spatializes", + "displayName": "spatializes", + "fid": 212078, + "followers": 212, + "pfpUrl": "https://i.imgur.com/XNIOZHM.jpg", + "ensName": "spatializes.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd55fda1336d02553c3ec7437c231e073b7bb81d9", + "etherscanUrl": "https://etherscan.io/address/0xd55fda1336d02553c3ec7437c231e073b7bb81d9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_248148", + "balanceRaw": "1706484641638225256000", + "balanceFormatted": "1706.484641638225256", + "lastTransferAt": null, + "username": "bgr", + "displayName": "bgr", + "fid": 248148, + "followers": 30, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a170c13-b9c7-471c-fc99-c6fae5196600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62ccd60be398cc1ebcaee9d9e9d0c03dc73564b2", + "etherscanUrl": "https://etherscan.io/address/0x62ccd60be398cc1ebcaee9d9e9d0c03dc73564b2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdeff0ee714ed13ad82a2a43a1e7795998f2fba1f", + "balanceRaw": "1661044737664134328880", + "balanceFormatted": "1661.04473766413432888", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdeff0ee714ed13ad82a2a43a1e7795998f2fba1f", + "etherscanUrl": "https://etherscan.io/address/0xdeff0ee714ed13ad82a2a43a1e7795998f2fba1f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7c619f17cc03264204e5c5b85ccc6c26b67612a1", + "balanceRaw": "1588328061817350627134", + "balanceFormatted": "1588.328061817350627134", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c619f17cc03264204e5c5b85ccc6c26b67612a1", + "etherscanUrl": "https://etherscan.io/address/0x7c619f17cc03264204e5c5b85ccc6c26b67612a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad9565b63763fea1ced4453a4834685832b36c78", + "balanceRaw": "1557667123168424388409", + "balanceFormatted": "1557.667123168424388409", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad9565b63763fea1ced4453a4834685832b36c78", + "etherscanUrl": "https://etherscan.io/address/0xad9565b63763fea1ced4453a4834685832b36c78", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_187956", + "balanceRaw": "1516403797376155211441", + "balanceFormatted": "1516.403797376155211441", + "lastTransferAt": null, + "username": "khunchan", + "displayName": "khunchan.base.eth", + "fid": 187956, + "followers": 734, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9d601c0-ecfd-40c6-bf91-45c46ae9c700/original", + "ensName": "khunchan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdfdcb388be6fd838f3fb53c56f5d79f69b981e06", + "etherscanUrl": "https://etherscan.io/address/0xdfdcb388be6fd838f3fb53c56f5d79f69b981e06", + "xHandle": "key_sero", + "xUrl": "https://twitter.com/key_sero", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0853cd6c0a69cc7d544791890b357c013be36038", + "balanceRaw": "1500000000000000000000", + "balanceFormatted": "1500", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0853cd6c0a69cc7d544791890b357c013be36038", + "etherscanUrl": "https://etherscan.io/address/0x0853cd6c0a69cc7d544791890b357c013be36038", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf217f4c7a3f1630b6ad4e1e8182ef39b9f252f1e", + "balanceRaw": "1488399235384821177970", + "balanceFormatted": "1488.39923538482117797", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf217f4c7a3f1630b6ad4e1e8182ef39b9f252f1e", + "etherscanUrl": "https://etherscan.io/address/0xf217f4c7a3f1630b6ad4e1e8182ef39b9f252f1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_316410", + "balanceRaw": "1476706098014488625813", + "balanceFormatted": "1476.706098014488625813", + "lastTransferAt": null, + "username": "rittichai", + "displayName": "Rittichai.base.eth", + "fid": 316410, + "followers": 1161, + "pfpUrl": "https://i.imgur.com/9Ehxfql.jpg", + "ensName": "rittichai.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf1daa60cbb28fd4521a42250f735d1675eb993e0", + "etherscanUrl": "https://etherscan.io/address/0xf1daa60cbb28fd4521a42250f735d1675eb993e0", + "xHandle": "naipiaw", + "xUrl": "https://twitter.com/naipiaw", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_623610", + "balanceRaw": "1474652173913000000000", + "balanceFormatted": "1474.652173913", + "lastTransferAt": null, + "username": "cheer-up", + "displayName": "cheer-up.⌐◨-◨", + "fid": 623610, + "followers": 1818, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d727a160-c6ec-473d-f2e8-dfb06f4a1000/original", + "ensName": "cheer-up.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xaf2c4c55b1bedddfa8a1ca0be864a04c51feec3c", + "etherscanUrl": "https://etherscan.io/address/0xaf2c4c55b1bedddfa8a1ca0be864a04c51feec3c", + "xHandle": "cheer_up_4", + "xUrl": "https://twitter.com/cheer_up_4", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_557199", + "balanceRaw": "1474652173913000000000", + "balanceFormatted": "1474.652173913", + "lastTransferAt": null, + "username": "edunouns", + "displayName": "Edu Nouns", + "fid": 557199, + "followers": 213, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce7a72c5-4bee-4821-f423-9191c5315600/rectcrop3", + "ensName": "edunouns.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe088812124c37bec146ab719fce11a9e67f2aa5a", + "etherscanUrl": "https://etherscan.io/address/0xe088812124c37bec146ab719fce11a9e67f2aa5a", + "xHandle": "edunouns", + "xUrl": "https://twitter.com/edunouns", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x74eca6b366964f5f1e9ab3132bdfa58c05bcb78a", + "balanceRaw": "1443707806301699309485", + "balanceFormatted": "1443.707806301699309485", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "sandboxvrafrica.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x74eca6b366964f5f1e9ab3132bdfa58c05bcb78a", + "etherscanUrl": "https://etherscan.io/address/0x74eca6b366964f5f1e9ab3132bdfa58c05bcb78a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_318607", + "balanceRaw": "1435389956573218123979", + "balanceFormatted": "1435.389956573218123979", + "lastTransferAt": null, + "username": "chamee", + "displayName": "Cha", + "fid": 318607, + "followers": 861, + "pfpUrl": "https://i.imgur.com/xR3rVdB.jpg", + "ensName": "konjoncha.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xfd376d97c6b0302fe3af497c9dbbfd3a0cd11715", + "etherscanUrl": "https://etherscan.io/address/0xfd376d97c6b0302fe3af497c9dbbfd3a0cd11715", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb42319dd5c343f6e6088553037cdca627d07a7bc", + "balanceRaw": "1394557391856746170733", + "balanceFormatted": "1394.557391856746170733", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb42319dd5c343f6e6088553037cdca627d07a7bc", + "etherscanUrl": "https://etherscan.io/address/0xb42319dd5c343f6e6088553037cdca627d07a7bc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb27c105d4af28a36d836f227a712a22e5dfb4cba", + "balanceRaw": "1306533771390661840798", + "balanceFormatted": "1306.533771390661840798", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "koisaysthings.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb27c105d4af28a36d836f227a712a22e5dfb4cba", + "etherscanUrl": "https://etherscan.io/address/0xb27c105d4af28a36d836f227a712a22e5dfb4cba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486238", + "balanceRaw": "1295881071568080297579", + "balanceFormatted": "1295.881071568080297579", + "lastTransferAt": null, + "username": "ponteguapa.eth", + "displayName": "ponteguapa", + "fid": 486238, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa2a5b32-114a-4248-024e-70357ef37700/original", + "ensName": "ponteguapa.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb4a9c474ee39abc69acaaf569f0ebaec0b0bacdd", + "etherscanUrl": "https://etherscan.io/address/0xb4a9c474ee39abc69acaaf569f0ebaec0b0bacdd", + "xHandle": "vibuster74", + "xUrl": "https://twitter.com/vibuster74", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_814250", + "balanceRaw": "1246649340889876945300", + "balanceFormatted": "1246.6493408898769453", + "lastTransferAt": null, + "username": "nogenta", + "displayName": "NoG3nta", + "fid": 814250, + "followers": 83, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/256f289e-d9c1-47e7-91c3-d76728979200/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd1195629d9ba1168591b8ecdec9abb1721fcc7d8", + "etherscanUrl": "https://etherscan.io/address/0xd1195629d9ba1168591b8ecdec9abb1721fcc7d8", + "xHandle": "nogenta_eth", + "xUrl": "https://twitter.com/nogenta_eth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_331697", + "balanceRaw": "1244081687233490417326", + "balanceFormatted": "1244.081687233490417326", + "lastTransferAt": null, + "username": "jouf81", + "displayName": "Tzouf 🥷🏼", + "fid": 331697, + "followers": 27, + "pfpUrl": "https://i.imgur.com/wjcmvRt.jpg", + "ensName": "jouf81.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbb41b3acdf7842b02087f11eed48615febcd116b", + "etherscanUrl": "https://etherscan.io/address/0xbb41b3acdf7842b02087f11eed48615febcd116b", + "xHandle": "jouf81", + "xUrl": "https://twitter.com/jouf81", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x962423cf747469fc35b3ff49dd0571a5c73f9c10", + "balanceRaw": "1224545313370819610145", + "balanceFormatted": "1224.545313370819610145", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x962423cf747469fc35b3ff49dd0571a5c73f9c10", + "etherscanUrl": "https://etherscan.io/address/0x962423cf747469fc35b3ff49dd0571a5c73f9c10", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_202681", + "balanceRaw": "1189551620351108294733", + "balanceFormatted": "1189.551620351108294733", + "lastTransferAt": null, + "username": "nftart", + "displayName": "Just Art", + "fid": 202681, + "followers": 15046, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/605f76b7-47af-497f-b488-211afd682800/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf7895c16e0ad32936a1361603a337ac3a437b4c5", + "etherscanUrl": "https://etherscan.io/address/0xf7895c16e0ad32936a1361603a337ac3a437b4c5", + "xHandle": "top_nft_art", + "xUrl": "https://twitter.com/top_nft_art", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_4448", + "balanceRaw": "1142871231220196066014", + "balanceFormatted": "1142.871231220196066014", + "lastTransferAt": null, + "username": "d4rkb3.eth", + "displayName": "d4rk", + "fid": 4448, + "followers": 224, + "pfpUrl": "https://i.imgur.com/wT2dmYB.jpg", + "ensName": "d4rkb3.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf403b1216ad709ef4db2fd2d75221502a8a20549", + "etherscanUrl": "https://etherscan.io/address/0xf403b1216ad709ef4db2fd2d75221502a8a20549", + "xHandle": "darkblu3c", + "xUrl": "https://twitter.com/darkblu3c", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_330701", + "balanceRaw": "1112483791582587660423", + "balanceFormatted": "1112.483791582587660423", + "lastTransferAt": null, + "username": "rpsl", + "displayName": "0", + "fid": 330701, + "followers": 159, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d93ee75-53b5-41aa-c85b-b8f86cc64800/original", + "ensName": "503886.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa0c197fbf8b9759f976c0c5e48946fc62fb965a4", + "etherscanUrl": "https://etherscan.io/address/0xa0c197fbf8b9759f976c0c5e48946fc62fb965a4", + "xHandle": "mm88crypto", + "xUrl": "https://twitter.com/mm88crypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_862185", + "balanceRaw": "1111000000000000000000", + "balanceFormatted": "1111", + "lastTransferAt": null, + "username": "aethernet", + "displayName": "Aether", + "fid": 862185, + "followers": 12183, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35af81fb-6e7f-42d9-b3f3-c3384899fe00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xded4257b636fcc216ed4727698152d811ef1130c", + "etherscanUrl": "https://etherscan.io/address/0xded4257b636fcc216ed4727698152d811ef1130c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_328698", + "balanceRaw": "1097822980057174737859", + "balanceFormatted": "1097.822980057174737859", + "lastTransferAt": null, + "username": "vunguyen3008", + "displayName": "VU NGUYEN", + "fid": 328698, + "followers": 138, + "pfpUrl": "https://i.imgur.com/znl8Pe1.jpg", + "ensName": "vunguyen3008.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc5c681ea91be0135078306a254e5db56dee13d92", + "etherscanUrl": "https://etherscan.io/address/0xc5c681ea91be0135078306a254e5db56dee13d92", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_202771", + "balanceRaw": "1083726742216309485888", + "balanceFormatted": "1083.726742216309485888", + "lastTransferAt": null, + "username": "sunbeam", + "displayName": "Sunbeam ", + "fid": 202771, + "followers": 124, + "pfpUrl": "https://i.imgur.com/VKuLqb7.jpg", + "ensName": "temoralamuerte.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x40de30ff4e238050c830656e31f5ae780e9271cd", + "etherscanUrl": "https://etherscan.io/address/0x40de30ff4e238050c830656e31f5ae780e9271cd", + "xHandle": "sunbeamx92", + "xUrl": "https://twitter.com/sunbeamx92", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd4eaa5e657c8b3349cb6becf8ac097839e9e7af5", + "balanceRaw": "1076402800933361204378", + "balanceFormatted": "1076.402800933361204378", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "bgrana.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd4eaa5e657c8b3349cb6becf8ac097839e9e7af5", + "etherscanUrl": "https://etherscan.io/address/0xd4eaa5e657c8b3349cb6becf8ac097839e9e7af5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x846caab289b5925ddaf673f6f7b82b01acf9f879", + "balanceRaw": "1036597511746403330211", + "balanceFormatted": "1036.597511746403330211", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x846caab289b5925ddaf673f6f7b82b01acf9f879", + "etherscanUrl": "https://etherscan.io/address/0x846caab289b5925ddaf673f6f7b82b01acf9f879", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21319", + "balanceRaw": "1021453875785230988194", + "balanceFormatted": "1021.453875785230988194", + "lastTransferAt": null, + "username": "!21319", + "displayName": null, + "fid": 21319, + "followers": 0, + "pfpUrl": null, + "ensName": "rocket777.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa788e0586409fa4eaf986e24604003adaa3dcc9d", + "etherscanUrl": "https://etherscan.io/address/0xa788e0586409fa4eaf986e24604003adaa3dcc9d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_278085", + "balanceRaw": "1000864345509894430942", + "balanceFormatted": "1000.864345509894430942", + "lastTransferAt": null, + "username": "ayomayowa", + "displayName": "ayomayowa", + "fid": 278085, + "followers": 2377, + "pfpUrl": "https://i.imgur.com/f7Q56IF.jpg", + "ensName": "ayomayowa.eth", + "ensAvatarUrl": "https://euc.li/ayomayowa.eth", + "primaryAddress": "0x29e6ce72d0a7c40631dfd1bb6746e9aeada974c1", + "etherscanUrl": "https://etherscan.io/address/0x29e6ce72d0a7c40631dfd1bb6746e9aeada974c1", + "xHandle": "ayomayowacrypto", + "xUrl": "https://twitter.com/ayomayowacrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_856286", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": "litbuilder", + "displayName": "Lit Builder 🎩", + "fid": 856286, + "followers": 494, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d37d9e0-fe75-4f5e-2db6-21e497b58f00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd7768632c14aadd4326047b9d9f282e42cac020c", + "etherscanUrl": "https://etherscan.io/address/0xd7768632c14aadd4326047b9d9f282e42cac020c", + "xHandle": "litbuilder1", + "xUrl": "https://twitter.com/litbuilder1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_345571", + "balanceRaw": "1000000000000000000000", + "balanceFormatted": "1000", + "lastTransferAt": null, + "username": "yodaone.eth", + "displayName": "yodaone.eth ", + "fid": 345571, + "followers": 72, + "pfpUrl": "https://i.imgur.com/eoiPizM.jpg", + "ensName": "yodaone.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x571e7e8df8953cb420c52fa41644114e5e47c5b5", + "etherscanUrl": "https://etherscan.io/address/0x571e7e8df8953cb420c52fa41644114e5e47c5b5", + "xHandle": "ogyodaone", + "xUrl": "https://twitter.com/ogyodaone", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcfd59c0f530db36eea8ccbfe744f01fe3556925e", + "balanceRaw": "986837309533815460331", + "balanceFormatted": "986.837309533815460331", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcfd59c0f530db36eea8ccbfe744f01fe3556925e", + "etherscanUrl": "https://etherscan.io/address/0xcfd59c0f530db36eea8ccbfe744f01fe3556925e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad01c20d5886137e056775af56915de824c8fce5", + "balanceRaw": "973356483735018347963", + "balanceFormatted": "973.356483735018347963", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad01c20d5886137e056775af56915de824c8fce5", + "etherscanUrl": "https://etherscan.io/address/0xad01c20d5886137e056775af56915de824c8fce5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_431977", + "balanceRaw": "971332872889719159555", + "balanceFormatted": "971.332872889719159555", + "lastTransferAt": null, + "username": "firebirdcoin", + "displayName": "Firebirdcoin", + "fid": 431977, + "followers": 12, + "pfpUrl": "https://i.imgur.com/nAtiHXr.jpg", + "ensName": "firebirdcoin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe1b429d26b7b281361db7cd61721749a06770032", + "etherscanUrl": "https://etherscan.io/address/0xe1b429d26b7b281361db7cd61721749a06770032", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x97a1ca841b4792068932d4224681f6f6fa22c549", + "balanceRaw": "955142912265696770478", + "balanceFormatted": "955.142912265696770478", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "sakhee.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x97a1ca841b4792068932d4224681f6f6fa22c549", + "etherscanUrl": "https://etherscan.io/address/0x97a1ca841b4792068932d4224681f6f6fa22c549", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x320a92f77be6f987a853555224e35add2f09ccbc", + "balanceRaw": "927700474893979617539", + "balanceFormatted": "927.700474893979617539", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "thepokemontradingcardgame.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x320a92f77be6f987a853555224e35add2f09ccbc", + "etherscanUrl": "https://etherscan.io/address/0x320a92f77be6f987a853555224e35add2f09ccbc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491871", + "balanceRaw": "926413613945948331831", + "balanceFormatted": "926.413613945948331831", + "lastTransferAt": null, + "username": "burakanavatan", + "displayName": "Burak", + "fid": 491871, + "followers": 254, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/009d318b-2b2a-4b3d-e889-bcd7a4a37600/original", + "ensName": "trbtc.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xeca33c8512218134c33458580c1616de2fb2a575", + "etherscanUrl": "https://etherscan.io/address/0xeca33c8512218134c33458580c1616de2fb2a575", + "xHandle": "araybaharat", + "xUrl": "https://twitter.com/araybaharat", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x37d1b8718007206c41454b5f1edce550d3b6eeb7", + "balanceRaw": "924786572737374256753", + "balanceFormatted": "924.786572737374256753", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x37d1b8718007206c41454b5f1edce550d3b6eeb7", + "etherscanUrl": "https://etherscan.io/address/0x37d1b8718007206c41454b5f1edce550d3b6eeb7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x72ad986ebac0246d2b3c565ab2a1ce3a14ce6f88", + "balanceRaw": "909000000000000000000", + "balanceFormatted": "909", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72ad986ebac0246d2b3c565ab2a1ce3a14ce6f88", + "etherscanUrl": "https://etherscan.io/address/0x72ad986ebac0246d2b3c565ab2a1ce3a14ce6f88", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe5b89fa771049df021dcf3817bfc756bb2f85f96", + "balanceRaw": "896366347250974840599", + "balanceFormatted": "896.366347250974840599", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe5b89fa771049df021dcf3817bfc756bb2f85f96", + "etherscanUrl": "https://etherscan.io/address/0xe5b89fa771049df021dcf3817bfc756bb2f85f96", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261208", + "balanceRaw": "861209556327117877196", + "balanceFormatted": "861.209556327117877196", + "lastTransferAt": null, + "username": "boby", + "displayName": "ボビーbase.eth", + "fid": 261208, + "followers": 72, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1760797640/IMG_3081.png.png", + "ensName": "bobyyyyyyyyyyyy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3853e65ec34c6fc8a37ba0c5831e1ea8a7272ae9", + "etherscanUrl": "https://etherscan.io/address/0x3853e65ec34c6fc8a37ba0c5831e1ea8a7272ae9", + "xHandle": "smilesangogo", + "xUrl": "https://twitter.com/smilesangogo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_537779", + "balanceRaw": "850976935140971750494", + "balanceFormatted": "850.976935140971750494", + "lastTransferAt": null, + "username": "mrdoublet22", + "displayName": "Anatoliy ", + "fid": 537779, + "followers": 37, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e77662ea-bb07-44cf-d421-4a79eeefdd00/rectcrop3", + "ensName": "mrdoublet.eth", + "ensAvatarUrl": "https://euc.li/mrdoublet.eth", + "primaryAddress": "0x546efdeb4741c0bb559f8f62d91f343446c3f8db", + "etherscanUrl": "https://etherscan.io/address/0x546efdeb4741c0bb559f8f62d91f343446c3f8db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4f82e73edb06d29ff62c91ec8f5ff06571bdeb29", + "balanceRaw": "849605852713039557181", + "balanceFormatted": "849.605852713039557181", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4f82e73edb06d29ff62c91ec8f5ff06571bdeb29", + "etherscanUrl": "https://etherscan.io/address/0x4f82e73edb06d29ff62c91ec8f5ff06571bdeb29", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_829061", + "balanceRaw": "846980391423284885849", + "balanceFormatted": "846.980391423284885849", + "lastTransferAt": null, + "username": "phananh", + "displayName": "PHAN ANH", + "fid": 829061, + "followers": 304, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75ca2b7f-c535-4a35-4182-a2128b028900/original", + "ensName": "cryptomph.eth", + "ensAvatarUrl": "https://euc.li/cryptomph.eth", + "primaryAddress": "0xfd4864add20ab57dc47c39f4f674c9ab3a1bea69", + "etherscanUrl": "https://etherscan.io/address/0xfd4864add20ab57dc47c39f4f674c9ab3a1bea69", + "xHandle": "vananhphan14", + "xUrl": "https://twitter.com/vananhphan14", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_363397", + "balanceRaw": "826459595617585794003", + "balanceFormatted": "826.459595617585794003", + "lastTransferAt": null, + "username": "hv111", + "displayName": "Hv111 \".base.eth\"", + "fid": 363397, + "followers": 172, + "pfpUrl": "https://i.imgur.com/stqrbx0.jpg", + "ensName": "vh111.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7175118cb683eabffb9e9e957aa2158285355f26", + "etherscanUrl": "https://etherscan.io/address/0x7175118cb683eabffb9e9e957aa2158285355f26", + "xHandle": "hoangkdc", + "xUrl": "https://twitter.com/hoangkdc", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_894421", + "balanceRaw": "821466415952386234948", + "balanceFormatted": "821.466415952386234948", + "lastTransferAt": null, + "username": "hakan5361", + "displayName": "Hakan", + "fid": 894421, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/734536f4-6906-4689-1615-6365f240e000/rectcrop3", + "ensName": "hakan536153.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd9fd37262a321190b50d6e63a3291d1c4bb1274f", + "etherscanUrl": "https://etherscan.io/address/0xd9fd37262a321190b50d6e63a3291d1c4bb1274f", + "xHandle": "hakanzbulut3", + "xUrl": "https://twitter.com/hakanzbulut3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6eca717e01a8d8754e40d6ad05c560f86256a284", + "balanceRaw": "795534460055002645018", + "balanceFormatted": "795.534460055002645018", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6eca717e01a8d8754e40d6ad05c560f86256a284", + "etherscanUrl": "https://etherscan.io/address/0x6eca717e01a8d8754e40d6ad05c560f86256a284", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_634947", + "balanceRaw": "779937150096871935298", + "balanceFormatted": "779.937150096871935298", + "lastTransferAt": null, + "username": "wolftoshi", + "displayName": "Wolf", + "fid": 634947, + "followers": 3, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/67754884-557d-4add-a178-1ee0b7fa9f00/rectcrop3", + "ensName": "crypto-enthusiast.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x25d2b399a9de37d88c3e0b76bd2d84e2ce49474e", + "etherscanUrl": "https://etherscan.io/address/0x25d2b399a9de37d88c3e0b76bd2d84e2ce49474e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb0b81dea76aecf9773dcf485ccbd85a1c86bcb37", + "balanceRaw": "778786968042249336304", + "balanceFormatted": "778.786968042249336304", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0b81dea76aecf9773dcf485ccbd85a1c86bcb37", + "etherscanUrl": "https://etherscan.io/address/0xb0b81dea76aecf9773dcf485ccbd85a1c86bcb37", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38f5e5b4da37531a6e85161e337e0238bb27aa90", + "balanceRaw": "778771530566123728728", + "balanceFormatted": "778.771530566123728728", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38f5e5b4da37531a6e85161e337e0238bb27aa90", + "etherscanUrl": "https://etherscan.io/address/0x38f5e5b4da37531a6e85161e337e0238bb27aa90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486079", + "balanceRaw": "775959416985859277155", + "balanceFormatted": "775.959416985859277155", + "lastTransferAt": null, + "username": "hyururu", + "displayName": "Hyururu 🎩🫂", + "fid": 486079, + "followers": 1622, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37aec976-f02f-474f-13e7-78573556fc00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd78dc29ae2caa0fa7b52388a86d69ffe9c12561b", + "etherscanUrl": "https://etherscan.io/address/0xd78dc29ae2caa0fa7b52388a86d69ffe9c12561b", + "xHandle": "newhyuru", + "xUrl": "https://twitter.com/newhyuru", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_706278", + "balanceRaw": "749656467468348194119", + "balanceFormatted": "749.656467468348194119", + "lastTransferAt": null, + "username": "anilaaron.eth", + "displayName": "Anil Aaron", + "fid": 706278, + "followers": 13, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21683e26-f0bf-47b5-a789-74344fb75200/rectcrop3", + "ensName": "anilaaron.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdfb34114abdb32d105a4551117a151c4fdf89a33", + "etherscanUrl": "https://etherscan.io/address/0xdfb34114abdb32d105a4551117a151c4fdf89a33", + "xHandle": "anil2878396", + "xUrl": "https://twitter.com/anil2878396", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_194450", + "balanceRaw": "736434440739577589673", + "balanceFormatted": "736.434440739577589673", + "lastTransferAt": null, + "username": "crypto-pakz", + "displayName": "Cryptopakz", + "fid": 194450, + "followers": 1277, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c4fab82-0b7e-4021-0907-fa6d71338100/original", + "ensName": "crypto-pakz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x730a33d7d3c1d4ad7c8c59e0dc93206a69269e77", + "etherscanUrl": "https://etherscan.io/address/0x730a33d7d3c1d4ad7c8c59e0dc93206a69269e77", + "xHandle": "pakzhunter", + "xUrl": "https://twitter.com/pakzhunter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_354796", + "balanceRaw": "727289612938536836842", + "balanceFormatted": "727.289612938536836842", + "lastTransferAt": null, + "username": "vitalit", + "displayName": "Vitali", + "fid": 354796, + "followers": 977, + "pfpUrl": "https://i.imgur.com/RU3Hwan.jpg", + "ensName": "vitalitycrypto.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x392649793856d87e5a0438efaebddbf5cc07126f", + "etherscanUrl": "https://etherscan.io/address/0x392649793856d87e5a0438efaebddbf5cc07126f", + "xHandle": "vitalityvk", + "xUrl": "https://twitter.com/vitalityvk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_213641", + "balanceRaw": "718998098550746088607", + "balanceFormatted": "718.998098550746088607", + "lastTransferAt": null, + "username": "ethjup", + "displayName": "ethjup.base.eth", + "fid": 213641, + "followers": 393, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761510685/IMG_5081.jpg.jpg", + "ensName": "47123.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xaebdeb21908351644984d7beb663f6eb87ab06ff", + "etherscanUrl": "https://etherscan.io/address/0xaebdeb21908351644984d7beb663f6eb87ab06ff", + "xHandle": "ethjup2", + "xUrl": "https://twitter.com/ethjup2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc256858bd03fbddd84381f32490840cf1ee880ed", + "balanceRaw": "717147397422014852070", + "balanceFormatted": "717.14739742201485207", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc256858bd03fbddd84381f32490840cf1ee880ed", + "etherscanUrl": "https://etherscan.io/address/0xc256858bd03fbddd84381f32490840cf1ee880ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_215164", + "balanceRaw": "717000000000000000000", + "balanceFormatted": "717", + "lastTransferAt": null, + "username": "gigimp1", + "displayName": "gigi.base.eth", + "fid": 215164, + "followers": 356, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93034366-6419-4fdc-ce93-1183f28bd100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf69f598a33f07183290bff0f4ff89070571f4797", + "etherscanUrl": "https://etherscan.io/address/0xf69f598a33f07183290bff0f4ff89070571f4797", + "xHandle": "gigimp1", + "xUrl": "https://twitter.com/gigimp1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x612538106d8be14b9f0d346c0d5c89e94d145576", + "balanceRaw": "700000000000000633016", + "balanceFormatted": "700.000000000000633016", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x612538106d8be14b9f0d346c0d5c89e94d145576", + "etherscanUrl": "https://etherscan.io/address/0x612538106d8be14b9f0d346c0d5c89e94d145576", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_392134", + "balanceRaw": "700000000000000000000", + "balanceFormatted": "700", + "lastTransferAt": null, + "username": "donaldtrap", + "displayName": "Donald Trap", + "fid": 392134, + "followers": 222, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7f6dff9b-78b8-4fb1-04d1-e440dd113500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xffde42d40175b3b9349dfb384439dcb811691e09", + "etherscanUrl": "https://etherscan.io/address/0xffde42d40175b3b9349dfb384439dcb811691e09", + "xHandle": "drealdonaldtrap", + "xUrl": "https://twitter.com/drealdonaldtrap", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76faa3fc0e070ab434425535d4b8e0dc852029a8", + "balanceRaw": "689948359496505082813", + "balanceFormatted": "689.948359496505082813", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76faa3fc0e070ab434425535d4b8e0dc852029a8", + "etherscanUrl": "https://etherscan.io/address/0x76faa3fc0e070ab434425535d4b8e0dc852029a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdec036e967c40fd9093711379b52ef0784fc08a2", + "balanceRaw": "683381633028806164924", + "balanceFormatted": "683.381633028806164924", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "androidea.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdec036e967c40fd9093711379b52ef0784fc08a2", + "etherscanUrl": "https://etherscan.io/address/0xdec036e967c40fd9093711379b52ef0784fc08a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_750250", + "balanceRaw": "683265465824271873995", + "balanceFormatted": "683.265465824271873995", + "lastTransferAt": null, + "username": "nerddegen", + "displayName": "pierpont.base.eth", + "fid": 750250, + "followers": 205, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cf88195-ff9c-44fa-4f3c-39096750b900/rectcrop3", + "ensName": "web3npc.eth", + "ensAvatarUrl": "https://euc.li/web3npc.eth", + "primaryAddress": "0x2459d54800fca3c4fc4a7c9f12876acaf7de752d", + "etherscanUrl": "https://etherscan.io/address/0x2459d54800fca3c4fc4a7c9f12876acaf7de752d", + "xHandle": "iputuadepratama", + "xUrl": "https://twitter.com/iputuadepratama", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_398278", + "balanceRaw": "673330344732321011951", + "balanceFormatted": "673.330344732321011951", + "lastTransferAt": null, + "username": "!398278", + "displayName": null, + "fid": 398278, + "followers": 2, + "pfpUrl": null, + "ensName": "okamotoplayer01.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb92c55db9f5edd46423980fbe7fdb9948faf5b57", + "etherscanUrl": "https://etherscan.io/address/0xb92c55db9f5edd46423980fbe7fdb9948faf5b57", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_229801", + "balanceRaw": "667229852007037672374", + "balanceFormatted": "667.229852007037672374", + "lastTransferAt": null, + "username": "poke", + "displayName": "poke420", + "fid": 229801, + "followers": 1619, + "pfpUrl": "https://i.imgur.com/0CckhLf.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe915da3b1d1f730dbfc7bf6d31f654e994fa8c6d", + "etherscanUrl": "https://etherscan.io/address/0xe915da3b1d1f730dbfc7bf6d31f654e994fa8c6d", + "xHandle": "mlpoke420", + "xUrl": "https://twitter.com/mlpoke420", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1049593", + "balanceRaw": "665000000000000000000", + "balanceFormatted": "665", + "lastTransferAt": null, + "username": "rajanshee", + "displayName": "Rajanshee", + "fid": 1049593, + "followers": 177, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f005edb-a37b-4194-a107-6e186e462600/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6b8108a38aad49ef1c7c59baff7fc5eb7bead28c", + "etherscanUrl": "https://etherscan.io/address/0x6b8108a38aad49ef1c7c59baff7fc5eb7bead28c", + "xHandle": "rajanshees", + "xUrl": "https://twitter.com/rajanshees", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_566666", + "balanceRaw": "660928805169025614592", + "balanceFormatted": "660.928805169025614592", + "lastTransferAt": null, + "username": "chiholman", + "displayName": "CHÍ", + "fid": 566666, + "followers": 287, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ee1de29-04fd-46ff-edbe-bab1be91d700/rectcrop3", + "ensName": "chiholman.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x97e115a05a28223d052abf45cfb92737673b0778", + "etherscanUrl": "https://etherscan.io/address/0x97e115a05a28223d052abf45cfb92737673b0778", + "xHandle": "buithihoan60", + "xUrl": "https://twitter.com/buithihoan60", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_586677", + "balanceRaw": "631240372091547355599", + "balanceFormatted": "631.240372091547355599", + "lastTransferAt": null, + "username": "s-bouchallikht", + "displayName": "Salaheddine", + "fid": 586677, + "followers": 127, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e98a3a23-c59f-44ae-0ca8-08ccc1c1db00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8f6da814f47f7ad2ff1c2f61f758cf7278f96643", + "etherscanUrl": "https://etherscan.io/address/0x8f6da814f47f7ad2ff1c2f61f758cf7278f96643", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdb4fdc779f08f5431ed5ee2dedf8b95928f5498f", + "balanceRaw": "630968254346211042265", + "balanceFormatted": "630.968254346211042265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "elotrodia.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdb4fdc779f08f5431ed5ee2dedf8b95928f5498f", + "etherscanUrl": "https://etherscan.io/address/0xdb4fdc779f08f5431ed5ee2dedf8b95928f5498f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_462833", + "balanceRaw": "630648293505504129803", + "balanceFormatted": "630.648293505504129803", + "lastTransferAt": null, + "username": "simonidas", + "displayName": "Simonidas", + "fid": 462833, + "followers": 122, + "pfpUrl": "https://i.imgur.com/Fq4iCeH.jpg", + "ensName": "simonidas.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x404a3819534ca4751340bc1170695da961a9e072", + "etherscanUrl": "https://etherscan.io/address/0x404a3819534ca4751340bc1170695da961a9e072", + "xHandle": "simonidas3", + "xUrl": "https://twitter.com/simonidas3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_386643", + "balanceRaw": "619906399557482104807", + "balanceFormatted": "619.906399557482104807", + "lastTransferAt": null, + "username": "poppinwindtw.eth", + "displayName": "poppinwindtw.base.eth", + "fid": 386643, + "followers": 40, + "pfpUrl": "https://i.imgur.com/5yHPB1b.jpg", + "ensName": "poppinwindtw.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf74fffd69a3092985365c69e0f6fcbc15ea3e7ac", + "etherscanUrl": "https://etherscan.io/address/0xf74fffd69a3092985365c69e0f6fcbc15ea3e7ac", + "xHandle": "poppinwindtw", + "xUrl": "https://twitter.com/poppinwindtw", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251544", + "balanceRaw": "589443323366307703389", + "balanceFormatted": "589.443323366307703389", + "lastTransferAt": null, + "username": "kripikcrypto", + "displayName": "KripikCrypto", + "fid": 251544, + "followers": 120, + "pfpUrl": "https://i.imgur.com/sCVN8oi.jpg", + "ensName": "kripikcrypto.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb844370c9da0ee533b3471546ef48b80d59e9ca0", + "etherscanUrl": "https://etherscan.io/address/0xb844370c9da0ee533b3471546ef48b80d59e9ca0", + "xHandle": "kripikcrypto", + "xUrl": "https://twitter.com/kripikcrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6fd76a04b40073b18d46ceb8a23da1359931afd0", + "balanceRaw": "587330557219651251291", + "balanceFormatted": "587.330557219651251291", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "khodkar.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6fd76a04b40073b18d46ceb8a23da1359931afd0", + "etherscanUrl": "https://etherscan.io/address/0x6fd76a04b40073b18d46ceb8a23da1359931afd0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x21c9a94af76b59b171b32fd125a4edf0e9a2ad3e", + "balanceRaw": "585827521487619660421", + "balanceFormatted": "585.827521487619660421", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "coinmastersguild.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x21c9a94af76b59b171b32fd125a4edf0e9a2ad3e", + "etherscanUrl": "https://etherscan.io/address/0x21c9a94af76b59b171b32fd125a4edf0e9a2ad3e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_18561", + "balanceRaw": "581905433301381738030", + "balanceFormatted": "581.90543330138173803", + "lastTransferAt": null, + "username": "ezincrypto", + "displayName": "EZinCrypto 33/100 Video Challeng", + "fid": 18561, + "followers": 2212, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79a07579-68d0-4852-3f65-b9ec87c8b100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a6c3498bdc8d02c9d8946af8e0be34263c6eaae", + "etherscanUrl": "https://etherscan.io/address/0x9a6c3498bdc8d02c9d8946af8e0be34263c6eaae", + "xHandle": "ez_cbd", + "xUrl": "https://twitter.com/ez_cbd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491817", + "balanceRaw": "581357921123733639491", + "balanceFormatted": "581.357921123733639491", + "lastTransferAt": null, + "username": "maks777.eth", + "displayName": "Maks777", + "fid": 491817, + "followers": 793, + "pfpUrl": "https://i.seadn.io/s/raw/files/193ed32751a648483680d0f308725bd7.png?w=500&auto=format", + "ensName": "maks777.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6a448e2e93e39571e8d71724716b138d4bc74dd4", + "etherscanUrl": "https://etherscan.io/address/0x6a448e2e93e39571e8d71724716b138d4bc74dd4", + "xHandle": "mmirmaksim1991", + "xUrl": "https://twitter.com/mmirmaksim1991", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9d932dc873915a06a6321dea3f3f94e13073e3e4", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d932dc873915a06a6321dea3f3f94e13073e3e4", + "etherscanUrl": "https://etherscan.io/address/0x9d932dc873915a06a6321dea3f3f94e13073e3e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x98726685fde726996ef15dd3dac7bff9c3c3fe80", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x98726685fde726996ef15dd3dac7bff9c3c3fe80", + "etherscanUrl": "https://etherscan.io/address/0x98726685fde726996ef15dd3dac7bff9c3c3fe80", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa91ef04ec11eda537a017a8b425ce8ac6acc444a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa91ef04ec11eda537a017a8b425ce8ac6acc444a", + "etherscanUrl": "https://etherscan.io/address/0xa91ef04ec11eda537a017a8b425ce8ac6acc444a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xee24e8bf95201dae01250e15e235270f17f4fe21", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xee24e8bf95201dae01250e15e235270f17f4fe21", + "etherscanUrl": "https://etherscan.io/address/0xee24e8bf95201dae01250e15e235270f17f4fe21", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1ba35dd33252b928daa834152e30dde40dc3921b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1ba35dd33252b928daa834152e30dde40dc3921b", + "etherscanUrl": "https://etherscan.io/address/0x1ba35dd33252b928daa834152e30dde40dc3921b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0f1f99c7254d7a69af07bc5833d742cac0cb1bac", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0f1f99c7254d7a69af07bc5833d742cac0cb1bac", + "etherscanUrl": "https://etherscan.io/address/0x0f1f99c7254d7a69af07bc5833d742cac0cb1bac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x612a48b22accd82e2b4d14ca4c6c85340df952e8", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x612a48b22accd82e2b4d14ca4c6c85340df952e8", + "etherscanUrl": "https://etherscan.io/address/0x612a48b22accd82e2b4d14ca4c6c85340df952e8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x31b9144ef67ccf6124b10b2e22ab4d3ca44ee3ac", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31b9144ef67ccf6124b10b2e22ab4d3ca44ee3ac", + "etherscanUrl": "https://etherscan.io/address/0x31b9144ef67ccf6124b10b2e22ab4d3ca44ee3ac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1c6469a4692810abb53717c7da964614dd43c3fc", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1c6469a4692810abb53717c7da964614dd43c3fc", + "etherscanUrl": "https://etherscan.io/address/0x1c6469a4692810abb53717c7da964614dd43c3fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7064fe09ac351813d7404b879906ec256f849e9c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7064fe09ac351813d7404b879906ec256f849e9c", + "etherscanUrl": "https://etherscan.io/address/0x7064fe09ac351813d7404b879906ec256f849e9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x39c40fe5894fde9c8280761908198cb72af43854", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x39c40fe5894fde9c8280761908198cb72af43854", + "etherscanUrl": "https://etherscan.io/address/0x39c40fe5894fde9c8280761908198cb72af43854", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf331811e45f0c0644f5c70ea510fb995fc2c0f21", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "paydog.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf331811e45f0c0644f5c70ea510fb995fc2c0f21", + "etherscanUrl": "https://etherscan.io/address/0xf331811e45f0c0644f5c70ea510fb995fc2c0f21", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x914fccf5b42d0b1eb58a3f229402bbd31a42371c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x914fccf5b42d0b1eb58a3f229402bbd31a42371c", + "etherscanUrl": "https://etherscan.io/address/0x914fccf5b42d0b1eb58a3f229402bbd31a42371c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5697c4a788a054118fbebbbffc9c905e2d431bb6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5697c4a788a054118fbebbbffc9c905e2d431bb6", + "etherscanUrl": "https://etherscan.io/address/0x5697c4a788a054118fbebbbffc9c905e2d431bb6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x119750428433050eff397969b9fe1ee53ab291f4", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x119750428433050eff397969b9fe1ee53ab291f4", + "etherscanUrl": "https://etherscan.io/address/0x119750428433050eff397969b9fe1ee53ab291f4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x502ce3b04e01a49d235428b7a6e1de934b8cd473", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "deepimpact.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x502ce3b04e01a49d235428b7a6e1de934b8cd473", + "etherscanUrl": "https://etherscan.io/address/0x502ce3b04e01a49d235428b7a6e1de934b8cd473", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc77314bda7bfb719e9594635cfa98dabb522ab47", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc77314bda7bfb719e9594635cfa98dabb522ab47", + "etherscanUrl": "https://etherscan.io/address/0xc77314bda7bfb719e9594635cfa98dabb522ab47", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbabdc430d9a8d40e13d51ef0611920a69a081291", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbabdc430d9a8d40e13d51ef0611920a69a081291", + "etherscanUrl": "https://etherscan.io/address/0xbabdc430d9a8d40e13d51ef0611920a69a081291", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe1a5da804f794fda6c7395655661b348fb5d2408", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe1a5da804f794fda6c7395655661b348fb5d2408", + "etherscanUrl": "https://etherscan.io/address/0xe1a5da804f794fda6c7395655661b348fb5d2408", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe11bf6202ad8561dd7cb1882d8ef1a5a9babe5b0", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe11bf6202ad8561dd7cb1882d8ef1a5a9babe5b0", + "etherscanUrl": "https://etherscan.io/address/0xe11bf6202ad8561dd7cb1882d8ef1a5a9babe5b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x00815022d77f667798e431337d986538e65592d9", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00815022d77f667798e431337d986538e65592d9", + "etherscanUrl": "https://etherscan.io/address/0x00815022d77f667798e431337d986538e65592d9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb11793bd864f98defc814194e82480cca4db8d4d", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb11793bd864f98defc814194e82480cca4db8d4d", + "etherscanUrl": "https://etherscan.io/address/0xb11793bd864f98defc814194e82480cca4db8d4d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbaabf8e2e42b95267b33968e1e1e89a116f94444", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbaabf8e2e42b95267b33968e1e1e89a116f94444", + "etherscanUrl": "https://etherscan.io/address/0xbaabf8e2e42b95267b33968e1e1e89a116f94444", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x602c567f7342afa87b4cebbe8805e9f0d5871bf0", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x602c567f7342afa87b4cebbe8805e9f0d5871bf0", + "etherscanUrl": "https://etherscan.io/address/0x602c567f7342afa87b4cebbe8805e9f0d5871bf0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5813a794549297c43b34539fdba164c723e9ec08", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5813a794549297c43b34539fdba164c723e9ec08", + "etherscanUrl": "https://etherscan.io/address/0x5813a794549297c43b34539fdba164c723e9ec08", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7fb3741ecf19a3996bed87ce246a895538f522fc", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7fb3741ecf19a3996bed87ce246a895538f522fc", + "etherscanUrl": "https://etherscan.io/address/0x7fb3741ecf19a3996bed87ce246a895538f522fc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64954938bd29ef7df7df3965c39841200e05fb89", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64954938bd29ef7df7df3965c39841200e05fb89", + "etherscanUrl": "https://etherscan.io/address/0x64954938bd29ef7df7df3965c39841200e05fb89", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6d8d45e50346b1c87a62cbe763b33c7e72c0218c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6d8d45e50346b1c87a62cbe763b33c7e72c0218c", + "etherscanUrl": "https://etherscan.io/address/0x6d8d45e50346b1c87a62cbe763b33c7e72c0218c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x929f4ca333ffe50948109da23394583ee381c7b3", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x929f4ca333ffe50948109da23394583ee381c7b3", + "etherscanUrl": "https://etherscan.io/address/0x929f4ca333ffe50948109da23394583ee381c7b3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe00a385b0c1b400e992fbbb1ff0fbb4a30a41974", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe00a385b0c1b400e992fbbb1ff0fbb4a30a41974", + "etherscanUrl": "https://etherscan.io/address/0xe00a385b0c1b400e992fbbb1ff0fbb4a30a41974", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd240a9de14e78e9bd709ddca51f3a0063a96780d", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "meiwashio.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd240a9de14e78e9bd709ddca51f3a0063a96780d", + "etherscanUrl": "https://etherscan.io/address/0xd240a9de14e78e9bd709ddca51f3a0063a96780d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x32a6886a8887fae4dbdb0f4723804ff23154fd90", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "zhijianwab3.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x32a6886a8887fae4dbdb0f4723804ff23154fd90", + "etherscanUrl": "https://etherscan.io/address/0x32a6886a8887fae4dbdb0f4723804ff23154fd90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x56d66525ff8d983084592e7083f1d3927abadcfe", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56d66525ff8d983084592e7083f1d3927abadcfe", + "etherscanUrl": "https://etherscan.io/address/0x56d66525ff8d983084592e7083f1d3927abadcfe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2d7e665fc5e45266992482c5208df3baa0c4e19a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d7e665fc5e45266992482c5208df3baa0c4e19a", + "etherscanUrl": "https://etherscan.io/address/0x2d7e665fc5e45266992482c5208df3baa0c4e19a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe44414017818b02508785de0f6eb9e830f6cd997", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe44414017818b02508785de0f6eb9e830f6cd997", + "etherscanUrl": "https://etherscan.io/address/0xe44414017818b02508785de0f6eb9e830f6cd997", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x56714178aec7fd38499659e0d24eae9e514fedb1", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56714178aec7fd38499659e0d24eae9e514fedb1", + "etherscanUrl": "https://etherscan.io/address/0x56714178aec7fd38499659e0d24eae9e514fedb1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa974eac26f34f03b326d5b5c2b17e82c9b5fca3c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa974eac26f34f03b326d5b5c2b17e82c9b5fca3c", + "etherscanUrl": "https://etherscan.io/address/0xa974eac26f34f03b326d5b5c2b17e82c9b5fca3c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x07c29b0e817ff1bdd6733f30f505076ef5a2f6a7", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x07c29b0e817ff1bdd6733f30f505076ef5a2f6a7", + "etherscanUrl": "https://etherscan.io/address/0x07c29b0e817ff1bdd6733f30f505076ef5a2f6a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76369940f44a863d7eb60447a92c42040a43db4b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76369940f44a863d7eb60447a92c42040a43db4b", + "etherscanUrl": "https://etherscan.io/address/0x76369940f44a863d7eb60447a92c42040a43db4b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfdf6e1fcbe2224dd73cb82d39e8f75ffa2830f2c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfdf6e1fcbe2224dd73cb82d39e8f75ffa2830f2c", + "etherscanUrl": "https://etherscan.io/address/0xfdf6e1fcbe2224dd73cb82d39e8f75ffa2830f2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x983e571845c7d1587be123a84f03955494af1fe4", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x983e571845c7d1587be123a84f03955494af1fe4", + "etherscanUrl": "https://etherscan.io/address/0x983e571845c7d1587be123a84f03955494af1fe4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6621959280e0e8b7e07cbab916430718cfa556cf", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6621959280e0e8b7e07cbab916430718cfa556cf", + "etherscanUrl": "https://etherscan.io/address/0x6621959280e0e8b7e07cbab916430718cfa556cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8ef3a73952ac3b4ab072a5aa7c612f6fff94e58f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ef3a73952ac3b4ab072a5aa7c612f6fff94e58f", + "etherscanUrl": "https://etherscan.io/address/0x8ef3a73952ac3b4ab072a5aa7c612f6fff94e58f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe8af6be60f64282629550079b4d2624df63432de", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8af6be60f64282629550079b4d2624df63432de", + "etherscanUrl": "https://etherscan.io/address/0xe8af6be60f64282629550079b4d2624df63432de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2a122b4b12b21ec7fd9974d189ca0659df1172de", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a122b4b12b21ec7fd9974d189ca0659df1172de", + "etherscanUrl": "https://etherscan.io/address/0x2a122b4b12b21ec7fd9974d189ca0659df1172de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc4e670db702b771bc9fa4b30e661358a2e07db6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc4e670db702b771bc9fa4b30e661358a2e07db6", + "etherscanUrl": "https://etherscan.io/address/0xdc4e670db702b771bc9fa4b30e661358a2e07db6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa767c9fca4715a85c88f2a7670eae8daa103d4fe", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa767c9fca4715a85c88f2a7670eae8daa103d4fe", + "etherscanUrl": "https://etherscan.io/address/0xa767c9fca4715a85c88f2a7670eae8daa103d4fe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc5256a91b6061f4809856040af689908ef71a2bf", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "spectronft.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc5256a91b6061f4809856040af689908ef71a2bf", + "etherscanUrl": "https://etherscan.io/address/0xc5256a91b6061f4809856040af689908ef71a2bf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc6a3ec4b2295e7e5575a1b5c943ecc2c09248e5a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc6a3ec4b2295e7e5575a1b5c943ecc2c09248e5a", + "etherscanUrl": "https://etherscan.io/address/0xc6a3ec4b2295e7e5575a1b5c943ecc2c09248e5a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x517c251e07bb831c1fcd720ae545cd8a7d6be38c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x517c251e07bb831c1fcd720ae545cd8a7d6be38c", + "etherscanUrl": "https://etherscan.io/address/0x517c251e07bb831c1fcd720ae545cd8a7d6be38c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0bbc2f3c6bc5a06c4a9bb69ec8a749a273cc7980", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0bbc2f3c6bc5a06c4a9bb69ec8a749a273cc7980", + "etherscanUrl": "https://etherscan.io/address/0x0bbc2f3c6bc5a06c4a9bb69ec8a749a273cc7980", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9a827efcef8549e733a84765accdcfc53737906b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a827efcef8549e733a84765accdcfc53737906b", + "etherscanUrl": "https://etherscan.io/address/0x9a827efcef8549e733a84765accdcfc53737906b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad6b2261f32c8bd394eb14f564b4f7acabf709a2", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "j-o-n-a-s.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xad6b2261f32c8bd394eb14f564b4f7acabf709a2", + "etherscanUrl": "https://etherscan.io/address/0xad6b2261f32c8bd394eb14f564b4f7acabf709a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x734d55f5ad7cae288e123820a9767941ba7f3e43", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x734d55f5ad7cae288e123820a9767941ba7f3e43", + "etherscanUrl": "https://etherscan.io/address/0x734d55f5ad7cae288e123820a9767941ba7f3e43", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4996e7dcd0b63a26a74bcbbc1152c52489008c6f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4996e7dcd0b63a26a74bcbbc1152c52489008c6f", + "etherscanUrl": "https://etherscan.io/address/0x4996e7dcd0b63a26a74bcbbc1152c52489008c6f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x056c1fb14a117be23622f4cc81a9f3627e8c5f86", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x056c1fb14a117be23622f4cc81a9f3627e8c5f86", + "etherscanUrl": "https://etherscan.io/address/0x056c1fb14a117be23622f4cc81a9f3627e8c5f86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7e712bd7cbb34156047d806ba3983006ed9836f2", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7e712bd7cbb34156047d806ba3983006ed9836f2", + "etherscanUrl": "https://etherscan.io/address/0x7e712bd7cbb34156047d806ba3983006ed9836f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4ca096ebc397c05d32a9c7241d1cedb1b6fc0acd", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ca096ebc397c05d32a9c7241d1cedb1b6fc0acd", + "etherscanUrl": "https://etherscan.io/address/0x4ca096ebc397c05d32a9c7241d1cedb1b6fc0acd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0b3571f28b7d8b947a310c68b04fb8e4f2101e5a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0b3571f28b7d8b947a310c68b04fb8e4f2101e5a", + "etherscanUrl": "https://etherscan.io/address/0x0b3571f28b7d8b947a310c68b04fb8e4f2101e5a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c4f834c71f0ec1a0014e99ff4a58c073959fbb5", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c4f834c71f0ec1a0014e99ff4a58c073959fbb5", + "etherscanUrl": "https://etherscan.io/address/0x8c4f834c71f0ec1a0014e99ff4a58c073959fbb5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x472ed1986c8f93e7d094304a9b2342f6d3a86c65", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x472ed1986c8f93e7d094304a9b2342f6d3a86c65", + "etherscanUrl": "https://etherscan.io/address/0x472ed1986c8f93e7d094304a9b2342f6d3a86c65", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a9fc22c88ae544aa86ae0a48e401afd44cb1e74", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a9fc22c88ae544aa86ae0a48e401afd44cb1e74", + "etherscanUrl": "https://etherscan.io/address/0x8a9fc22c88ae544aa86ae0a48e401afd44cb1e74", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x91489e5a286ab0698b279fdd25a8e04080cf901c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91489e5a286ab0698b279fdd25a8e04080cf901c", + "etherscanUrl": "https://etherscan.io/address/0x91489e5a286ab0698b279fdd25a8e04080cf901c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe003aade6b28a2a5cea7fe79d65b5467ca8c6ae9", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe003aade6b28a2a5cea7fe79d65b5467ca8c6ae9", + "etherscanUrl": "https://etherscan.io/address/0xe003aade6b28a2a5cea7fe79d65b5467ca8c6ae9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x080bd8df34a82be182a596fcf40a988a5fce3431", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x080bd8df34a82be182a596fcf40a988a5fce3431", + "etherscanUrl": "https://etherscan.io/address/0x080bd8df34a82be182a596fcf40a988a5fce3431", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6decc711aafc76a07b55b179da29b3687318c737", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "starcat.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6decc711aafc76a07b55b179da29b3687318c737", + "etherscanUrl": "https://etherscan.io/address/0x6decc711aafc76a07b55b179da29b3687318c737", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3b0828f1122b9cf9e26de0a1327328b163e14b18", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3b0828f1122b9cf9e26de0a1327328b163e14b18", + "etherscanUrl": "https://etherscan.io/address/0x3b0828f1122b9cf9e26de0a1327328b163e14b18", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbcec0d401a7817a0d9ef17286e197b52753ddc28", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbcec0d401a7817a0d9ef17286e197b52753ddc28", + "etherscanUrl": "https://etherscan.io/address/0xbcec0d401a7817a0d9ef17286e197b52753ddc28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd67fbd67d26e76b495560c18093d1223eb7e919f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd67fbd67d26e76b495560c18093d1223eb7e919f", + "etherscanUrl": "https://etherscan.io/address/0xd67fbd67d26e76b495560c18093d1223eb7e919f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb62595faaa0500426ad683c09a685601423104fd", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb62595faaa0500426ad683c09a685601423104fd", + "etherscanUrl": "https://etherscan.io/address/0xb62595faaa0500426ad683c09a685601423104fd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x55f5061cc7add625bf2f7a2f33285add0c1020e6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55f5061cc7add625bf2f7a2f33285add0c1020e6", + "etherscanUrl": "https://etherscan.io/address/0x55f5061cc7add625bf2f7a2f33285add0c1020e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x315cbbf97e973be43426de77c208e9dc2a3f46cb", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x315cbbf97e973be43426de77c208e9dc2a3f46cb", + "etherscanUrl": "https://etherscan.io/address/0x315cbbf97e973be43426de77c208e9dc2a3f46cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8ecc63f5bea390f1e01707f771ae218eb18db358", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8ecc63f5bea390f1e01707f771ae218eb18db358", + "etherscanUrl": "https://etherscan.io/address/0x8ecc63f5bea390f1e01707f771ae218eb18db358", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x81c5d27d25c5257e428dcf70f6e15f2a0d525f6d", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81c5d27d25c5257e428dcf70f6e15f2a0d525f6d", + "etherscanUrl": "https://etherscan.io/address/0x81c5d27d25c5257e428dcf70f6e15f2a0d525f6d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x54b95a7a05bf568792c5908a3fb8ab0357ab32e2", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x54b95a7a05bf568792c5908a3fb8ab0357ab32e2", + "etherscanUrl": "https://etherscan.io/address/0x54b95a7a05bf568792c5908a3fb8ab0357ab32e2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x46da66b551ba951b9f919aece651e3339b706c66", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x46da66b551ba951b9f919aece651e3339b706c66", + "etherscanUrl": "https://etherscan.io/address/0x46da66b551ba951b9f919aece651e3339b706c66", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x91065b41ef171956f3ed9d512c2846b6f992f56f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x91065b41ef171956f3ed9d512c2846b6f992f56f", + "etherscanUrl": "https://etherscan.io/address/0x91065b41ef171956f3ed9d512c2846b6f992f56f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x546168eeb7127d68291f728c21aa39dc63bdba80", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x546168eeb7127d68291f728c21aa39dc63bdba80", + "etherscanUrl": "https://etherscan.io/address/0x546168eeb7127d68291f728c21aa39dc63bdba80", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xeb5f87c46e4986f12375cd381a46bb5807d4a026", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xeb5f87c46e4986f12375cd381a46bb5807d4a026", + "etherscanUrl": "https://etherscan.io/address/0xeb5f87c46e4986f12375cd381a46bb5807d4a026", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1670d14faa9af34184e9e5e6e203bc67e106a7ea", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1670d14faa9af34184e9e5e6e203bc67e106a7ea", + "etherscanUrl": "https://etherscan.io/address/0x1670d14faa9af34184e9e5e6e203bc67e106a7ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc0cbbef68b6dd342aa091846dcc7da6c11b9e53f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0cbbef68b6dd342aa091846dcc7da6c11b9e53f", + "etherscanUrl": "https://etherscan.io/address/0xc0cbbef68b6dd342aa091846dcc7da6c11b9e53f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1be12aaf5ce779139d0cb35e104de6bcc47d4a3a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1be12aaf5ce779139d0cb35e104de6bcc47d4a3a", + "etherscanUrl": "https://etherscan.io/address/0x1be12aaf5ce779139d0cb35e104de6bcc47d4a3a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9e3ec25b94e2f9eb32e2922a85946a2984495d0d", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "biggib.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9e3ec25b94e2f9eb32e2922a85946a2984495d0d", + "etherscanUrl": "https://etherscan.io/address/0x9e3ec25b94e2f9eb32e2922a85946a2984495d0d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf36e0398d2f8554473f7681d060b6173cd10049b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf36e0398d2f8554473f7681d060b6173cd10049b", + "etherscanUrl": "https://etherscan.io/address/0xf36e0398d2f8554473f7681d060b6173cd10049b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x93bb51f4dcc4d9e57b53f621c1adfa1b15701473", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x93bb51f4dcc4d9e57b53f621c1adfa1b15701473", + "etherscanUrl": "https://etherscan.io/address/0x93bb51f4dcc4d9e57b53f621c1adfa1b15701473", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x62e949c4150b79d63263430b6c5298550e63a17e", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "cryptolandi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x62e949c4150b79d63263430b6c5298550e63a17e", + "etherscanUrl": "https://etherscan.io/address/0x62e949c4150b79d63263430b6c5298550e63a17e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x912948f83d8979011e79c715ad7605782cfc2f74", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x912948f83d8979011e79c715ad7605782cfc2f74", + "etherscanUrl": "https://etherscan.io/address/0x912948f83d8979011e79c715ad7605782cfc2f74", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa678e5c56c4d3837db6667795d3398a9d6382c43", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa678e5c56c4d3837db6667795d3398a9d6382c43", + "etherscanUrl": "https://etherscan.io/address/0xa678e5c56c4d3837db6667795d3398a9d6382c43", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x743bd3c35c45cd75bfafc329b85427bc610d2339", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x743bd3c35c45cd75bfafc329b85427bc610d2339", + "etherscanUrl": "https://etherscan.io/address/0x743bd3c35c45cd75bfafc329b85427bc610d2339", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x31bbf015c6d8a24b33984db24be58f188484ba09", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31bbf015c6d8a24b33984db24be58f188484ba09", + "etherscanUrl": "https://etherscan.io/address/0x31bbf015c6d8a24b33984db24be58f188484ba09", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0099a5cd99b2e911ae9a08c4507516b2c3860bf6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0099a5cd99b2e911ae9a08c4507516b2c3860bf6", + "etherscanUrl": "https://etherscan.io/address/0x0099a5cd99b2e911ae9a08c4507516b2c3860bf6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8bb1cb697b38202e21f80f3fa9c4aefb9614da4e", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8bb1cb697b38202e21f80f3fa9c4aefb9614da4e", + "etherscanUrl": "https://etherscan.io/address/0x8bb1cb697b38202e21f80f3fa9c4aefb9614da4e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8affcff2e4f8fcd95f5132a9498a8c75fb391daf", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8affcff2e4f8fcd95f5132a9498a8c75fb391daf", + "etherscanUrl": "https://etherscan.io/address/0x8affcff2e4f8fcd95f5132a9498a8c75fb391daf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3090697faad875785068839c286d12061f4eb06d", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3090697faad875785068839c286d12061f4eb06d", + "etherscanUrl": "https://etherscan.io/address/0x3090697faad875785068839c286d12061f4eb06d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe0d933f7621c8177818310528bff5fa9ecffc7af", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe0d933f7621c8177818310528bff5fa9ecffc7af", + "etherscanUrl": "https://etherscan.io/address/0xe0d933f7621c8177818310528bff5fa9ecffc7af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf9108165aab09a5c8e6ff830afb0ed1aa6a0902f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9108165aab09a5c8e6ff830afb0ed1aa6a0902f", + "etherscanUrl": "https://etherscan.io/address/0xf9108165aab09a5c8e6ff830afb0ed1aa6a0902f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x820d05ce4ea7a2a63d20b8e6de93e1572100d656", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "sfasdklfjasodkfjhjh.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x820d05ce4ea7a2a63d20b8e6de93e1572100d656", + "etherscanUrl": "https://etherscan.io/address/0x820d05ce4ea7a2a63d20b8e6de93e1572100d656", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3d4bfcbf7aa59136d09eb66b15460d69b38ee79f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3d4bfcbf7aa59136d09eb66b15460d69b38ee79f", + "etherscanUrl": "https://etherscan.io/address/0x3d4bfcbf7aa59136d09eb66b15460d69b38ee79f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x69f8e705a8ad9964cbedb9f7ede3b8e3fdaded86", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x69f8e705a8ad9964cbedb9f7ede3b8e3fdaded86", + "etherscanUrl": "https://etherscan.io/address/0x69f8e705a8ad9964cbedb9f7ede3b8e3fdaded86", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd5d862db61258cb4215db1ebe2cc93d2f67dab7b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd5d862db61258cb4215db1ebe2cc93d2f67dab7b", + "etherscanUrl": "https://etherscan.io/address/0xd5d862db61258cb4215db1ebe2cc93d2f67dab7b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c80088d3fe0e2f96f174e542c48d3018b1a342b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c80088d3fe0e2f96f174e542c48d3018b1a342b", + "etherscanUrl": "https://etherscan.io/address/0x3c80088d3fe0e2f96f174e542c48d3018b1a342b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xede52c47a7151b919177259e061801e7b971786b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xede52c47a7151b919177259e061801e7b971786b", + "etherscanUrl": "https://etherscan.io/address/0xede52c47a7151b919177259e061801e7b971786b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x284d2a45d39a722d766f4b25d3d4a8eed35c24dc", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x284d2a45d39a722d766f4b25d3d4a8eed35c24dc", + "etherscanUrl": "https://etherscan.io/address/0x284d2a45d39a722d766f4b25d3d4a8eed35c24dc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e1bd214fbff85f66d5ce01a0c95f73ed191e1bd", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vblack.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5e1bd214fbff85f66d5ce01a0c95f73ed191e1bd", + "etherscanUrl": "https://etherscan.io/address/0x5e1bd214fbff85f66d5ce01a0c95f73ed191e1bd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3dffc353e4f00e10eefba8a80c8c3699c986591a", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3dffc353e4f00e10eefba8a80c8c3699c986591a", + "etherscanUrl": "https://etherscan.io/address/0x3dffc353e4f00e10eefba8a80c8c3699c986591a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e490efb1d6cb11600ee167e1cf4f9a6107a4314", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5e490efb1d6cb11600ee167e1cf4f9a6107a4314", + "etherscanUrl": "https://etherscan.io/address/0x5e490efb1d6cb11600ee167e1cf4f9a6107a4314", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4ec558a9272a86b2e3dcb82913896daecc057032", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4ec558a9272a86b2e3dcb82913896daecc057032", + "etherscanUrl": "https://etherscan.io/address/0x4ec558a9272a86b2e3dcb82913896daecc057032", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1058e8477d9aac611b6d01670cb05af17a1d3897", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1058e8477d9aac611b6d01670cb05af17a1d3897", + "etherscanUrl": "https://etherscan.io/address/0x1058e8477d9aac611b6d01670cb05af17a1d3897", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f180fd1378c6ee67511c4893b2fb1ff0e4bbe3b", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f180fd1378c6ee67511c4893b2fb1ff0e4bbe3b", + "etherscanUrl": "https://etherscan.io/address/0x2f180fd1378c6ee67511c4893b2fb1ff0e4bbe3b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd47bf4cb1e5b6a61f8316173b0a8907e2cada30e", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd47bf4cb1e5b6a61f8316173b0a8907e2cada30e", + "etherscanUrl": "https://etherscan.io/address/0xd47bf4cb1e5b6a61f8316173b0a8907e2cada30e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76f4207595fb6cc77fc41d415a5fbf97d19a0fd9", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76f4207595fb6cc77fc41d415a5fbf97d19a0fd9", + "etherscanUrl": "https://etherscan.io/address/0x76f4207595fb6cc77fc41d415a5fbf97d19a0fd9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x44c40c73313600d970f6045b127afb9f919529ed", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x44c40c73313600d970f6045b127afb9f919529ed", + "etherscanUrl": "https://etherscan.io/address/0x44c40c73313600d970f6045b127afb9f919529ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3a53208c63078f8d7ab83c48b9b408af169fc300", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3a53208c63078f8d7ab83c48b9b408af169fc300", + "etherscanUrl": "https://etherscan.io/address/0x3a53208c63078f8d7ab83c48b9b408af169fc300", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x872f5aea52752fa162f1374afcfbca714bbdf0f7", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "spacebee.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x872f5aea52752fa162f1374afcfbca714bbdf0f7", + "etherscanUrl": "https://etherscan.io/address/0x872f5aea52752fa162f1374afcfbca714bbdf0f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c64239701251b5b0a7bd33d810667784333fb17", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c64239701251b5b0a7bd33d810667784333fb17", + "etherscanUrl": "https://etherscan.io/address/0x8c64239701251b5b0a7bd33d810667784333fb17", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x151db1d26d1129d77a2569a1f165c0b3cb13e9ad", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x151db1d26d1129d77a2569a1f165c0b3cb13e9ad", + "etherscanUrl": "https://etherscan.io/address/0x151db1d26d1129d77a2569a1f165c0b3cb13e9ad", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf42886016701c737624fae26a840662b9f0860d4", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf42886016701c737624fae26a840662b9f0860d4", + "etherscanUrl": "https://etherscan.io/address/0xf42886016701c737624fae26a840662b9f0860d4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2f9e14722d8df6c98431dcb63e5ccea8aa74206f", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2f9e14722d8df6c98431dcb63e5ccea8aa74206f", + "etherscanUrl": "https://etherscan.io/address/0x2f9e14722d8df6c98431dcb63e5ccea8aa74206f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcf00f45cbad4ddc5ab78de59a264e961079bf7f3", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcf00f45cbad4ddc5ab78de59a264e961079bf7f3", + "etherscanUrl": "https://etherscan.io/address/0xcf00f45cbad4ddc5ab78de59a264e961079bf7f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x92f3e0c875747a120c98d1a4cb420d7452ad7755", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x92f3e0c875747a120c98d1a4cb420d7452ad7755", + "etherscanUrl": "https://etherscan.io/address/0x92f3e0c875747a120c98d1a4cb420d7452ad7755", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x06415cb65bab48d47b806dd996ed6b39b1467a04", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x06415cb65bab48d47b806dd996ed6b39b1467a04", + "etherscanUrl": "https://etherscan.io/address/0x06415cb65bab48d47b806dd996ed6b39b1467a04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2a2affbb74cabc6789f22ca98a38d062fe7f636c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2a2affbb74cabc6789f22ca98a38d062fe7f636c", + "etherscanUrl": "https://etherscan.io/address/0x2a2affbb74cabc6789f22ca98a38d062fe7f636c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5889a942bb1821722f6212838a59e64ee263be08", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5889a942bb1821722f6212838a59e64ee263be08", + "etherscanUrl": "https://etherscan.io/address/0x5889a942bb1821722f6212838a59e64ee263be08", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd36fbe45165f32f11cd07e843931c3ede663cf6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd36fbe45165f32f11cd07e843931c3ede663cf6", + "etherscanUrl": "https://etherscan.io/address/0xcd36fbe45165f32f11cd07e843931c3ede663cf6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcc89f93d74c1821469278f4c079d9477f231cfc9", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcc89f93d74c1821469278f4c079d9477f231cfc9", + "etherscanUrl": "https://etherscan.io/address/0xcc89f93d74c1821469278f4c079d9477f231cfc9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7ebeb38e0a9ddc68f89bf045da26156a702919af", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ebeb38e0a9ddc68f89bf045da26156a702919af", + "etherscanUrl": "https://etherscan.io/address/0x7ebeb38e0a9ddc68f89bf045da26156a702919af", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x78ef1cb301b486f9d3652487be639bec5e7a23b6", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x78ef1cb301b486f9d3652487be639bec5e7a23b6", + "etherscanUrl": "https://etherscan.io/address/0x78ef1cb301b486f9d3652487be639bec5e7a23b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7d06f4e0bd14231547abf6baaac30ca38930d2c9", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7d06f4e0bd14231547abf6baaac30ca38930d2c9", + "etherscanUrl": "https://etherscan.io/address/0x7d06f4e0bd14231547abf6baaac30ca38930d2c9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb38cb828f680b3919fe45ee557e180f19c89216e", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "shrektastic.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb38cb828f680b3919fe45ee557e180f19c89216e", + "etherscanUrl": "https://etherscan.io/address/0xb38cb828f680b3919fe45ee557e180f19c89216e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc020dc1a15a3e23fb6c18d39609b74e9c4894a28", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc020dc1a15a3e23fb6c18d39609b74e9c4894a28", + "etherscanUrl": "https://etherscan.io/address/0xc020dc1a15a3e23fb6c18d39609b74e9c4894a28", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9895d05b05d35f00e7bc5fe0d9e2eeed573be140", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9895d05b05d35f00e7bc5fe0d9e2eeed573be140", + "etherscanUrl": "https://etherscan.io/address/0x9895d05b05d35f00e7bc5fe0d9e2eeed573be140", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9d1a5adc935d0e512a983691f9d724086bbc992c", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "alinab.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9d1a5adc935d0e512a983691f9d724086bbc992c", + "etherscanUrl": "https://etherscan.io/address/0x9d1a5adc935d0e512a983691f9d724086bbc992c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8e52791691a416a2ce42071b82651cd9a23e1c9e", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8e52791691a416a2ce42071b82651cd9a23e1c9e", + "etherscanUrl": "https://etherscan.io/address/0x8e52791691a416a2ce42071b82651cd9a23e1c9e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_22985", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "shruti", + "displayName": "Shruti", + "fid": 22985, + "followers": 3, + "pfpUrl": "https://i.imgur.com/QptGr98.jpg", + "ensName": "theshruti.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x62f25d0944a1b512a1d77e4dede57f72ffc8ef25", + "etherscanUrl": "https://etherscan.io/address/0x62f25d0944a1b512a1d77e4dede57f72ffc8ef25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_502093", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "narukamiyu1000", + "displayName": "lun", + "fid": 502093, + "followers": 140, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/847a5eae-f6c1-4d0e-de64-5aef1d184800/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbf138b82f1729077ee1b8bc2dbff3503a3ee6751", + "etherscanUrl": "https://etherscan.io/address/0xbf138b82f1729077ee1b8bc2dbff3503a3ee6751", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_606727", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "wados19", + "displayName": "Wad ", + "fid": 606727, + "followers": 300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c989376-42c4-4932-7de1-ffed1dfb9100/rectcrop3", + "ensName": "teslamodelsemi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe69da191c100322f18add1b657d1d06dd6c5e5d9", + "etherscanUrl": "https://etherscan.io/address/0xe69da191c100322f18add1b657d1d06dd6c5e5d9", + "xHandle": "bunjako22", + "xUrl": "https://twitter.com/bunjako22", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_422393", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "ryuuichi", + "displayName": "隆一", + "fid": 422393, + "followers": 121, + "pfpUrl": "https://i.imgur.com/B7OrhrK.jpg", + "ensName": "ryuuichi0777.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x18aadcba11cbe7eba43fcbacdd5b2b5d6a019630", + "etherscanUrl": "https://etherscan.io/address/0x18aadcba11cbe7eba43fcbacdd5b2b5d6a019630", + "xHandle": "8nle0inun8ro5wn", + "xUrl": "https://twitter.com/8nle0inun8ro5wn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23333", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "!23333", + "displayName": "mo31985", + "fid": 23333, + "followers": 0, + "pfpUrl": "https://i.imgur.com/YYyOPcT.png", + "ensName": "mo31985.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x994cf01f34c51426bcb12bd30ff7079e280e1140", + "etherscanUrl": "https://etherscan.io/address/0x994cf01f34c51426bcb12bd30ff7079e280e1140", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_545080", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "azuji03", + "displayName": "azuji03", + "fid": 545080, + "followers": 42, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/114dfd82-f6b5-4462-4933-f7e907106800/rectcrop3", + "ensName": "azuji03.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8abef2aaa17cfa15d7dbaf9c0ee6a1e9a9e5ce06", + "etherscanUrl": "https://etherscan.io/address/0x8abef2aaa17cfa15d7dbaf9c0ee6a1e9a9e5ce06", + "xHandle": "keipoi_konami", + "xUrl": "https://twitter.com/keipoi_konami", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_22685", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "entropy", + "displayName": "Abhi", + "fid": 22685, + "followers": 11, + "pfpUrl": "https://i.imgur.com/f2eDH26.jpg", + "ensName": "theabhishek.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcf9631ec83ca364ac4b21276258ae0d3520e64d9", + "etherscanUrl": "https://etherscan.io/address/0xcf9631ec83ca364ac4b21276258ae0d3520e64d9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_467724", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "desmanbrr", + "displayName": "Ravil", + "fid": 467724, + "followers": 86, + "pfpUrl": "https://i.imgur.com/0bUyBf9.jpg", + "ensName": "desmanbrr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1ffc958bc75d6a7d7fc673f8de6bc3a580d1522e", + "etherscanUrl": "https://etherscan.io/address/0x1ffc958bc75d6a7d7fc673f8de6bc3a580d1522e", + "xHandle": "ravilrb", + "xUrl": "https://twitter.com/ravilrb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_191819", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "takanenohirose", + "displayName": "takanenohirose🎩🔮", + "fid": 191819, + "followers": 599, + "pfpUrl": "https://i.imgur.com/aJZoTzr.jpg", + "ensName": "takanenohirose.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x515aa4eb4c5fb6ec97c8a07d0d21f54f756808ce", + "etherscanUrl": "https://etherscan.io/address/0x515aa4eb4c5fb6ec97c8a07d0d21f54f756808ce", + "xHandle": "takanenohirose", + "xUrl": "https://twitter.com/takanenohirose", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_193949", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "dsssid", + "displayName": "dsssid.base.eth", + "fid": 193949, + "followers": 242, + "pfpUrl": "https://i.imgur.com/WtnirVt.jpg", + "ensName": "dsssid.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3383820dfc906cc59b989ff7e87e68f0aca78c77", + "etherscanUrl": "https://etherscan.io/address/0x3383820dfc906cc59b989ff7e87e68f0aca78c77", + "xHandle": "umizo_crypto", + "xUrl": "https://twitter.com/umizo_crypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_691944", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "blidge11", + "displayName": "blidgeくん.base.eth", + "fid": 691944, + "followers": 39, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/799f85ed-973a-40d8-8aee-e0f17eb59e00/rectcrop3", + "ensName": "0xblidge.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1df8f63fe76e03eef6433d49261ae98daa5f8a2c", + "etherscanUrl": "https://etherscan.io/address/0x1df8f63fe76e03eef6433d49261ae98daa5f8a2c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_343368", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "langrizzer", + "displayName": "Eduard", + "fid": 343368, + "followers": 567, + "pfpUrl": "https://i.imgur.com/N6jR2ll.jpg", + "ensName": "langrizzer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x35205135f0883e6a59af9cb64310c53003433122", + "etherscanUrl": "https://etherscan.io/address/0x35205135f0883e6a59af9cb64310c53003433122", + "xHandle": "prosgentat10570", + "xUrl": "https://twitter.com/prosgentat10570", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_194268", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "anotherplanet", + "displayName": "Lastwarrior", + "fid": 194268, + "followers": 488, + "pfpUrl": "https://i.imgur.com/cThsB16.jpg", + "ensName": "avactorwannabe.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc469b0e43cae9028d4764c875d9c8448f0bd4362", + "etherscanUrl": "https://etherscan.io/address/0xc469b0e43cae9028d4764c875d9c8448f0bd4362", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_292382", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "thericher", + "displayName": "TheRicher", + "fid": 292382, + "followers": 737, + "pfpUrl": "https://i.imgur.com/omLDBxS.png", + "ensName": "thericher.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe03287150592f827c3810929720837d878488224", + "etherscanUrl": "https://etherscan.io/address/0xe03287150592f827c3810929720837d878488224", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_635657", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "jm9", + "displayName": "JOSE MANUEL OLMO ", + "fid": 635657, + "followers": 10, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bf46446-edbb-4d6e-9fb2-d1e484c3ee00/original", + "ensName": "jmarte.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3e7c664d3448535c3f1ccf643c4fc870fe3874d3", + "etherscanUrl": "https://etherscan.io/address/0x3e7c664d3448535c3f1ccf643c4fc870fe3874d3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_504869", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "espr1t", + "displayName": "Espr1t", + "fid": 504869, + "followers": 9, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a8c747d-0e2a-4c62-d76c-81a1e0eddf00/rectcrop3", + "ensName": "espr1t.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4a24955a066d837d76a569534236d579891caf85", + "etherscanUrl": "https://etherscan.io/address/0x4a24955a066d837d76a569534236d579891caf85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_550651", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "web3ninjas.eth", + "displayName": "Web3 Ninjas", + "fid": 550651, + "followers": 28, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34a952d2-9381-45b6-ca20-fcfc84c0d800/original", + "ensName": "web3ninjas.eth", + "ensAvatarUrl": "https://euc.li/web3ninjas.eth", + "primaryAddress": "0x7529dd93b41013ac8ed0805241a692e23e50f2b8", + "etherscanUrl": "https://etherscan.io/address/0x7529dd93b41013ac8ed0805241a692e23e50f2b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_22848", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "ahaan", + "displayName": "Ahaan", + "fid": 22848, + "followers": 5, + "pfpUrl": "https://i.imgur.com/OJUqQFJ.png", + "ensName": "theahaan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf1e25b3486b90b46cf0a828ea1c068a951c2c930", + "etherscanUrl": "https://etherscan.io/address/0xf1e25b3486b90b46cf0a828ea1c068a951c2c930", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_476078", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "masumfirari", + "displayName": "Mehmet Mahsum Aktürk ", + "fid": 476078, + "followers": 218, + "pfpUrl": "https://i.imgur.com/roYufAl.jpg", + "ensName": "masumfirari.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9c6e96922df78053ebd7b530eac20464c2c6f346", + "etherscanUrl": "https://etherscan.io/address/0x9c6e96922df78053ebd7b530eac20464c2c6f346", + "xHandle": "masum47masum", + "xUrl": "https://twitter.com/masum47masum", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_567213", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "docninetta", + "displayName": "Nina ", + "fid": 567213, + "followers": 651, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ef206e0-5ea6-4bd7-79eb-5290e3e2e500/original", + "ensName": "docninetta.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbc24ceb5e0a885ded0adf9361954b57973c27b6e", + "etherscanUrl": "https://etherscan.io/address/0xbc24ceb5e0a885ded0adf9361954b57973c27b6e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17930", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "33333", + "displayName": "Mr Wick", + "fid": 17930, + "followers": 675, + "pfpUrl": "https://i.imgur.com/5IleRHj.jpg", + "ensName": "wick3.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x35a78f4828052e07ca98dab5d591daa0ac04944f", + "etherscanUrl": "https://etherscan.io/address/0x35a78f4828052e07ca98dab5d591daa0ac04944f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188365", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "miguel81", + "displayName": "Miguel", + "fid": 188365, + "followers": 396, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32c5b307-3f4b-4e6f-5cec-c15f6633a600/original", + "ensName": "miguelrivero.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x404ab3a49afda0e8d8313d3ef9499ab11c64895b", + "etherscanUrl": "https://etherscan.io/address/0x404ab3a49afda0e8d8313d3ef9499ab11c64895b", + "xHandle": "mrivero81", + "xUrl": "https://twitter.com/mrivero81", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_361913", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "0xmichel", + "displayName": "0xMich", + "fid": 361913, + "followers": 127, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ac8d499-88aa-48df-7680-57dfa13aed00/original", + "ensName": "0xapy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf2a7594190d0a719f43bb79f90a45414282e0261", + "etherscanUrl": "https://etherscan.io/address/0xf2a7594190d0a719f43bb79f90a45414282e0261", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_385236", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "xxxx19", + "displayName": "あとむん🍗", + "fid": 385236, + "followers": 508, + "pfpUrl": "https://i.imgur.com/JP7IVZv.jpg", + "ensName": "inxinxinxinx.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2e25b12de67501761998b5611d96d5e252b675ed", + "etherscanUrl": "https://etherscan.io/address/0x2e25b12de67501761998b5611d96d5e252b675ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_469663", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "bart1509", + "displayName": "Bartek", + "fid": 469663, + "followers": 6, + "pfpUrl": "https://i.imgur.com/tsUxX3Z.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x33e921d9ee1821e174a4f9d786dc067fee0b6275", + "etherscanUrl": "https://etherscan.io/address/0x33e921d9ee1821e174a4f9d786dc067fee0b6275", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_672833", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "ouchiboy", + "displayName": "Ouchiboy.base.eth", + "fid": 672833, + "followers": 64, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62354655-c793-480f-2be6-b6733017ad00/rectcrop3", + "ensName": "0xouchi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xed1be12b1e35967509389613277a99e2c20d2342", + "etherscanUrl": "https://etherscan.io/address/0xed1be12b1e35967509389613277a99e2c20d2342", + "xHandle": "ouchiblog", + "xUrl": "https://twitter.com/ouchiblog", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530273", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "nelsonmandela", + "displayName": "stambo.eth", + "fid": 530273, + "followers": 4, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/386b5602-6918-430f-ea31-990dea603600/rectcrop3", + "ensName": "stambo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x90c0bf8d71369d21f8addf0da33d21dcb0b1c384", + "etherscanUrl": "https://etherscan.io/address/0x90c0bf8d71369d21f8addf0da33d21dcb0b1c384", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_315565", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "yguod", + "displayName": "Yguod", + "fid": 315565, + "followers": 386, + "pfpUrl": "https://i.imgur.com/nilxXNe.jpg", + "ensName": "28031990.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf5ad933ad3cc37aff940b9d23984f52d95b80777", + "etherscanUrl": "https://etherscan.io/address/0xf5ad933ad3cc37aff940b9d23984f52d95b80777", + "xHandle": "slubbyd", + "xUrl": "https://twitter.com/slubbyd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_501829", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "hetfield", + "displayName": "Hetfield.base.eth", + "fid": 501829, + "followers": 259, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8bbfe624-d608-4dbd-a21b-e9203a939500/original", + "ensName": "jhetfield.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd7f7197f61905a71b933f8477e4208cf21a94e97", + "etherscanUrl": "https://etherscan.io/address/0xd7f7197f61905a71b933f8477e4208cf21a94e97", + "xHandle": "8leu", + "xUrl": "https://twitter.com/8leu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_604819", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "deepakm", + "displayName": "Dpk", + "fid": 604819, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5288cee-8439-4d95-5dc3-73f02384e700/rectcrop3", + "ensName": "deepakm.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x48a6b8df9882b8f0b93d724dd00a2826b65df1e2", + "etherscanUrl": "https://etherscan.io/address/0x48a6b8df9882b8f0b93d724dd00a2826b65df1e2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_443653", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "foulek94", + "displayName": "Jo", + "fid": 443653, + "followers": 190, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d0d51610-85a7-46b7-e5bc-aa4bf47de300/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0b7de1dd5a376fe1cc6c566d14a81c2b1b9cdff", + "etherscanUrl": "https://etherscan.io/address/0xc0b7de1dd5a376fe1cc6c566d14a81c2b1b9cdff", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_485406", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "zampas", + "displayName": "zampas", + "fid": 485406, + "followers": 592, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a8201bcd-3b0b-468c-76ef-bc12bff00000/original", + "ensName": "zampas.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd8ed40ae4a7ccc854b744892b13638412d2c1e04", + "etherscanUrl": "https://etherscan.io/address/0xd8ed40ae4a7ccc854b744892b13638412d2c1e04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_497021", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "!497021", + "displayName": null, + "fid": 497021, + "followers": 0, + "pfpUrl": null, + "ensName": "darenogare.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3fd391ac74f0569f73bacd1a798af04434be2dc0", + "etherscanUrl": "https://etherscan.io/address/0x3fd391ac74f0569f73bacd1a798af04434be2dc0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_565706", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "cryptojosh3", + "displayName": "Josh", + "fid": 565706, + "followers": 3, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f75d063-1526-4c4f-2c88-ebe76eb53c00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x82495afea7a975f637e68eb5f9aff15071d35bb0", + "etherscanUrl": "https://etherscan.io/address/0x82495afea7a975f637e68eb5f9aff15071d35bb0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_700312", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rocky9090", + "displayName": "Rocky", + "fid": 700312, + "followers": 88, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8e2adff1-835f-467c-8662-749e1cd96e00/original", + "ensName": "rocky909090.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x17f43f532b3f91c1628ff513290e730446cb9355", + "etherscanUrl": "https://etherscan.io/address/0x17f43f532b3f91c1628ff513290e730446cb9355", + "xHandle": "infin2", + "xUrl": "https://twitter.com/infin2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_328018", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "lucas1368", + "displayName": "Lucas6886", + "fid": 328018, + "followers": 626, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c70724a8-03c6-4c37-3aed-0b601ceeb500/original", + "ensName": "lucas1368.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb9c0a952105170706133b4d20d5e437ea147cd57", + "etherscanUrl": "https://etherscan.io/address/0xb9c0a952105170706133b4d20d5e437ea147cd57", + "xHandle": "lucas13692", + "xUrl": "https://twitter.com/lucas13692", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_490801", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "jreinds", + "displayName": "jreinds", + "fid": 490801, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/197380ec-e728-4a17-ca2f-ebf12b5ad600/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x65ecbb1855fd8e7eb91d993032b33b476d192df9", + "etherscanUrl": "https://etherscan.io/address/0x65ecbb1855fd8e7eb91d993032b33b476d192df9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_462302", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "barcellos1", + "displayName": "Adriano Barcellos", + "fid": 462302, + "followers": 31, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d916fb81-61fa-43e6-fd94-75db1a37b100/original", + "ensName": "barcellos1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x887cd07eb75d28c856ead2aaa707248227c19d11", + "etherscanUrl": "https://etherscan.io/address/0x887cd07eb75d28c856ead2aaa707248227c19d11", + "xHandle": "adriano23490", + "xUrl": "https://twitter.com/adriano23490", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_637667", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rauliqer", + "displayName": "Raul", + "fid": 637667, + "followers": 126, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e9e0e3d-7bfd-4aaa-b48a-274762bc4000/rectcrop3", + "ensName": "rauliqer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe6ac35c8ebba453589dc346a00419d3a5e10e954", + "etherscanUrl": "https://etherscan.io/address/0xe6ac35c8ebba453589dc346a00419d3a5e10e954", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_954204", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "dodisarachi", + "displayName": "dodisarachi \"base.eth\"", + "fid": 954204, + "followers": 77, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9833b8ab-1e8c-4a88-ee4f-c057ea166600/rectcrop3", + "ensName": "dodisarachi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1b61285055502c287f9022f8416ba53ddf0e982d", + "etherscanUrl": "https://etherscan.io/address/0x1b61285055502c287f9022f8416ba53ddf0e982d", + "xHandle": "dodisarachi", + "xUrl": "https://twitter.com/dodisarachi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23272", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "!23272", + "displayName": null, + "fid": 23272, + "followers": 1, + "pfpUrl": null, + "ensName": "tiiwariji.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x41f219c81722f3d2244f6f381e725e1f4875e796", + "etherscanUrl": "https://etherscan.io/address/0x41f219c81722f3d2244f6f381e725e1f4875e796", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_973754", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "sepert", + "displayName": "SeperIu", + "fid": 973754, + "followers": 10, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea704c3-afa4-429e-766a-92cb5eb70b00/rectcrop3", + "ensName": "aleks2211.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb57b0713b72cb43a089dce420db9aafaaa91be8d", + "etherscanUrl": "https://etherscan.io/address/0xb57b0713b72cb43a089dce420db9aafaaa91be8d", + "xHandle": "dirdvts", + "xUrl": "https://twitter.com/dirdvts", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_487365", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "toqeeralam", + "displayName": "TOEER ALAM", + "fid": 487365, + "followers": 22, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c9b0b95-86bd-4490-8ea4-e48c46b56e00/rectcrop3", + "ensName": "toqeer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf32e414a0229dabe661c911ef9bb1c77f4aa752f", + "etherscanUrl": "https://etherscan.io/address/0xf32e414a0229dabe661c911ef9bb1c77f4aa752f", + "xHandle": "toqeeralam151", + "xUrl": "https://twitter.com/toqeeralam151", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_238935", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "!238935", + "displayName": "Ram123", + "fid": 238935, + "followers": 7, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "ensName": "ram123.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd5f2de368439eed5527e88ea52a7fd44758aee99", + "etherscanUrl": "https://etherscan.io/address/0xd5f2de368439eed5527e88ea52a7fd44758aee99", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23097", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rajaram", + "displayName": null, + "fid": 23097, + "followers": 8, + "pfpUrl": null, + "ensName": "theurmila.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x55826f7459236341ee817f0478ee7832cd6f2e7f", + "etherscanUrl": "https://etherscan.io/address/0x55826f7459236341ee817f0478ee7832cd6f2e7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530188", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "chaad", + "displayName": "Bharat", + "fid": 530188, + "followers": 188, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/befb49d2-7865-43e3-8d89-613472ab6800/rectcrop3", + "ensName": "bkhirapara.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd2602c7bdfc9f413974e944280bbfae275d1b1b6", + "etherscanUrl": "https://etherscan.io/address/0xd2602c7bdfc9f413974e944280bbfae275d1b1b6", + "xHandle": "bktrader27", + "xUrl": "https://twitter.com/bktrader27", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_468614", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "flup7", + "displayName": "To Da Mun", + "fid": 468614, + "followers": 33, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c21d1eb0-fb63-41cb-690f-851beb5cc900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16e371a557347e620376f57e1ba52f4429fea1a9", + "etherscanUrl": "https://etherscan.io/address/0x16e371a557347e620376f57e1ba52f4429fea1a9", + "xHandle": "satoshilobster", + "xUrl": "https://twitter.com/satoshilobster", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491395", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "checco76.eth", + "displayName": "Francesco base.eth", + "fid": 491395, + "followers": 4, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f76d0910-cd8a-486d-1300-0542089a4e00/original", + "ensName": "checco76.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd51f5d708230554dc0e0bf6338bd68b77a50ceef", + "etherscanUrl": "https://etherscan.io/address/0xd51f5d708230554dc0e0bf6338bd68b77a50ceef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_327840", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "saboters", + "displayName": "Vladyslav", + "fid": 327840, + "followers": 188, + "pfpUrl": "https://i.imgur.com/NWjuJxR.jpg", + "ensName": "l3coin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdd3ca194d2b4299d0b7f1fc17a1357bfa2cef135", + "etherscanUrl": "https://etherscan.io/address/0xdd3ca194d2b4299d0b7f1fc17a1357bfa2cef135", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549208", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "ljolik", + "displayName": "Vasyl base.eth", + "fid": 549208, + "followers": 717, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75d4b30e-d19b-4615-e754-e4ca966f9200/rectcrop3", + "ensName": "ljolik.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x68615a1508ce4bab13e063e221b93e648fd448cc", + "etherscanUrl": "https://etherscan.io/address/0x68615a1508ce4bab13e063e221b93e648fd448cc", + "xHandle": "best0477", + "xUrl": "https://twitter.com/best0477", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491122", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "will1028", + "displayName": "Williams", + "fid": 491122, + "followers": 565, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d1b74c07-bc89-47bb-f6d6-07f665f26900/original", + "ensName": "will1028.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb7696dca94a198b4e3a10fb37c37101f02d42613", + "etherscanUrl": "https://etherscan.io/address/0xb7696dca94a198b4e3a10fb37c37101f02d42613", + "xHandle": "wei_40163414", + "xUrl": "https://twitter.com/wei_40163414", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_460569", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "oatao", + "displayName": "Thanaphon Rujipairoj", + "fid": 460569, + "followers": 167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f2668bd-807e-4d0e-e223-ff99d136ba00/original", + "ensName": "oatao.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf90e758bbd6065c8e068cc900885326d2eb24376", + "etherscanUrl": "https://etherscan.io/address/0xf90e758bbd6065c8e068cc900885326d2eb24376", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_520074", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "vaslivalex", + "displayName": "Alex", + "fid": 520074, + "followers": 75, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb57aa62-be0b-437b-146c-776d58c5d200/rectcrop3", + "ensName": "vaslivalex.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1f1f63f50f344142f671f78ffe7ee532a4c2b9b1", + "etherscanUrl": "https://etherscan.io/address/0x1f1f63f50f344142f671f78ffe7ee532a4c2b9b1", + "xHandle": "vaslivalex", + "xUrl": "https://twitter.com/vaslivalex", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_569358", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rlytrue.eth", + "displayName": "rlytrue.base.eth", + "fid": 569358, + "followers": 375, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2ff53b-b4f7-46c8-1037-940b234afa00/rectcrop3", + "ensName": "rlytrue.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x53ccd23337a4eaa48ae715cc4b0412373895b46d", + "etherscanUrl": "https://etherscan.io/address/0x53ccd23337a4eaa48ae715cc4b0412373895b46d", + "xHandle": "rlytrue", + "xUrl": "https://twitter.com/rlytrue", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_385534", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "kinsuke", + "displayName": "kinsuke", + "fid": 385534, + "followers": 22, + "pfpUrl": "https://i.imgur.com/uH2S2EX.jpg", + "ensName": "kinsuke5th.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x527e0db6ade4652c2a5bcc3f21b0f2d428ef5d87", + "etherscanUrl": "https://etherscan.io/address/0x527e0db6ade4652c2a5bcc3f21b0f2d428ef5d87", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1109134", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "odojak", + "displayName": "Kobasice", + "fid": 1109134, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/13cd6c7b-8fd2-4768-48ca-e32ac3620100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x16dc55fd5a008b62780d53d622bd89c914f0d6cd", + "etherscanUrl": "https://etherscan.io/address/0x16dc55fd5a008b62780d53d622bd89c914f0d6cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1415146", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "writer-rich", + "displayName": "writer-rich", + "fid": 1415146, + "followers": 2, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5567fc3e-c6a7-4b6d-b410-a5c46554ab00/original", + "ensName": "writer-rich.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5f0895edc43ce1e76f52c9f5f8baf8f2c01cb1a1", + "etherscanUrl": "https://etherscan.io/address/0x5f0895edc43ce1e76f52c9f5f8baf8f2c01cb1a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491308", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "markbaga", + "displayName": "Mark", + "fid": 491308, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b18224c-2e28-49e3-9fd1-03c04f7dc800/rectcrop3", + "ensName": "markbaga.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x33a0e001a63a3d0285728a59bb4b80939cb0d1c2", + "etherscanUrl": "https://etherscan.io/address/0x33a0e001a63a3d0285728a59bb4b80939cb0d1c2", + "xHandle": "markbaga_sha", + "xUrl": "https://twitter.com/markbaga_sha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_723641", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "oxana23", + "displayName": "Oxana", + "fid": 723641, + "followers": 84, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2eff46a9-f1ea-4f0a-5057-5276c1975c00/rectcrop3", + "ensName": "oxandra.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcb760072893ea9b70a729bd431379f5de50391a6", + "etherscanUrl": "https://etherscan.io/address/0xcb760072893ea9b70a729bd431379f5de50391a6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_348310", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rarecoremore.eth", + "displayName": "rarecoremore.eth", + "fid": 348310, + "followers": 99, + "pfpUrl": "https://i.imgur.com/xgDJoAR.jpg", + "ensName": "rarecoremore.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x38ae28914af8cb984344f4c62733c55c3e676b85", + "etherscanUrl": "https://etherscan.io/address/0x38ae28914af8cb984344f4c62733c55c3e676b85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_331144", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "yesaran", + "displayName": "Yesaran.base.eth", + "fid": 331144, + "followers": 119, + "pfpUrl": "https://i.imgur.com/ZUjdlTS.jpg", + "ensName": "yesaran.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xfc18308fa382540b4f559b21e358be8fc9fb1e7f", + "etherscanUrl": "https://etherscan.io/address/0xfc18308fa382540b4f559b21e358be8fc9fb1e7f", + "xHandle": "dilvinsaran", + "xUrl": "https://twitter.com/dilvinsaran", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_529440", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "ifox", + "displayName": "FoX", + "fid": 529440, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/50747e96-c407-4bc4-e5ec-9b711c96ae00/original", + "ensName": "ifoxlive.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf2aaea375a7ce00a1d7ca64e1b5e39e2e27f13fe", + "etherscanUrl": "https://etherscan.io/address/0xf2aaea375a7ce00a1d7ca64e1b5e39e2e27f13fe", + "xHandle": "ifoxcrypto", + "xUrl": "https://twitter.com/ifoxcrypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260655", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "kriptoyd107", + "displayName": "kriptoyd107.base.eth", + "fid": 260655, + "followers": 12, + "pfpUrl": "https://i.imgur.com/ACXCMsH.jpg", + "ensName": "kriptoyd107.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x88a6aa6be20934a3994e93ab57ef748fcba2ce84", + "etherscanUrl": "https://etherscan.io/address/0x88a6aa6be20934a3994e93ab57ef748fcba2ce84", + "xHandle": "kriptoyd_107", + "xUrl": "https://twitter.com/kriptoyd_107", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_24224", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "vtnha5504.eth", + "displayName": "VTN.Eth", + "fid": 24224, + "followers": 864, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ac73bbf-37f9-4d9b-8387-1f46a7b4e500/original", + "ensName": "vtnha.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x28be7734e65b8990e58a26d5e7ce61b00f98452d", + "etherscanUrl": "https://etherscan.io/address/0x28be7734e65b8990e58a26d5e7ce61b00f98452d", + "xHandle": "frajk88", + "xUrl": "https://twitter.com/frajk88", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_17937", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "rka", + "displayName": "Rohit Kumar Anant", + "fid": 17937, + "followers": 891, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/32cbd8ea-2ea3-4af5-3258-436f42eb9500/original", + "ensName": "rudra.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x950d0fc12c9c0cbfa03328d20dbd7cf2bbddb4d8", + "etherscanUrl": "https://etherscan.io/address/0x950d0fc12c9c0cbfa03328d20dbd7cf2bbddb4d8", + "xHandle": "0xrohitkumar", + "xUrl": "https://twitter.com/0xrohitkumar", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_536720", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "kirysha91", + "displayName": "kirysha91.base.eth", + "fid": 536720, + "followers": 247, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1205f7fd-2f6a-4ba5-a91b-e8445332b800/original", + "ensName": "kirysha91.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x283505bbbd1f82d3f03da9af99b94b3f008acc5a", + "etherscanUrl": "https://etherscan.io/address/0x283505bbbd1f82d3f03da9af99b94b3f008acc5a", + "xHandle": "kirysha_91", + "xUrl": "https://twitter.com/kirysha_91", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_745700", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "!745700", + "displayName": null, + "fid": 745700, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64dfde617bccd7cf4e0b337d049b68cd7703fabc", + "etherscanUrl": "https://etherscan.io/address/0x64dfde617bccd7cf4e0b337d049b68cd7703fabc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_507525", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "marekboruvka", + "displayName": "Marek Borůvka", + "fid": 507525, + "followers": 14, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a53753f-5c7d-4921-ee70-2022c3afc000/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x528c8c27059495bf47af57c1d52a2891ed9fc4b2", + "etherscanUrl": "https://etherscan.io/address/0x528c8c27059495bf47af57c1d52a2891ed9fc4b2", + "xHandle": "marek_boruvka", + "xUrl": "https://twitter.com/marek_boruvka", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_329429", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "sigrlami", + "displayName": "Sigrlami ⚛️❄️", + "fid": 329429, + "followers": 181, + "pfpUrl": "https://i.imgur.com/DgMmsYB.jpg", + "ensName": "sigrlami.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3665a7da67b51d6cd6ac25a361b7f47936d7434a", + "etherscanUrl": "https://etherscan.io/address/0x3665a7da67b51d6cd6ac25a361b7f47936d7434a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_452573", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "powell601", + "displayName": "Adam P", + "fid": 452573, + "followers": 78, + "pfpUrl": "https://i.imgur.com/dbXdWN1.jpg", + "ensName": "powell601.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0f053947f0c5f41ae460e6cb7b3e55a5bcabd78d", + "etherscanUrl": "https://etherscan.io/address/0x0f053947f0c5f41ae460e6cb7b3e55a5bcabd78d", + "xHandle": "thepatr98056045", + "xUrl": "https://twitter.com/thepatr98056045", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_501472", + "balanceRaw": "579000000000000000000", + "balanceFormatted": "579", + "lastTransferAt": null, + "username": "denerden.eth", + "displayName": "DenErden", + "fid": 501472, + "followers": 219, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/purple.jpg", + "ensName": "denerden.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x863ea1f809265222173c8b7daaa5c6c5e7505d9a", + "etherscanUrl": "https://etherscan.io/address/0x863ea1f809265222173c8b7daaa5c6c5e7505d9a", + "xHandle": "denis47436746", + "xUrl": "https://twitter.com/denis47436746", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa642b91ff941fb68919d1877e9937f3e369dfd68", + "balanceRaw": "568820944249999999998", + "balanceFormatted": "568.820944249999999998", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gnarscommunity.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa642b91ff941fb68919d1877e9937f3e369dfd68", + "etherscanUrl": "https://etherscan.io/address/0xa642b91ff941fb68919d1877e9937f3e369dfd68", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_798156", + "balanceRaw": "558131571792586311056", + "balanceFormatted": "558.131571792586311056", + "lastTransferAt": null, + "username": "samuray8", + "displayName": "Samir", + "fid": 798156, + "followers": 157, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4bf5a75a-bba4-4898-bced-9d17e23a1700/rectcrop3", + "ensName": "samuray88.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1bf5c91d6172b5026b8a85ce476ac30ec4e79478", + "etherscanUrl": "https://etherscan.io/address/0x1bf5c91d6172b5026b8a85ce476ac30ec4e79478", + "xHandle": "dzhafarov_samir", + "xUrl": "https://twitter.com/dzhafarov_samir", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x069e1ada570e659451ec2a035317220cd1c9a552", + "balanceRaw": "557923376107735208290", + "balanceFormatted": "557.92337610773520829", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vinalink.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x069e1ada570e659451ec2a035317220cd1c9a552", + "etherscanUrl": "https://etherscan.io/address/0x069e1ada570e659451ec2a035317220cd1c9a552", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_441813", + "balanceRaw": "557762390700768087738", + "balanceFormatted": "557.762390700768087738", + "lastTransferAt": null, + "username": "orcounter", + "displayName": "orcounter.base.eth🥷🏼📄", + "fid": 441813, + "followers": 167, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45c26562-9aef-4b9c-0ef1-321c7c75e700/original", + "ensName": "orcounterethereum.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8dcc798648eec835e58166aecd17e2b0c5009e6a", + "etherscanUrl": "https://etherscan.io/address/0x8dcc798648eec835e58166aecd17e2b0c5009e6a", + "xHandle": "orcounter", + "xUrl": "https://twitter.com/orcounter", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3036bdf8921a02bc238eb23e0a1a494e03488952", + "balanceRaw": "555543788965457237735", + "balanceFormatted": "555.543788965457237735", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3036bdf8921a02bc238eb23e0a1a494e03488952", + "etherscanUrl": "https://etherscan.io/address/0x3036bdf8921a02bc238eb23e0a1a494e03488952", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_319086", + "balanceRaw": "519626181522662084676", + "balanceFormatted": "519.626181522662084676", + "lastTransferAt": null, + "username": "antonmakarenko", + "displayName": "Anton", + "fid": 319086, + "followers": 123, + "pfpUrl": "https://i.imgur.com/i8l5IAH.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3de04855af6131db60955aad9a93bb97770ef7e8", + "etherscanUrl": "https://etherscan.io/address/0x3de04855af6131db60955aad9a93bb97770ef7e8", + "xHandle": "antonma01667923", + "xUrl": "https://twitter.com/antonma01667923", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_261827", + "balanceRaw": "518371000647843365089", + "balanceFormatted": "518.371000647843365089", + "lastTransferAt": null, + "username": "danielb5555", + "displayName": "Danielb5555.eth", + "fid": 261827, + "followers": 62, + "pfpUrl": "https://i.imgur.com/K8e8EMU.jpg", + "ensName": "danielb5555.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc0582723721128f1b547680fcda9bc5a5276b7de", + "etherscanUrl": "https://etherscan.io/address/0xc0582723721128f1b547680fcda9bc5a5276b7de", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_345541", + "balanceRaw": "514878666768049664087", + "balanceFormatted": "514.878666768049664087", + "lastTransferAt": null, + "username": "kasoutarou", + "displayName": "Kasoutaro.base.eth", + "fid": 345541, + "followers": 1061, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", + "ensName": "kasoutarou666.eth", + "ensAvatarUrl": "https://euc.li/kasoutarou666.eth", + "primaryAddress": "0xe059a37d87c49503b283a2f7a3a5d4b652ff7351", + "etherscanUrl": "https://etherscan.io/address/0xe059a37d87c49503b283a2f7a3a5d4b652ff7351", + "xHandle": "kasoutaro_", + "xUrl": "https://twitter.com/kasoutaro_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdcfae64f4a58728b10e1e16b53b40592166acae3", + "balanceRaw": "510584487148627824052", + "balanceFormatted": "510.584487148627824052", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "hage3.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdcfae64f4a58728b10e1e16b53b40592166acae3", + "etherscanUrl": "https://etherscan.io/address/0xdcfae64f4a58728b10e1e16b53b40592166acae3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246869", + "balanceRaw": "509563780995403352023", + "balanceFormatted": "509.563780995403352023", + "lastTransferAt": null, + "username": "cryptoduck", + "displayName": "cryptoduck.base.eth", + "fid": 246869, + "followers": 573, + "pfpUrl": "https://i.imgur.com/lpjxXtU.jpg", + "ensName": "tripleline.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9636e1aa181f11840cb9d673f0c5094317b35a48", + "etherscanUrl": "https://etherscan.io/address/0x9636e1aa181f11840cb9d673f0c5094317b35a48", + "xHandle": "cryptoduck_th", + "xUrl": "https://twitter.com/cryptoduck_th", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xebacd448a23f63a156841d440778be89613be97b", + "balanceRaw": "506094245448984615915", + "balanceFormatted": "506.094245448984615915", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "spyr0.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xebacd448a23f63a156841d440778be89613be97b", + "etherscanUrl": "https://etherscan.io/address/0xebacd448a23f63a156841d440778be89613be97b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcc0528aae2f84089f1ae7d5f1d6ecef2c39a338a", + "balanceRaw": "505000000000000000000", + "balanceFormatted": "505", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcc0528aae2f84089f1ae7d5f1d6ecef2c39a338a", + "etherscanUrl": "https://etherscan.io/address/0xcc0528aae2f84089f1ae7d5f1d6ecef2c39a338a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf34e812b37d7fb9dc4b2c786ca47df314aa2e609", + "balanceRaw": "500000000000000000000", + "balanceFormatted": "500", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf34e812b37d7fb9dc4b2c786ca47df314aa2e609", + "etherscanUrl": "https://etherscan.io/address/0xf34e812b37d7fb9dc4b2c786ca47df314aa2e609", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1041274", + "balanceRaw": "500000000000000000000", + "balanceFormatted": "500", + "lastTransferAt": null, + "username": "debbywebby", + "displayName": "Debbywebby", + "fid": 1041274, + "followers": 12, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98a99cd7-bd56-46ef-f50a-0a44f7d92e00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1be6d1538d752030ad26924a0a45fce5463b5d7e", + "etherscanUrl": "https://etherscan.io/address/0x1be6d1538d752030ad26924a0a45fce5463b5d7e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_231590", + "balanceRaw": "497419444839174107196", + "balanceFormatted": "497.419444839174107196", + "lastTransferAt": null, + "username": "chukibcn.eth", + "displayName": "chukibcn.base.eth", + "fid": 231590, + "followers": 56, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/117de7c7-979b-4946-69f9-2ae23a0aa300/original", + "ensName": "chukibcn.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x30a3645b667f802f4c8f3c0d620243ebd1a872ef", + "etherscanUrl": "https://etherscan.io/address/0x30a3645b667f802f4c8f3c0d620243ebd1a872ef", + "xHandle": "chukibcn", + "xUrl": "https://twitter.com/chukibcn", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_636141", + "balanceRaw": "486249047376651523666", + "balanceFormatted": "486.249047376651523666", + "lastTransferAt": null, + "username": "renard1987", + "displayName": "Renaud", + "fid": 636141, + "followers": 78, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e0ed98e2-6d18-48a1-18dc-4fbc56d82100/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9d6e6475cbe6578deb778f8454141661206e668e", + "etherscanUrl": "https://etherscan.io/address/0x9d6e6475cbe6578deb778f8454141661206e668e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_213998", + "balanceRaw": "485765859072014032591", + "balanceFormatted": "485.765859072014032591", + "lastTransferAt": null, + "username": "tyeohando", + "displayName": "Tyeohando", + "fid": 213998, + "followers": 8, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26b61622-6efc-4f6e-ebce-93ea209e8b00/original", + "ensName": "iumsolal.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbafd71bbf31dfa0a8ab4fe3db46d46ade9e4f5ea", + "etherscanUrl": "https://etherscan.io/address/0xbafd71bbf31dfa0a8ab4fe3db46d46ade9e4f5ea", + "xHandle": "iumsolal", + "xUrl": "https://twitter.com/iumsolal", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf795d108d97192fe0a5f673f7c9e12e23b739cee", + "balanceRaw": "484017763204840973349", + "balanceFormatted": "484.017763204840973349", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf795d108d97192fe0a5f673f7c9e12e23b739cee", + "etherscanUrl": "https://etherscan.io/address/0xf795d108d97192fe0a5f673f7c9e12e23b739cee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_942435", + "balanceRaw": "479402800933361204378", + "balanceFormatted": "479.402800933361204378", + "lastTransferAt": null, + "username": "ephraimsylar", + "displayName": "ephraimsylar", + "fid": 942435, + "followers": 59, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/00e158b1-7fe5-4a7f-c3d5-8b9cefafbc00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8d2a253a5885806aa14e583c80c8833a904fb252", + "etherscanUrl": "https://etherscan.io/address/0x8d2a253a5885806aa14e583c80c8833a904fb252", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa031a34370fda43385d8ea2be565e01dd9c3de04", + "balanceRaw": "477825353210672087216", + "balanceFormatted": "477.825353210672087216", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa031a34370fda43385d8ea2be565e01dd9c3de04", + "etherscanUrl": "https://etherscan.io/address/0xa031a34370fda43385d8ea2be565e01dd9c3de04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_12239", + "balanceRaw": "475405542066214741636", + "balanceFormatted": "475.405542066214741636", + "lastTransferAt": null, + "username": "alitiknazoglu", + "displayName": "ali.base.eth 🟧", + "fid": 12239, + "followers": 6447, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49d66dd8-c333-4a2c-b23a-2329bed2bb00/original", + "ensName": "alitiknazoglu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x88b8e5606a99dce34753b2f4668e51fc05e62a28", + "etherscanUrl": "https://etherscan.io/address/0x88b8e5606a99dce34753b2f4668e51fc05e62a28", + "xHandle": "alitiknazoglu", + "xUrl": "https://twitter.com/alitiknazoglu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd83407e03fc39faffb91ffccfa7e505616adc4ba", + "balanceRaw": "471084833515048918979", + "balanceFormatted": "471.084833515048918979", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd83407e03fc39faffb91ffccfa7e505616adc4ba", + "etherscanUrl": "https://etherscan.io/address/0xd83407e03fc39faffb91ffccfa7e505616adc4ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_227997", + "balanceRaw": "470630982383370194631", + "balanceFormatted": "470.630982383370194631", + "lastTransferAt": null, + "username": "developovertime", + "displayName": "developovertime.base.eth", + "fid": 227997, + "followers": 231, + "pfpUrl": "https://i.imgur.com/1UV0TTy.jpg", + "ensName": "developovertime.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6438ace21cf5259cd7cf6e578ada5d512505ade2", + "etherscanUrl": "https://etherscan.io/address/0x6438ace21cf5259cd7cf6e578ada5d512505ade2", + "xHandle": "cuongnh2405", + "xUrl": "https://twitter.com/cuongnh2405", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_943989", + "balanceRaw": "470457937766084844959", + "balanceFormatted": "470.457937766084844959", + "lastTransferAt": null, + "username": "vaniamonteiro", + "displayName": "vaniamonteiro", + "fid": 943989, + "followers": 11, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/daa854a3-3bb2-49f3-1993-860ea4e12200/rectcrop3", + "ensName": "vaniamonteiro.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9366f2025e79c2e4a67c67c25f308336f95a702f", + "etherscanUrl": "https://etherscan.io/address/0x9366f2025e79c2e4a67c67c25f308336f95a702f", + "xHandle": "vnia_monteiro", + "xUrl": "https://twitter.com/vnia_monteiro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_457868", + "balanceRaw": "460422240958302797399", + "balanceFormatted": "460.422240958302797399", + "lastTransferAt": null, + "username": "cryptoq8", + "displayName": "ahmed", + "fid": 457868, + "followers": 20, + "pfpUrl": "https://i.imgur.com/Mi2Bzs7.jpg", + "ensName": "cryptoq8ty.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb21e458214af0348cf57a2a74851307023267bb2", + "etherscanUrl": "https://etherscan.io/address/0xb21e458214af0348cf57a2a74851307023267bb2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b7cea5e73fd38b77dcb2f4c22c2c5addc1a1053", + "balanceRaw": "451178303383716466223", + "balanceFormatted": "451.178303383716466223", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b7cea5e73fd38b77dcb2f4c22c2c5addc1a1053", + "etherscanUrl": "https://etherscan.io/address/0x8b7cea5e73fd38b77dcb2f4c22c2c5addc1a1053", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189119", + "balanceRaw": "450609570596952882457", + "balanceFormatted": "450.609570596952882457", + "lastTransferAt": null, + "username": "!189119", + "displayName": null, + "fid": 189119, + "followers": 1, + "pfpUrl": null, + "ensName": "evgeniyp.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xacfea5dd8fb15d893fef331391c8df21df719603", + "etherscanUrl": "https://etherscan.io/address/0xacfea5dd8fb15d893fef331391c8df21df719603", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_464655", + "balanceRaw": "450120709052210294818", + "balanceFormatted": "450.120709052210294818", + "lastTransferAt": null, + "username": "sgocoin.eth", + "displayName": "Sgocoin", + "fid": 464655, + "followers": 36, + "pfpUrl": "https://i.imgur.com/fQzqPwW.jpg", + "ensName": "sgocoin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x829b89fc4b9a4f5b213178f3326a65f76b30bbf2", + "etherscanUrl": "https://etherscan.io/address/0x829b89fc4b9a4f5b213178f3326a65f76b30bbf2", + "xHandle": "sgocoin", + "xUrl": "https://twitter.com/sgocoin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x931cc858c082107fc58e4fa58b84401d0e5cb298", + "balanceRaw": "445228353515469920255", + "balanceFormatted": "445.228353515469920255", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x931cc858c082107fc58e4fa58b84401d0e5cb298", + "etherscanUrl": "https://etherscan.io/address/0x931cc858c082107fc58e4fa58b84401d0e5cb298", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0c0aed1deb816aadce6fae355f28b6a052461d44", + "balanceRaw": "445140574262232536720", + "balanceFormatted": "445.14057426223253672", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0c0aed1deb816aadce6fae355f28b6a052461d44", + "etherscanUrl": "https://etherscan.io/address/0x0c0aed1deb816aadce6fae355f28b6a052461d44", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9bb30ce78d45ba06c4069856a1d455db92e960cf", + "balanceRaw": "444220554799950690025", + "balanceFormatted": "444.220554799950690025", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9bb30ce78d45ba06c4069856a1d455db92e960cf", + "etherscanUrl": "https://etherscan.io/address/0x9bb30ce78d45ba06c4069856a1d455db92e960cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_204214", + "balanceRaw": "439614856836077318270", + "balanceFormatted": "439.61485683607731827", + "lastTransferAt": null, + "username": "looking4ward.eth", + "displayName": "looking4ward.base.eth 🎩", + "fid": 204214, + "followers": 384, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2406e9-7014-4ca9-df4d-da0d10571200/original", + "ensName": "looking4ward.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2adb7424d5935797bbdad694126950e427b2c541", + "etherscanUrl": "https://etherscan.io/address/0x2adb7424d5935797bbdad694126950e427b2c541", + "xHandle": "back2control", + "xUrl": "https://twitter.com/back2control", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_641265", + "balanceRaw": "437668206525621799219", + "balanceFormatted": "437.668206525621799219", + "lastTransferAt": null, + "username": "ruby0999", + "displayName": "Ruby0999", + "fid": 641265, + "followers": 104, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/920cc07f-97c2-46e9-4ed4-1caab9b5c100/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa325b095e471828eb8a811d8d602f850608a23c5", + "etherscanUrl": "https://etherscan.io/address/0xa325b095e471828eb8a811d8d602f850608a23c5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19489", + "balanceRaw": "433058629426831776836", + "balanceFormatted": "433.058629426831776836", + "lastTransferAt": null, + "username": "splits", + "displayName": "Splits", + "fid": 19489, + "followers": 738, + "pfpUrl": "https://i.imgur.com/BbVaaBZ.jpg", + "ensName": "splits.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd88f97f96d2f1ec28b18714a1e98ed6023194e7f", + "etherscanUrl": "https://etherscan.io/address/0xd88f97f96d2f1ec28b18714a1e98ed6023194e7f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_467756", + "balanceRaw": "424484622380888985205", + "balanceFormatted": "424.484622380888985205", + "lastTransferAt": null, + "username": "marticam", + "displayName": "MartiCAM", + "fid": 467756, + "followers": 73, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/283cd929-a845-4c45-12b1-80012f992000/original", + "ensName": "marticam.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa3d217c457ddf78efd01569940c5be7d6dcf5c17", + "etherscanUrl": "https://etherscan.io/address/0xa3d217c457ddf78efd01569940c5be7d6dcf5c17", + "xHandle": "marticamm", + "xUrl": "https://twitter.com/marticamm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_550747", + "balanceRaw": "420872716438919912331", + "balanceFormatted": "420.872716438919912331", + "lastTransferAt": null, + "username": "long-story-short", + "displayName": "Alex Usoltcev 🐲🎭🥷🏼", + "fid": 550747, + "followers": 220, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64755b4b-e1de-4b05-4a9b-f77e56d85f00/original", + "ensName": "long-story-short.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc7079df2adaf6976f7e8b4d2641ffeacad583982", + "etherscanUrl": "https://etherscan.io/address/0xc7079df2adaf6976f7e8b4d2641ffeacad583982", + "xHandle": "usoltceff", + "xUrl": "https://twitter.com/usoltceff", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd0ccfeef904cce8e0c70014db37e5133a6a8aa1c", + "balanceRaw": "420000000000000000000", + "balanceFormatted": "420", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dgn2rgn.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd0ccfeef904cce8e0c70014db37e5133a6a8aa1c", + "etherscanUrl": "https://etherscan.io/address/0xd0ccfeef904cce8e0c70014db37e5133a6a8aa1c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13986", + "balanceRaw": "420000000000000000000", + "balanceFormatted": "420", + "lastTransferAt": null, + "username": "zeugh", + "displayName": "Zeugh", + "fid": 13986, + "followers": 462, + "pfpUrl": "https://arweave.net/gjAzfpcJcHqviSnYuUI5ElEQT9b934ShxrUQ-WVolZ0/5302.png/", + "ensName": "zeugh.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf7253a0e87e39d2cd6365919d4a3d56d431d0041", + "etherscanUrl": "https://etherscan.io/address/0xf7253a0e87e39d2cd6365919d4a3d56d431d0041", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_876409", + "balanceRaw": "419354184640405169863", + "balanceFormatted": "419.354184640405169863", + "lastTransferAt": null, + "username": "fernandoferreira", + "displayName": "Fernando", + "fid": 876409, + "followers": 291, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/818ebeb9-90e7-43cd-554c-4b3cba6c2000/original", + "ensName": "fernandoferreira.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1835fdecd8693096d101db78695b3d9fbe813b4a", + "etherscanUrl": "https://etherscan.io/address/0x1835fdecd8693096d101db78695b3d9fbe813b4a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e815d08d25bbe441dd1ddfc5fd6a88bd5523776", + "balanceRaw": "418108251918675192515", + "balanceFormatted": "418.108251918675192515", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "nekoyama.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5e815d08d25bbe441dd1ddfc5fd6a88bd5523776", + "etherscanUrl": "https://etherscan.io/address/0x5e815d08d25bbe441dd1ddfc5fd6a88bd5523776", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_561220", + "balanceRaw": "417432449218907596602", + "balanceFormatted": "417.432449218907596602", + "lastTransferAt": null, + "username": "hodlers", + "displayName": "HODL777", + "fid": 561220, + "followers": 224, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6294f151-74c1-4b23-0498-ff0f227c8d00/rectcrop3", + "ensName": "nidouzi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf90684d4543a190fbf0caac14d9cc7727ddd9f3d", + "etherscanUrl": "https://etherscan.io/address/0xf90684d4543a190fbf0caac14d9cc7727ddd9f3d", + "xHandle": "mizuko05402978", + "xUrl": "https://twitter.com/mizuko05402978", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x81a981291d1c5b071c4a5119d3b69bbc376660f2", + "balanceRaw": "416238236285176311309", + "balanceFormatted": "416.238236285176311309", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x81a981291d1c5b071c4a5119d3b69bbc376660f2", + "etherscanUrl": "https://etherscan.io/address/0x81a981291d1c5b071c4a5119d3b69bbc376660f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1", + "balanceRaw": "410879583561644518301", + "balanceFormatted": "410.879583561644518301", + "lastTransferAt": null, + "username": "farcaster", + "displayName": "Farcaster", + "fid": 1, + "followers": 73898, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef803ee0-a0de-4c34-c879-2a4888086e00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb83ae472f108049828db5f429595c4b5932b62c", + "etherscanUrl": "https://etherscan.io/address/0xdb83ae472f108049828db5f429595c4b5932b62c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5717d0ffef36b732ac3ca515aa3d3e17a98e21aa", + "balanceRaw": "410582288946047552287", + "balanceFormatted": "410.582288946047552287", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "angelstar8.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5717d0ffef36b732ac3ca515aa3d3e17a98e21aa", + "etherscanUrl": "https://etherscan.io/address/0x5717d0ffef36b732ac3ca515aa3d3e17a98e21aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7bf90111ad7c22bec9e9dff8a01a44713cc1b1b6", + "balanceRaw": "409345801650000000000", + "balanceFormatted": "409.34580165", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7bf90111ad7c22bec9e9dff8a01a44713cc1b1b6", + "etherscanUrl": "https://etherscan.io/address/0x7bf90111ad7c22bec9e9dff8a01a44713cc1b1b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_291595", + "balanceRaw": "409205616540705209852", + "balanceFormatted": "409.205616540705209852", + "lastTransferAt": null, + "username": "cryptocrew", + "displayName": "Andrii", + "fid": 291595, + "followers": 773, + "pfpUrl": "https://i.imgur.com/CPFQLXi.jpg", + "ensName": "casinojoker.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8dee57809ed954a9fd0cacf6eb1f46b980b57017", + "etherscanUrl": "https://etherscan.io/address/0x8dee57809ed954a9fd0cacf6eb1f46b980b57017", + "xHandle": "c43andrii", + "xUrl": "https://twitter.com/c43andrii", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcc037ef399217bfc156c0eb778458ba7d89c6080", + "balanceRaw": "408958995691053556941", + "balanceFormatted": "408.958995691053556941", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcc037ef399217bfc156c0eb778458ba7d89c6080", + "etherscanUrl": "https://etherscan.io/address/0xcc037ef399217bfc156c0eb778458ba7d89c6080", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_563336", + "balanceRaw": "408724645775703518778", + "balanceFormatted": "408.724645775703518778", + "lastTransferAt": null, + "username": "marvinsouth", + "displayName": "Marvin base.eth", + "fid": 563336, + "followers": 120, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc646ca5-6775-479d-1328-a9110e3bc100/rectcrop3", + "ensName": "marvinsouth.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5c41cd9a334db9ecc24189f9741f7b4691b4d79e", + "etherscanUrl": "https://etherscan.io/address/0x5c41cd9a334db9ecc24189f9741f7b4691b4d79e", + "xHandle": "martintsl1", + "xUrl": "https://twitter.com/martintsl1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_338952", + "balanceRaw": "408700802686798791091", + "balanceFormatted": "408.700802686798791091", + "lastTransferAt": null, + "username": "!338952", + "displayName": null, + "fid": 338952, + "followers": 0, + "pfpUrl": null, + "ensName": "haciyatmaz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa51fab99348b58082154a96fd2a7d92600a0e930", + "etherscanUrl": "https://etherscan.io/address/0xa51fab99348b58082154a96fd2a7d92600a0e930", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_239115", + "balanceRaw": "408597789098418030299", + "balanceFormatted": "408.597789098418030299", + "lastTransferAt": null, + "username": "aknetwork", + "displayName": "akof.base.eth", + "fid": 239115, + "followers": 298, + "pfpUrl": "https://i.imgur.com/4HtMGSw.jpg", + "ensName": "aknetwork.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8433c5cae120a9f00e7732505077b9e5a58cac13", + "etherscanUrl": "https://etherscan.io/address/0x8433c5cae120a9f00e7732505077b9e5a58cac13", + "xHandle": "aknetwork", + "xUrl": "https://twitter.com/aknetwork", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x50763add868fd7361178342fc055eaa2b95f6846", + "balanceRaw": "406518657098861770629", + "balanceFormatted": "406.518657098861770629", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x50763add868fd7361178342fc055eaa2b95f6846", + "etherscanUrl": "https://etherscan.io/address/0x50763add868fd7361178342fc055eaa2b95f6846", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x572638047ea58155299638c1033ddd5c39fdc979", + "balanceRaw": "400000000000000000000", + "balanceFormatted": "400", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x572638047ea58155299638c1033ddd5c39fdc979", + "etherscanUrl": "https://etherscan.io/address/0x572638047ea58155299638c1033ddd5c39fdc979", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_352607", + "balanceRaw": "396621179851688510979", + "balanceFormatted": "396.621179851688510979", + "lastTransferAt": null, + "username": "emkey", + "displayName": "Mehmet", + "fid": 352607, + "followers": 74, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24bb623d-742e-463a-7c84-27fcf4716800/original", + "ensName": "0xemkey.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb998a0b96ca805741d1ed490431d1a1acdfb2f18", + "etherscanUrl": "https://etherscan.io/address/0xb998a0b96ca805741d1ed490431d1a1acdfb2f18", + "xHandle": "0xemkey", + "xUrl": "https://twitter.com/0xemkey", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc1dbf7bfb12a3bfac17429d851df90fac710acc5", + "balanceRaw": "388574335785471986732", + "balanceFormatted": "388.574335785471986732", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc1dbf7bfb12a3bfac17429d851df90fac710acc5", + "etherscanUrl": "https://etherscan.io/address/0xc1dbf7bfb12a3bfac17429d851df90fac710acc5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188340", + "balanceRaw": "380184956111738447738", + "balanceFormatted": "380.184956111738447738", + "lastTransferAt": null, + "username": "lionking", + "displayName": "Lionking", + "fid": 188340, + "followers": 760, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5620c582-e221-4ff1-e6fb-c9a166bd4b00/original", + "ensName": "aonwei.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x510d8544d19611fe198353d38b00a8499a7449ca", + "etherscanUrl": "https://etherscan.io/address/0x510d8544d19611fe198353d38b00a8499a7449ca", + "xHandle": "saman22255", + "xUrl": "https://twitter.com/saman22255", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_986193", + "balanceRaw": "373576482903118972866", + "balanceFormatted": "373.576482903118972866", + "lastTransferAt": null, + "username": "!986193", + "displayName": null, + "fid": 986193, + "followers": 0, + "pfpUrl": null, + "ensName": "04jun.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa83744ebb1321e21df821759ef43f80a9df279aa", + "etherscanUrl": "https://etherscan.io/address/0xa83744ebb1321e21df821759ef43f80a9df279aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa9e283ce1511c12031a54e80654b15a30b78864c", + "balanceRaw": "370661523561517861758", + "balanceFormatted": "370.661523561517861758", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9e283ce1511c12031a54e80654b15a30b78864c", + "etherscanUrl": "https://etherscan.io/address/0xa9e283ce1511c12031a54e80654b15a30b78864c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_199193", + "balanceRaw": "369410622718042819242", + "balanceFormatted": "369.410622718042819242", + "lastTransferAt": null, + "username": "micka", + "displayName": "Leakim", + "fid": 199193, + "followers": 521, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf327ec-3ee4-4f03-aa9e-1fceefa7ea00/rectcrop3", + "ensName": "backtogenesis.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4c62509bc3e8db00590dec81c11de874a8f59fb0", + "etherscanUrl": "https://etherscan.io/address/0x4c62509bc3e8db00590dec81c11de874a8f59fb0", + "xHandle": "0x_mickael", + "xUrl": "https://twitter.com/0x_mickael", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_550766", + "balanceRaw": "367282189030925452985", + "balanceFormatted": "367.282189030925452985", + "lastTransferAt": null, + "username": "mojy", + "displayName": "mojtaba", + "fid": 550766, + "followers": 208, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a2bae93a-a17a-4ceb-cf59-029853d16e00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa574e9c0d2895ac604dde519a2679b2ca058d078", + "etherscanUrl": "https://etherscan.io/address/0xa574e9c0d2895ac604dde519a2679b2ca058d078", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_303765", + "balanceRaw": "365875130583812363533", + "balanceFormatted": "365.875130583812363533", + "lastTransferAt": null, + "username": "wiwin3", + "displayName": "Wiwin ✈️🔮🎩🍖🐹", + "fid": 303765, + "followers": 415, + "pfpUrl": "https://i.imgur.com/bTKW0Jy.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5457e4b9eed05da2d9bf891d500e6aba80cc20e7", + "etherscanUrl": "https://etherscan.io/address/0x5457e4b9eed05da2d9bf891d500e6aba80cc20e7", + "xHandle": "amin_fays", + "xUrl": "https://twitter.com/amin_fays", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_321301", + "balanceRaw": "364091042110796993302", + "balanceFormatted": "364.091042110796993302", + "lastTransferAt": null, + "username": "guy-do-or-die", + "displayName": "join.base.eth 🐲", + "fid": 321301, + "followers": 1167, + "pfpUrl": "https://i.imgur.com/8gJYWdO.jpg", + "ensName": "untitl.eth", + "ensAvatarUrl": "https://euc.li/untitl.eth", + "primaryAddress": "0xde1fdcf14321d1881d464acc8e80623361acb528", + "etherscanUrl": "https://etherscan.io/address/0xde1fdcf14321d1881d464acc8e80623361acb528", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xecf54fe7e13bc5138e7a8be4cae0845acc926170", + "balanceRaw": "356006554721597342684", + "balanceFormatted": "356.006554721597342684", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xecf54fe7e13bc5138e7a8be4cae0845acc926170", + "etherscanUrl": "https://etherscan.io/address/0xecf54fe7e13bc5138e7a8be4cae0845acc926170", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_505455", + "balanceRaw": "355780138049911971951", + "balanceFormatted": "355.780138049911971951", + "lastTransferAt": null, + "username": "boochan", + "displayName": "boochan", + "fid": 505455, + "followers": 6, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1c2cb92c-61c5-465e-3f2e-23e4f48a0700/rectcrop3", + "ensName": "boochan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3099f8008dffdc73c1077524769c83042647ec54", + "etherscanUrl": "https://etherscan.io/address/0x3099f8008dffdc73c1077524769c83042647ec54", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1abe6894f301afc3b0e8b0a48092aba74ade029c", + "balanceRaw": "355764650696972561595", + "balanceFormatted": "355.764650696972561595", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1abe6894f301afc3b0e8b0a48092aba74ade029c", + "etherscanUrl": "https://etherscan.io/address/0x1abe6894f301afc3b0e8b0a48092aba74ade029c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_443759", + "balanceRaw": "354263221375468893245", + "balanceFormatted": "354.263221375468893245", + "lastTransferAt": null, + "username": "zolex", + "displayName": "Zolex", + "fid": 443759, + "followers": 14, + "pfpUrl": "https://i.imgur.com/0pBAgJ4.jpg", + "ensName": "zolextheone.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd63bd4bb4f8d4e701e3f94ebb8f6d017a57ca443", + "etherscanUrl": "https://etherscan.io/address/0xd63bd4bb4f8d4e701e3f94ebb8f6d017a57ca443", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe16c5301c1efed4c508452b00fe3711ef1d2efe2", + "balanceRaw": "349688140762103943855", + "balanceFormatted": "349.688140762103943855", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe16c5301c1efed4c508452b00fe3711ef1d2efe2", + "etherscanUrl": "https://etherscan.io/address/0xe16c5301c1efed4c508452b00fe3711ef1d2efe2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_429568", + "balanceRaw": "348292465856314289538", + "balanceFormatted": "348.292465856314289538", + "lastTransferAt": null, + "username": "florresmy", + "displayName": "Florresmy", + "fid": 429568, + "followers": 6, + "pfpUrl": "https://i.imgur.com/0O2VnOb.jpg", + "ensName": "florresmy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x28c18cd9d300129262a72973b80e2ee6e9ba77b9", + "etherscanUrl": "https://etherscan.io/address/0x28c18cd9d300129262a72973b80e2ee6e9ba77b9", + "xHandle": "florresmy", + "xUrl": "https://twitter.com/florresmy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_324863", + "balanceRaw": "341296928327645051200", + "balanceFormatted": "341.2969283276450512", + "lastTransferAt": null, + "username": "koh", + "displayName": "koH", + "fid": 324863, + "followers": 1480, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/408e5c87-f6ff-4d83-bf71-2886ab1d2000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f6c1b29615a160be3ed24f40fefa34b1a1ca5e7", + "etherscanUrl": "https://etherscan.io/address/0x6f6c1b29615a160be3ed24f40fefa34b1a1ca5e7", + "xHandle": "crypto_koh", + "xUrl": "https://twitter.com/crypto_koh", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_563101", + "balanceRaw": "334875519760685362872", + "balanceFormatted": "334.875519760685362872", + "lastTransferAt": null, + "username": "prayer2008", + "displayName": "prayer2008.base.eth 🎭", + "fid": 563101, + "followers": 432, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f2db07d-8eb5-4a3c-b52d-3e2344e4f600/original", + "ensName": "prayer2008.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5330260f2dd10e623fc6153d956744ed682b0e18", + "etherscanUrl": "https://etherscan.io/address/0x5330260f2dd10e623fc6153d956744ed682b0e18", + "xHandle": "prayer2008", + "xUrl": "https://twitter.com/prayer2008", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_324337", + "balanceRaw": "334459741926893141845", + "balanceFormatted": "334.459741926893141845", + "lastTransferAt": null, + "username": "nikhd", + "displayName": "NikHd🍖", + "fid": 324337, + "followers": 1013, + "pfpUrl": "https://i.imgur.com/UwOIYFs.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc5c164ef88332765e6d4360ff023869523f69c8d", + "etherscanUrl": "https://etherscan.io/address/0xc5c164ef88332765e6d4360ff023869523f69c8d", + "xHandle": "trendsome1", + "xUrl": "https://twitter.com/trendsome1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73094ebeded926b70806db5055ae45a45c31788a", + "balanceRaw": "333873504682876410325", + "balanceFormatted": "333.873504682876410325", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73094ebeded926b70806db5055ae45a45c31788a", + "etherscanUrl": "https://etherscan.io/address/0x73094ebeded926b70806db5055ae45a45c31788a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549746", + "balanceRaw": "325347329081533257685", + "balanceFormatted": "325.347329081533257685", + "lastTransferAt": null, + "username": "finnarz.eth", + "displayName": "Finn Ariz", + "fid": 549746, + "followers": 151, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7b11e084-0c19-4ad0-d54c-370861dbba00/rectcrop3", + "ensName": "finnarz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc0c5b1d01a5c1e03694ea52f1f161b68ce75519b", + "etherscanUrl": "https://etherscan.io/address/0xc0c5b1d01a5c1e03694ea52f1f161b68ce75519b", + "xHandle": "herfin", + "xUrl": "https://twitter.com/herfin", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_691019", + "balanceRaw": "323595077357528119340", + "balanceFormatted": "323.59507735752811934", + "lastTransferAt": null, + "username": "karbonaro", + "displayName": "Karbonio base.eth", + "fid": 691019, + "followers": 1300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d187b680-cc77-44cd-a65b-c75ab9253800/original", + "ensName": "karbonio.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x251db7fd37328318276d0e77ae7a69b069cc670c", + "etherscanUrl": "https://etherscan.io/address/0x251db7fd37328318276d0e77ae7a69b069cc670c", + "xHandle": "basicktrust", + "xUrl": "https://twitter.com/basicktrust", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_671013", + "balanceRaw": "323144654664202927928", + "balanceFormatted": "323.144654664202927928", + "lastTransferAt": null, + "username": "ingvvarr", + "displayName": "Igor", + "fid": 671013, + "followers": 23, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/790751eb-1f9b-41c8-3da2-11acee41dc00/rectcrop3", + "ensName": "ingvvarr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xed6df820273ca18c758c1877540fbe76cc4c9d27", + "etherscanUrl": "https://etherscan.io/address/0xed6df820273ca18c758c1877540fbe76cc4c9d27", + "xHandle": "cenkoigor", + "xUrl": "https://twitter.com/cenkoigor", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1aadf1e8df19db8a8adf07e99a6e0f6758442d92", + "balanceRaw": "322939548067269217173", + "balanceFormatted": "322.939548067269217173", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1aadf1e8df19db8a8adf07e99a6e0f6758442d92", + "etherscanUrl": "https://etherscan.io/address/0x1aadf1e8df19db8a8adf07e99a6e0f6758442d92", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_847815", + "balanceRaw": "322548046000000000000", + "balanceFormatted": "322.548046", + "lastTransferAt": null, + "username": "dutchess", + "displayName": "Dutchess.Base.eth", + "fid": 847815, + "followers": 515, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e68337bd-b701-4ba7-0dc1-19e181dd8500/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ea3b97e28f6d65034fb814cda9770a92bea4bf2", + "etherscanUrl": "https://etherscan.io/address/0x6ea3b97e28f6d65034fb814cda9770a92bea4bf2", + "xHandle": "sull_char", + "xUrl": "https://twitter.com/sull_char", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_882836", + "balanceRaw": "319184738230057594129", + "balanceFormatted": "319.184738230057594129", + "lastTransferAt": null, + "username": "!882836", + "displayName": null, + "fid": 882836, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x71f73444f20ebcf32905995cb48efecbe2901c05", + "etherscanUrl": "https://etherscan.io/address/0x71f73444f20ebcf32905995cb48efecbe2901c05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_277664", + "balanceRaw": "319105955884105748616", + "balanceFormatted": "319.105955884105748616", + "lastTransferAt": null, + "username": "a3zin", + "displayName": "A3zin.base.eth", + "fid": 277664, + "followers": 336, + "pfpUrl": "https://i.imgur.com/FNqeFkJ.jpg", + "ensName": "a3zin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbfdb37f7dd88ca0da6fc2d0dcd98f75e337f7367", + "etherscanUrl": "https://etherscan.io/address/0xbfdb37f7dd88ca0da6fc2d0dcd98f75e337f7367", + "xHandle": "maryam_p_j", + "xUrl": "https://twitter.com/maryam_p_j", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x457a96bb89baf897451aa10431ec6a72d95087eb", + "balanceRaw": "319073923687100692741", + "balanceFormatted": "319.073923687100692741", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "llhimawarill.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x457a96bb89baf897451aa10431ec6a72d95087eb", + "etherscanUrl": "https://etherscan.io/address/0x457a96bb89baf897451aa10431ec6a72d95087eb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192284", + "balanceRaw": "316658306661876438897", + "balanceFormatted": "316.658306661876438897", + "lastTransferAt": null, + "username": "a463e8", + "displayName": "a4", + "fid": 192284, + "followers": 33, + "pfpUrl": "https://i.imgur.com/vmwSPbL.jpg", + "ensName": "a463e8.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x03c93b6e82e0c68d5554c4181bb5a12eb8255e04", + "etherscanUrl": "https://etherscan.io/address/0x03c93b6e82e0c68d5554c4181bb5a12eb8255e04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21829", + "balanceRaw": "316508981255441159881", + "balanceFormatted": "316.508981255441159881", + "lastTransferAt": null, + "username": "way", + "displayName": "guozu🎩⛓️🔵 ⚪️🐹", + "fid": 21829, + "followers": 942, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/534442f2-5356-4a22-8dff-a2bf9e620f00/original", + "ensName": "guozu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7a566e3cb6060e596961fde5fe36c764a0b7813b", + "etherscanUrl": "https://etherscan.io/address/0x7a566e3cb6060e596961fde5fe36c764a0b7813b", + "xHandle": "lost12306", + "xUrl": "https://twitter.com/lost12306", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549125", + "balanceRaw": "315031809262103868282", + "balanceFormatted": "315.031809262103868282", + "lastTransferAt": null, + "username": "aleksandras", + "displayName": "Aleksandras", + "fid": 549125, + "followers": 13, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c8b97196-7733-427c-8741-042acdc45700/rectcrop3", + "ensName": "aleksandrass.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd68fb3516ec6512b05fc3da230b6935499ac0784", + "etherscanUrl": "https://etherscan.io/address/0xd68fb3516ec6512b05fc3da230b6935499ac0784", + "xHandle": "asavalenkovas", + "xUrl": "https://twitter.com/asavalenkovas", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe4fa7729b46d71b829385baae34bc2b6dd8ceba3", + "balanceRaw": "315000000000000000000", + "balanceFormatted": "315", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe4fa7729b46d71b829385baae34bc2b6dd8ceba3", + "etherscanUrl": "https://etherscan.io/address/0xe4fa7729b46d71b829385baae34bc2b6dd8ceba3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd258fd542d44a1a408dcc1841b4ffb81af7ab4cd", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "antonpapa.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd258fd542d44a1a408dcc1841b4ffb81af7ab4cd", + "etherscanUrl": "https://etherscan.io/address/0xd258fd542d44a1a408dcc1841b4ffb81af7ab4cd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc72da85b66dfef7161c0cf989c28a2ae4eb1c5dd", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc72da85b66dfef7161c0cf989c28a2ae4eb1c5dd", + "etherscanUrl": "https://etherscan.io/address/0xc72da85b66dfef7161c0cf989c28a2ae4eb1c5dd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3d9bfc2ed8e2920a2cfacec1f24530ac3f49ee59", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "yunying94.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3d9bfc2ed8e2920a2cfacec1f24530ac3f49ee59", + "etherscanUrl": "https://etherscan.io/address/0x3d9bfc2ed8e2920a2cfacec1f24530ac3f49ee59", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd144cd73287cee68abf56539606834f3f0d82ad2", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd144cd73287cee68abf56539606834f3f0d82ad2", + "etherscanUrl": "https://etherscan.io/address/0xd144cd73287cee68abf56539606834f3f0d82ad2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd32ead84df010ccef8195a4043e5fa10eb0da1eb", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd32ead84df010ccef8195a4043e5fa10eb0da1eb", + "etherscanUrl": "https://etherscan.io/address/0xd32ead84df010ccef8195a4043e5fa10eb0da1eb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x999d162fe53d3a3303647adfa67e6c7ea6c837ff", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x999d162fe53d3a3303647adfa67e6c7ea6c837ff", + "etherscanUrl": "https://etherscan.io/address/0x999d162fe53d3a3303647adfa67e6c7ea6c837ff", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcbbf43f6ce233da257fcf52c8439c8388dd98199", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gispectro.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcbbf43f6ce233da257fcf52c8439c8388dd98199", + "etherscanUrl": "https://etherscan.io/address/0xcbbf43f6ce233da257fcf52c8439c8388dd98199", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x31608079cd6b75906cd5f05d31fd54993b4d7eb8", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31608079cd6b75906cd5f05d31fd54993b4d7eb8", + "etherscanUrl": "https://etherscan.io/address/0x31608079cd6b75906cd5f05d31fd54993b4d7eb8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd9d6200797ca61d70f02abe0c9968cc2045d1c9c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd9d6200797ca61d70f02abe0c9968cc2045d1c9c", + "etherscanUrl": "https://etherscan.io/address/0xd9d6200797ca61d70f02abe0c9968cc2045d1c9c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x963bd57d9ed4a6c0360bd98b9f2f9011c325b346", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "carzy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x963bd57d9ed4a6c0360bd98b9f2f9011c325b346", + "etherscanUrl": "https://etherscan.io/address/0x963bd57d9ed4a6c0360bd98b9f2f9011c325b346", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbb932982fc7c8bfd3c2ed8ffb31bba1c406eef5d", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "baddick.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbb932982fc7c8bfd3c2ed8ffb31bba1c406eef5d", + "etherscanUrl": "https://etherscan.io/address/0xbb932982fc7c8bfd3c2ed8ffb31bba1c406eef5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3d0f19de1cff07ca4a550a9d956d9a8a9afe742", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc3d0f19de1cff07ca4a550a9d956d9a8a9afe742", + "etherscanUrl": "https://etherscan.io/address/0xc3d0f19de1cff07ca4a550a9d956d9a8a9afe742", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x83208437ab0489763df765682281903e3ea9c4e5", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x83208437ab0489763df765682281903e3ea9c4e5", + "etherscanUrl": "https://etherscan.io/address/0x83208437ab0489763df765682281903e3ea9c4e5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb0812e0006470fe99f71165fc7c1a2312f7b90f2", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb0812e0006470fe99f71165fc7c1a2312f7b90f2", + "etherscanUrl": "https://etherscan.io/address/0xb0812e0006470fe99f71165fc7c1a2312f7b90f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x49b9a6b3646eba556af5a20915ed9cf8859a8583", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "tacee9.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x49b9a6b3646eba556af5a20915ed9cf8859a8583", + "etherscanUrl": "https://etherscan.io/address/0x49b9a6b3646eba556af5a20915ed9cf8859a8583", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5a1e05a918a7bad804efa896304a26af4f8142c3", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a1e05a918a7bad804efa896304a26af4f8142c3", + "etherscanUrl": "https://etherscan.io/address/0x5a1e05a918a7bad804efa896304a26af4f8142c3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x02b35f9abb2cd5106ee125cc7600bc5b8bf2dadb", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x02b35f9abb2cd5106ee125cc7600bc5b8bf2dadb", + "etherscanUrl": "https://etherscan.io/address/0x02b35f9abb2cd5106ee125cc7600bc5b8bf2dadb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd8142790156f09bf787887d9435fa406c3750989", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd8142790156f09bf787887d9435fa406c3750989", + "etherscanUrl": "https://etherscan.io/address/0xd8142790156f09bf787887d9435fa406c3750989", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x127ad227fb8a9f3b12984175260dfc165ccda8c8", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "fermo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x127ad227fb8a9f3b12984175260dfc165ccda8c8", + "etherscanUrl": "https://etherscan.io/address/0x127ad227fb8a9f3b12984175260dfc165ccda8c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9a132ebe0f08b57b532d34515a54894c684084aa", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a132ebe0f08b57b532d34515a54894c684084aa", + "etherscanUrl": "https://etherscan.io/address/0x9a132ebe0f08b57b532d34515a54894c684084aa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x70a6bba65b6e6f804c08a7abf4fe2ea865a4c1ab", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70a6bba65b6e6f804c08a7abf4fe2ea865a4c1ab", + "etherscanUrl": "https://etherscan.io/address/0x70a6bba65b6e6f804c08a7abf4fe2ea865a4c1ab", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f341ba877b2ce2c2e11fae97b4030a067700d9e", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f341ba877b2ce2c2e11fae97b4030a067700d9e", + "etherscanUrl": "https://etherscan.io/address/0x6f341ba877b2ce2c2e11fae97b4030a067700d9e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdf73abbb2db31931b5546f296cd1505eb8b4e144", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf73abbb2db31931b5546f296cd1505eb8b4e144", + "etherscanUrl": "https://etherscan.io/address/0xdf73abbb2db31931b5546f296cd1505eb8b4e144", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb4302b0c67bf90ff064859c67a8ed1d0b5e3cbbf", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4302b0c67bf90ff064859c67a8ed1d0b5e3cbbf", + "etherscanUrl": "https://etherscan.io/address/0xb4302b0c67bf90ff064859c67a8ed1d0b5e3cbbf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x86f11dd219955408d9918e0418480618ef2b333a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x86f11dd219955408d9918e0418480618ef2b333a", + "etherscanUrl": "https://etherscan.io/address/0x86f11dd219955408d9918e0418480618ef2b333a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xae57ce1ab4087ffe25bc6833bc95970b08d945d2", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "separado.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xae57ce1ab4087ffe25bc6833bc95970b08d945d2", + "etherscanUrl": "https://etherscan.io/address/0xae57ce1ab4087ffe25bc6833bc95970b08d945d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x31d0d0f44e2891868bb1fd54b20e8c5d6a5b99ea", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x31d0d0f44e2891868bb1fd54b20e8c5d6a5b99ea", + "etherscanUrl": "https://etherscan.io/address/0x31d0d0f44e2891868bb1fd54b20e8c5d6a5b99ea", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x141da510d31f31d0a30ad606a129bf27495f2eee", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x141da510d31f31d0a30ad606a129bf27495f2eee", + "etherscanUrl": "https://etherscan.io/address/0x141da510d31f31d0a30ad606a129bf27495f2eee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x878fad06f4b36445923be469f026f6169042b762", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x878fad06f4b36445923be469f026f6169042b762", + "etherscanUrl": "https://etherscan.io/address/0x878fad06f4b36445923be469f026f6169042b762", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9a642881dd0849ccb340681879832d009f1c9919", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9a642881dd0849ccb340681879832d009f1c9919", + "etherscanUrl": "https://etherscan.io/address/0x9a642881dd0849ccb340681879832d009f1c9919", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0cf38d7d713db7bc9acf993e23b03f081eecbad9", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "blanco22.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0cf38d7d713db7bc9acf993e23b03f081eecbad9", + "etherscanUrl": "https://etherscan.io/address/0x0cf38d7d713db7bc9acf993e23b03f081eecbad9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x553cfb19f1331aeda466f0ccd917d3f05f8179db", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x553cfb19f1331aeda466f0ccd917d3f05f8179db", + "etherscanUrl": "https://etherscan.io/address/0x553cfb19f1331aeda466f0ccd917d3f05f8179db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60513ad3e1a4f646c1bd6c2f71e6bbeadd7ffc9b", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60513ad3e1a4f646c1bd6c2f71e6bbeadd7ffc9b", + "etherscanUrl": "https://etherscan.io/address/0x60513ad3e1a4f646c1bd6c2f71e6bbeadd7ffc9b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x297a32364bb44bce84887b09865ac94b2d041a45", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x297a32364bb44bce84887b09865ac94b2d041a45", + "etherscanUrl": "https://etherscan.io/address/0x297a32364bb44bce84887b09865ac94b2d041a45", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec189bac8d6ad51ac5df8bf5ca9f53b6f929af1f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec189bac8d6ad51ac5df8bf5ca9f53b6f929af1f", + "etherscanUrl": "https://etherscan.io/address/0xec189bac8d6ad51ac5df8bf5ca9f53b6f929af1f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x571b388d3a84fb086340275a735b986640c97f39", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "25081964.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x571b388d3a84fb086340275a735b986640c97f39", + "etherscanUrl": "https://etherscan.io/address/0x571b388d3a84fb086340275a735b986640c97f39", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x821c1cee6bb90c5ba388d369c1c8c76de15ae7bd", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "openeye.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x821c1cee6bb90c5ba388d369c1c8c76de15ae7bd", + "etherscanUrl": "https://etherscan.io/address/0x821c1cee6bb90c5ba388d369c1c8c76de15ae7bd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4bdd634e5757991c276d1bf3dbd55898599f5a3a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4bdd634e5757991c276d1bf3dbd55898599f5a3a", + "etherscanUrl": "https://etherscan.io/address/0x4bdd634e5757991c276d1bf3dbd55898599f5a3a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x56b54976c8042239c26e637e4383ad9ae02eb3a2", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x56b54976c8042239c26e637e4383ad9ae02eb3a2", + "etherscanUrl": "https://etherscan.io/address/0x56b54976c8042239c26e637e4383ad9ae02eb3a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1bd3bff92e06ec73e9ff38aaf2c2cc6b0c11d7b9", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1bd3bff92e06ec73e9ff38aaf2c2cc6b0c11d7b9", + "etherscanUrl": "https://etherscan.io/address/0x1bd3bff92e06ec73e9ff38aaf2c2cc6b0c11d7b9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x87d2585f6e1f407f25295659786d019edb1a8aad", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x87d2585f6e1f407f25295659786d019edb1a8aad", + "etherscanUrl": "https://etherscan.io/address/0x87d2585f6e1f407f25295659786d019edb1a8aad", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcecc2c014a7f888fb8aeaf15fdc97284bdc7b18b", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcecc2c014a7f888fb8aeaf15fdc97284bdc7b18b", + "etherscanUrl": "https://etherscan.io/address/0xcecc2c014a7f888fb8aeaf15fdc97284bdc7b18b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5d4d4a0411ed9ffe55a825637284161482aa639b", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5d4d4a0411ed9ffe55a825637284161482aa639b", + "etherscanUrl": "https://etherscan.io/address/0x5d4d4a0411ed9ffe55a825637284161482aa639b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4093e77d2af1e7dbc48ba3f6de0e2617df44644a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4093e77d2af1e7dbc48ba3f6de0e2617df44644a", + "etherscanUrl": "https://etherscan.io/address/0x4093e77d2af1e7dbc48ba3f6de0e2617df44644a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9c4a9ea42a10a7a2a31b4057908dc044ca84fbd1", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c4a9ea42a10a7a2a31b4057908dc044ca84fbd1", + "etherscanUrl": "https://etherscan.io/address/0x9c4a9ea42a10a7a2a31b4057908dc044ca84fbd1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xec7a4c86d3f6bfe3708a87ddc919282ab3f8b101", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xec7a4c86d3f6bfe3708a87ddc919282ab3f8b101", + "etherscanUrl": "https://etherscan.io/address/0xec7a4c86d3f6bfe3708a87ddc919282ab3f8b101", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3e8fcdcc0544822c3719aba257a09e2105d42e70", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e8fcdcc0544822c3719aba257a09e2105d42e70", + "etherscanUrl": "https://etherscan.io/address/0x3e8fcdcc0544822c3719aba257a09e2105d42e70", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4c381d46e0855043f8f3e86a9b6acb925f91e4b4", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c381d46e0855043f8f3e86a9b6acb925f91e4b4", + "etherscanUrl": "https://etherscan.io/address/0x4c381d46e0855043f8f3e86a9b6acb925f91e4b4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9b28e4940cc0828613eacf1d3ea208d010e32bd2", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b28e4940cc0828613eacf1d3ea208d010e32bd2", + "etherscanUrl": "https://etherscan.io/address/0x9b28e4940cc0828613eacf1d3ea208d010e32bd2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc2cc5429b319dd073ace448030fe5a2fa5fbeb35", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc2cc5429b319dd073ace448030fe5a2fa5fbeb35", + "etherscanUrl": "https://etherscan.io/address/0xc2cc5429b319dd073ace448030fe5a2fa5fbeb35", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3aeb319458fcfecadbe6445a805053ae4f518a6f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3aeb319458fcfecadbe6445a805053ae4f518a6f", + "etherscanUrl": "https://etherscan.io/address/0x3aeb319458fcfecadbe6445a805053ae4f518a6f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x14218a8bed4f18d75ec16ee9096c283856f618fa", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14218a8bed4f18d75ec16ee9096c283856f618fa", + "etherscanUrl": "https://etherscan.io/address/0x14218a8bed4f18d75ec16ee9096c283856f618fa", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x77c46e0b2207285623cb48ec7303049120a66157", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x77c46e0b2207285623cb48ec7303049120a66157", + "etherscanUrl": "https://etherscan.io/address/0x77c46e0b2207285623cb48ec7303049120a66157", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x464d53a7954e5cc2d85ae34ed942fb13f3c5428c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x464d53a7954e5cc2d85ae34ed942fb13f3c5428c", + "etherscanUrl": "https://etherscan.io/address/0x464d53a7954e5cc2d85ae34ed942fb13f3c5428c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b89db0ba67a1cc06403945bc0819ed11841bac3", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b89db0ba67a1cc06403945bc0819ed11841bac3", + "etherscanUrl": "https://etherscan.io/address/0x8b89db0ba67a1cc06403945bc0819ed11841bac3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7826904e798b4ee0debb85edba0e5c261e4d0e1f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7826904e798b4ee0debb85edba0e5c261e4d0e1f", + "etherscanUrl": "https://etherscan.io/address/0x7826904e798b4ee0debb85edba0e5c261e4d0e1f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x968de2335544209b9276d48c59e553812809f046", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x968de2335544209b9276d48c59e553812809f046", + "etherscanUrl": "https://etherscan.io/address/0x968de2335544209b9276d48c59e553812809f046", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdc0e60ccfbf4f52f977c3f4053e03ab81f5c7794", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdc0e60ccfbf4f52f977c3f4053e03ab81f5c7794", + "etherscanUrl": "https://etherscan.io/address/0xdc0e60ccfbf4f52f977c3f4053e03ab81f5c7794", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xad7e73be609c92e8049f8b81afb4fbe2fc70f2f3", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xad7e73be609c92e8049f8b81afb4fbe2fc70f2f3", + "etherscanUrl": "https://etherscan.io/address/0xad7e73be609c92e8049f8b81afb4fbe2fc70f2f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7b4fda2c6f20dd0dcf2676bd1714a25a276d71d1", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7b4fda2c6f20dd0dcf2676bd1714a25a276d71d1", + "etherscanUrl": "https://etherscan.io/address/0x7b4fda2c6f20dd0dcf2676bd1714a25a276d71d1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f9e7adf47256cc9ab191ea5b002b7d65edb7c8f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6f9e7adf47256cc9ab191ea5b002b7d65edb7c8f", + "etherscanUrl": "https://etherscan.io/address/0x6f9e7adf47256cc9ab191ea5b002b7d65edb7c8f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc7f43fe8626e2849dc57f113f5f1938df2c973a3", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc7f43fe8626e2849dc57f113f5f1938df2c973a3", + "etherscanUrl": "https://etherscan.io/address/0xc7f43fe8626e2849dc57f113f5f1938df2c973a3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x83a01e9b3ad6743a45994a3994b0ca0dcf43a275", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x83a01e9b3ad6743a45994a3994b0ca0dcf43a275", + "etherscanUrl": "https://etherscan.io/address/0x83a01e9b3ad6743a45994a3994b0ca0dcf43a275", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x844aeb8b2d7432943dd2996ce19b81dbddb69688", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x844aeb8b2d7432943dd2996ce19b81dbddb69688", + "etherscanUrl": "https://etherscan.io/address/0x844aeb8b2d7432943dd2996ce19b81dbddb69688", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7c00b9cd44248871770fb5b927e14f9d1ed3e7e1", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "yingfan94.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7c00b9cd44248871770fb5b927e14f9d1ed3e7e1", + "etherscanUrl": "https://etherscan.io/address/0x7c00b9cd44248871770fb5b927e14f9d1ed3e7e1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc69c2e5c40005173e66eae6a7fe68ff9f87ce859", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc69c2e5c40005173e66eae6a7fe68ff9f87ce859", + "etherscanUrl": "https://etherscan.io/address/0xc69c2e5c40005173e66eae6a7fe68ff9f87ce859", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4c38844816f60f759eac892112f09cd4d63bbf2a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4c38844816f60f759eac892112f09cd4d63bbf2a", + "etherscanUrl": "https://etherscan.io/address/0x4c38844816f60f759eac892112f09cd4d63bbf2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5f438fec1de8b55a1b43d7bbc2ceb0c626596ee5", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "jonatanzyl.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5f438fec1de8b55a1b43d7bbc2ceb0c626596ee5", + "etherscanUrl": "https://etherscan.io/address/0x5f438fec1de8b55a1b43d7bbc2ceb0c626596ee5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3e32973c5d5dde38a23e7807413a8980c24e0b36", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3e32973c5d5dde38a23e7807413a8980c24e0b36", + "etherscanUrl": "https://etherscan.io/address/0x3e32973c5d5dde38a23e7807413a8980c24e0b36", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9f02623b35e7420dcbf7f89567c78707ec387e9a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "antonkonom.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9f02623b35e7420dcbf7f89567c78707ec387e9a", + "etherscanUrl": "https://etherscan.io/address/0x9f02623b35e7420dcbf7f89567c78707ec387e9a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x185d688c29767164454f2fafa31fff0bc8c9b679", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "26061961.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x185d688c29767164454f2fafa31fff0bc8c9b679", + "etherscanUrl": "https://etherscan.io/address/0x185d688c29767164454f2fafa31fff0bc8c9b679", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x269c74881e53e9a473c083edf073ca42b3bf4a6c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x269c74881e53e9a473c083edf073ca42b3bf4a6c", + "etherscanUrl": "https://etherscan.io/address/0x269c74881e53e9a473c083edf073ca42b3bf4a6c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9c13cc3b1ccab3cb94f18002a3d41b6ba453e03f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "starceps.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9c13cc3b1ccab3cb94f18002a3d41b6ba453e03f", + "etherscanUrl": "https://etherscan.io/address/0x9c13cc3b1ccab3cb94f18002a3d41b6ba453e03f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x970c853dfbac2e1a80f1b5a692c915df94952ba1", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x970c853dfbac2e1a80f1b5a692c915df94952ba1", + "etherscanUrl": "https://etherscan.io/address/0x970c853dfbac2e1a80f1b5a692c915df94952ba1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdf64bc6ac7ebbecda2f7031dad1e058d4eaae5d7", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdf64bc6ac7ebbecda2f7031dad1e058d4eaae5d7", + "etherscanUrl": "https://etherscan.io/address/0xdf64bc6ac7ebbecda2f7031dad1e058d4eaae5d7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x037fa225743891d231b4380d8a5fc79b3c995260", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x037fa225743891d231b4380d8a5fc79b3c995260", + "etherscanUrl": "https://etherscan.io/address/0x037fa225743891d231b4380d8a5fc79b3c995260", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x287bf73aa31cc20d69eccae8b357342cad05a1ef", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x287bf73aa31cc20d69eccae8b357342cad05a1ef", + "etherscanUrl": "https://etherscan.io/address/0x287bf73aa31cc20d69eccae8b357342cad05a1ef", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xce4a41fce5df4cb141b71b2cd978563659529f96", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xce4a41fce5df4cb141b71b2cd978563659529f96", + "etherscanUrl": "https://etherscan.io/address/0xce4a41fce5df4cb141b71b2cd978563659529f96", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73e76983f1b989da9a5ad2e927d7b1ed4552d9f1", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73e76983f1b989da9a5ad2e927d7b1ed4552d9f1", + "etherscanUrl": "https://etherscan.io/address/0x73e76983f1b989da9a5ad2e927d7b1ed4552d9f1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x205a4a5fc8256eade3d4e2a87a7eab9cec9c832d", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x205a4a5fc8256eade3d4e2a87a7eab9cec9c832d", + "etherscanUrl": "https://etherscan.io/address/0x205a4a5fc8256eade3d4e2a87a7eab9cec9c832d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd9baf5b84cc898954f966c395bef45bad08b767e", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "anhptv94.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd9baf5b84cc898954f966c395bef45bad08b767e", + "etherscanUrl": "https://etherscan.io/address/0xd9baf5b84cc898954f966c395bef45bad08b767e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x70b0e7635d7e53321e98faacf723bbd49566c5a9", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70b0e7635d7e53321e98faacf723bbd49566c5a9", + "etherscanUrl": "https://etherscan.io/address/0x70b0e7635d7e53321e98faacf723bbd49566c5a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd58c5393ddab5a1b86be58abdd40234becdcc8a9", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd58c5393ddab5a1b86be58abdd40234becdcc8a9", + "etherscanUrl": "https://etherscan.io/address/0xd58c5393ddab5a1b86be58abdd40234becdcc8a9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4fa1ff0a3985e84a97bdbf96d2f48c69840a034d", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "8086888.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4fa1ff0a3985e84a97bdbf96d2f48c69840a034d", + "etherscanUrl": "https://etherscan.io/address/0x4fa1ff0a3985e84a97bdbf96d2f48c69840a034d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe9e0b8b2066b82fa03d5a3471dc1c718f45f6989", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "ypvs350rd.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe9e0b8b2066b82fa03d5a3471dc1c718f45f6989", + "etherscanUrl": "https://etherscan.io/address/0xe9e0b8b2066b82fa03d5a3471dc1c718f45f6989", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe03636223634cb209fa6c342d1c188416e75f5ee", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe03636223634cb209fa6c342d1c188416e75f5ee", + "etherscanUrl": "https://etherscan.io/address/0xe03636223634cb209fa6c342d1c188416e75f5ee", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x11d60e1ea7067ea8217ac54530c7b9f0a53d384a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "embexoi24.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x11d60e1ea7067ea8217ac54530c7b9f0a53d384a", + "etherscanUrl": "https://etherscan.io/address/0x11d60e1ea7067ea8217ac54530c7b9f0a53d384a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x82183c3e8a205ed3cd2d73f8ff9e029262fe7396", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x82183c3e8a205ed3cd2d73f8ff9e029262fe7396", + "etherscanUrl": "https://etherscan.io/address/0x82183c3e8a205ed3cd2d73f8ff9e029262fe7396", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1aa8a265fd9e5b522659af344162df151390cc63", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1aa8a265fd9e5b522659af344162df151390cc63", + "etherscanUrl": "https://etherscan.io/address/0x1aa8a265fd9e5b522659af344162df151390cc63", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x572bdc466bba576c03f6abdf34e3d91cbfbbbf7a", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x572bdc466bba576c03f6abdf34e3d91cbfbbbf7a", + "etherscanUrl": "https://etherscan.io/address/0x572bdc466bba576c03f6abdf34e3d91cbfbbbf7a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf06e19b5fdf2aac61b4822e0bd556c1ff354733d", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf06e19b5fdf2aac61b4822e0bd556c1ff354733d", + "etherscanUrl": "https://etherscan.io/address/0xf06e19b5fdf2aac61b4822e0bd556c1ff354733d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1cce3dfa362dc94c9b0c7e42bc1ca34be0214b8f", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1cce3dfa362dc94c9b0c7e42bc1ca34be0214b8f", + "etherscanUrl": "https://etherscan.io/address/0x1cce3dfa362dc94c9b0c7e42bc1ca34be0214b8f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x21536ce3926522ccf9d7ab5822116d89d8b027e7", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21536ce3926522ccf9d7ab5822116d89d8b027e7", + "etherscanUrl": "https://etherscan.io/address/0x21536ce3926522ccf9d7ab5822116d89d8b027e7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb7ab2b5625153d9e1083a32cdd24a307f614b65e", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb7ab2b5625153d9e1083a32cdd24a307f614b65e", + "etherscanUrl": "https://etherscan.io/address/0xb7ab2b5625153d9e1083a32cdd24a307f614b65e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x076f6b70928185a31651075f35763b7203d5246d", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x076f6b70928185a31651075f35763b7203d5246d", + "etherscanUrl": "https://etherscan.io/address/0x076f6b70928185a31651075f35763b7203d5246d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x33f7f77e9f0937010b82c3741c57791d667dde4c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x33f7f77e9f0937010b82c3741c57791d667dde4c", + "etherscanUrl": "https://etherscan.io/address/0x33f7f77e9f0937010b82c3741c57791d667dde4c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x890a17baaff52207b7de7aeb4abba4004b767516", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x890a17baaff52207b7de7aeb4abba4004b767516", + "etherscanUrl": "https://etherscan.io/address/0x890a17baaff52207b7de7aeb4abba4004b767516", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x14c2e061716829296ec6e1b03dce200e9251af36", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x14c2e061716829296ec6e1b03dce200e9251af36", + "etherscanUrl": "https://etherscan.io/address/0x14c2e061716829296ec6e1b03dce200e9251af36", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5b1410b46c1afdba633fc2d2105edf03b2c09493", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5b1410b46c1afdba633fc2d2105edf03b2c09493", + "etherscanUrl": "https://etherscan.io/address/0x5b1410b46c1afdba633fc2d2105edf03b2c09493", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x70338a5a590d980cb1929e81776348ffac168beb", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x70338a5a590d980cb1929e81776348ffac168beb", + "etherscanUrl": "https://etherscan.io/address/0x70338a5a590d980cb1929e81776348ffac168beb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x24fc3ed6a95cc63b25e70e15ab785a4f8c7c5173", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x24fc3ed6a95cc63b25e70e15ab785a4f8c7c5173", + "etherscanUrl": "https://etherscan.io/address/0x24fc3ed6a95cc63b25e70e15ab785a4f8c7c5173", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ce4ec3151af72c4b90849e9b779aca8cad3359c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ce4ec3151af72c4b90849e9b779aca8cad3359c", + "etherscanUrl": "https://etherscan.io/address/0x0ce4ec3151af72c4b90849e9b779aca8cad3359c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x29e7115662672e88fe342b712e89d0130a84b467", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x29e7115662672e88fe342b712e89d0130a84b467", + "etherscanUrl": "https://etherscan.io/address/0x29e7115662672e88fe342b712e89d0130a84b467", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa20776ec9057516c4bdf1f9ad23e70480cdae313", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa20776ec9057516c4bdf1f9ad23e70480cdae313", + "etherscanUrl": "https://etherscan.io/address/0xa20776ec9057516c4bdf1f9ad23e70480cdae313", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x09da6ef3562e868b4378685418c249bf43aab97c", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x09da6ef3562e868b4378685418c249bf43aab97c", + "etherscanUrl": "https://etherscan.io/address/0x09da6ef3562e868b4378685418c249bf43aab97c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x52476f7da3bbc1d9d27e5804ad246ce289e68731", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52476f7da3bbc1d9d27e5804ad246ce289e68731", + "etherscanUrl": "https://etherscan.io/address/0x52476f7da3bbc1d9d27e5804ad246ce289e68731", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe8d3233696dfae88f58d16fbe2f01aa5648e0073", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe8d3233696dfae88f58d16fbe2f01aa5648e0073", + "etherscanUrl": "https://etherscan.io/address/0xe8d3233696dfae88f58d16fbe2f01aa5648e0073", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xac0ab1817ecb46cfe077fda52d9d2d6913e40e33", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xac0ab1817ecb46cfe077fda52d9d2d6913e40e33", + "etherscanUrl": "https://etherscan.io/address/0xac0ab1817ecb46cfe077fda52d9d2d6913e40e33", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_251992", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!251992", + "displayName": null, + "fid": 251992, + "followers": 2, + "pfpUrl": null, + "ensName": "turtleking.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5b7ab4b4b4768923cddef657084223528c807963", + "etherscanUrl": "https://etherscan.io/address/0x5b7ab4b4b4768923cddef657084223528c807963", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_324105", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "safg2828.eth", + "displayName": "safg2828", + "fid": 324105, + "followers": 397, + "pfpUrl": "https://i.imgur.com/1LbEiZw.jpg", + "ensName": "safg2828.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x80e6342d56f498239704bed7b0c67d47bc3dc68b", + "etherscanUrl": "https://etherscan.io/address/0x80e6342d56f498239704bed7b0c67d47bc3dc68b", + "xHandle": "safg2828", + "xUrl": "https://twitter.com/safg2828", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_547601", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "tratavremeni.eth", + "displayName": "tratavremeni.base.eth", + "fid": 547601, + "followers": 446, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d125e23-78f3-456e-b0bc-f79106a77900/original", + "ensName": "tratavremeni.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2da0bc27511e8de0cecc9ea0b01dcb1c867d3deb", + "etherscanUrl": "https://etherscan.io/address/0x2da0bc27511e8de0cecc9ea0b01dcb1c867d3deb", + "xHandle": "hyggeforkids", + "xUrl": "https://twitter.com/hyggeforkids", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_243504", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "aliennoy", + "displayName": "Aliennoy🎩", + "fid": 243504, + "followers": 1060, + "pfpUrl": "https://i.imgur.com/Edn8ZAn.jpg", + "ensName": "aliennoy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5fb4fdf06caa16ea57df455819979d3226cab77f", + "etherscanUrl": "https://etherscan.io/address/0x5fb4fdf06caa16ea57df455819979d3226cab77f", + "xHandle": "0xaliennoy", + "xUrl": "https://twitter.com/0xaliennoy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_824198", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "purenaive", + "displayName": "purenaive", + "fid": 824198, + "followers": 21, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e782dd-30a1-4f02-f53a-a1ed7292f800/rectcrop3", + "ensName": "purenaive.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb9397977dac4a21de86f6d87852946373aeaecd6", + "etherscanUrl": "https://etherscan.io/address/0xb9397977dac4a21de86f6d87852946373aeaecd6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_238820", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!238820", + "displayName": null, + "fid": 238820, + "followers": 1, + "pfpUrl": null, + "ensName": "karishma07.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd3220ae99acfd50513cdacd1acfdf6f0aa205715", + "etherscanUrl": "https://etherscan.io/address/0xd3220ae99acfd50513cdacd1acfdf6f0aa205715", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_214859", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "kentz95", + "displayName": "Tien Hoang", + "fid": 214859, + "followers": 139, + "pfpUrl": "https://i.imgur.com/1Du5LTV.jpg", + "ensName": "kentz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3a423e1ca096ef825bffe208c23b4cdc69f72658", + "etherscanUrl": "https://etherscan.io/address/0x3a423e1ca096ef825bffe208c23b4cdc69f72658", + "xHandle": "hoangkentz", + "xUrl": "https://twitter.com/hoangkentz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189457", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!189457", + "displayName": null, + "fid": 189457, + "followers": 0, + "pfpUrl": null, + "ensName": "600611.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x85b3f50e9d3e902123fa6d3469511029be7c51f2", + "etherscanUrl": "https://etherscan.io/address/0x85b3f50e9d3e902123fa6d3469511029be7c51f2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_253816", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "bazz", + "displayName": "Bazz", + "fid": 253816, + "followers": 489, + "pfpUrl": "https://i.imgur.com/laBxY1R.jpg", + "ensName": "bazz82.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xaae033216a7d462ec7e8b8cea554038f96e75574", + "etherscanUrl": "https://etherscan.io/address/0xaae033216a7d462ec7e8b8cea554038f96e75574", + "xHandle": "borris2882", + "xUrl": "https://twitter.com/borris2882", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549530", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "sir-john-met", + "displayName": "luckybastrd.base.eth", + "fid": 549530, + "followers": 150, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/deb4bf81-0288-4de6-9667-adce9cb9e900/original", + "ensName": "luckybastrd.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x243138f51d60bf36d5487b68bf60ab983de987a1", + "etherscanUrl": "https://etherscan.io/address/0x243138f51d60bf36d5487b68bf60ab983de987a1", + "xHandle": "sirjohnmet", + "xUrl": "https://twitter.com/sirjohnmet", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491392", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "ervin17", + "displayName": "Ervin Metin", + "fid": 491392, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23d5345f-684d-4548-febd-2c1fa92c7d00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa5739a5d91a5e6c9313d79a965260a1565b39707", + "etherscanUrl": "https://etherscan.io/address/0xa5739a5d91a5e6c9313d79a965260a1565b39707", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_786229", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "worldtrend", + "displayName": "WorldTrend", + "fid": 786229, + "followers": 2, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a18c8b88-0d00-476e-2d5d-f25815ee9e00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x891140a93bef082312952b48479a853e90952fc2", + "etherscanUrl": "https://etherscan.io/address/0x891140a93bef082312952b48479a853e90952fc2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530063", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "eiki19930705", + "displayName": "eiki", + "fid": 530063, + "followers": 1, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca15d40d-1cf4-4d7a-f98c-4120c56fae00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xafad92a267e871a90a3bb0bb0e46dcba65f34357", + "etherscanUrl": "https://etherscan.io/address/0xafad92a267e871a90a3bb0bb0e46dcba65f34357", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_293020", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "luis-nicolau", + "displayName": "Luis Nicolau Hinojosa", + "fid": 293020, + "followers": 132, + "pfpUrl": "https://i.imgur.com/QyCyd1j.jpg", + "ensName": "luisitoking.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x88bd77ba12ddc0ef7aa5129b40331685e48bcddf", + "etherscanUrl": "https://etherscan.io/address/0x88bd77ba12ddc0ef7aa5129b40331685e48bcddf", + "xHandle": "luis_nicolau", + "xUrl": "https://twitter.com/luis_nicolau", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_204366", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "titi5000", + "displayName": "Thierry", + "fid": 204366, + "followers": 110, + "pfpUrl": "https://i.imgur.com/5RWDY3u.jpg", + "ensName": "titi5000.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x09a41d200e4649279494de308d154f6934c96fe0", + "etherscanUrl": "https://etherscan.io/address/0x09a41d200e4649279494de308d154f6934c96fe0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_241709", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "hlcrypto", + "displayName": "hlcrypto", + "fid": 241709, + "followers": 10, + "pfpUrl": "https://i.imgur.com/pmoY4R3.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1bc64dd86006d5117857e5cc637b6276c8cc8ff5", + "etherscanUrl": "https://etherscan.io/address/0x1bc64dd86006d5117857e5cc637b6276c8cc8ff5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_566063", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "buzzyy", + "displayName": "Buzz", + "fid": 566063, + "followers": 15, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7725475d-81a4-4cee-e336-cf166f8c2200/rectcrop3", + "ensName": "degenog.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbe41ac460e9241fbbb970af6060f7430b97da067", + "etherscanUrl": "https://etherscan.io/address/0xbe41ac460e9241fbbb970af6060f7430b97da067", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_695179", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "mrtomashb", + "displayName": "MrTomashB", + "fid": 695179, + "followers": 146, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/565b9a0a-9fe2-4bd2-eeee-01fb1b3a8a00/rectcrop3", + "ensName": "kraktom1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x97d5f224ee31bb2a202fbfcb6d916c9301e946c0", + "etherscanUrl": "https://etherscan.io/address/0x97d5f224ee31bb2a202fbfcb6d916c9301e946c0", + "xHandle": "mrtomashb", + "xUrl": "https://twitter.com/mrtomashb", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_976952", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "kaioshinn", + "displayName": "Kaioshin base.eth", + "fid": 976952, + "followers": 20, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71162510-b3fc-4b4b-3585-2ab0673bc000/original", + "ensName": "kaioshin.eth", + "ensAvatarUrl": "https://euc.li/kaioshin.eth", + "primaryAddress": "0x530aef31073a40eff1251f8d5154f2444a29fe3e", + "etherscanUrl": "https://etherscan.io/address/0x530aef31073a40eff1251f8d5154f2444a29fe3e", + "xHandle": "kaioshinairdrop", + "xUrl": "https://twitter.com/kaioshinairdrop", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246844", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "inkiw", + "displayName": "Inkiw Kim 🎩", + "fid": 246844, + "followers": 587, + "pfpUrl": "https://i.imgur.com/2enP1on.jpg", + "ensName": "inkiw.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb66ed94bfde5081576d365046453b0d325ab26b8", + "etherscanUrl": "https://etherscan.io/address/0xb66ed94bfde5081576d365046453b0d325ab26b8", + "xHandle": "inkiw", + "xUrl": "https://twitter.com/inkiw", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_814587", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "restraint3", + "displayName": "Restraint3", + "fid": 814587, + "followers": 1, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4fc44e49-cf76-4fc4-6516-dfee5cab7900/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc0977d0b4ca802a478fc5fe8e9377ab973054001", + "etherscanUrl": "https://etherscan.io/address/0xc0977d0b4ca802a478fc5fe8e9377ab973054001", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_684321", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "rongfu", + "displayName": "rongfu", + "fid": 684321, + "followers": 94, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e67c082-856f-4669-6e8c-bd1786fd4900/rectcrop3", + "ensName": "rongfu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1da390fedb20017e9f9c2b6b30ad5215e3c408b4", + "etherscanUrl": "https://etherscan.io/address/0x1da390fedb20017e9f9c2b6b30ad5215e3c408b4", + "xHandle": "rongfu1983", + "xUrl": "https://twitter.com/rongfu1983", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_383920", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "hoannguyen92", + "displayName": "Hoannguyen", + "fid": 383920, + "followers": 444, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1bef1c8-b64c-42fc-3d5d-8b9aca264d00/original", + "ensName": "hoannguyen.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa03fb0851a84eb0cf4d7113baa82196ef73bcdcd", + "etherscanUrl": "https://etherscan.io/address/0xa03fb0851a84eb0cf4d7113baa82196ef73bcdcd", + "xHandle": "frankshellock", + "xUrl": "https://twitter.com/frankshellock", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_796340", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "olesyakiseleva", + "displayName": "Olesya", + "fid": 796340, + "followers": 108, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01f302f5-474d-43dd-64e1-b5b588673500/rectcrop3", + "ensName": "olesyakis.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x72f0a77beb907eb18e9541820e8327e3c9b2a35a", + "etherscanUrl": "https://etherscan.io/address/0x72f0a77beb907eb18e9541820e8327e3c9b2a35a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_601375", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "alexcrypto1991", + "displayName": "Alex", + "fid": 601375, + "followers": 17, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f85c5de-51c6-4590-9b99-68531ab4a300/original", + "ensName": "alexcrypto1991.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf389d0505af07993f6986e3a7191d3d3d751068f", + "etherscanUrl": "https://etherscan.io/address/0xf389d0505af07993f6986e3a7191d3d3d751068f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_212296", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!212296", + "displayName": null, + "fid": 212296, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38fa7bf4911e3ddeeff3ee03dee81c4d91556d1e", + "etherscanUrl": "https://etherscan.io/address/0x38fa7bf4911e3ddeeff3ee03dee81c4d91556d1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_693830", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "skivnail", + "displayName": "Skivnail", + "fid": 693830, + "followers": 249, + "pfpUrl": "https://beb-public.s3.us-west-1.amazonaws.com/black.jpg", + "ensName": "skivnail.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xae605a4e79d7df7f8215ad703847b85a42f42bbe", + "etherscanUrl": "https://etherscan.io/address/0xae605a4e79d7df7f8215ad703847b85a42f42bbe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_349718", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "arvis", + "displayName": "arvis.base.eth", + "fid": 349718, + "followers": 3543, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7cc1ef5-e4a7-40b6-3dd9-5c53a95bb800/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaf1c383ce06debbf9f3c91349fd03cf651221121", + "etherscanUrl": "https://etherscan.io/address/0xaf1c383ce06debbf9f3c91349fd03cf651221121", + "xHandle": "arvis__crypto", + "xUrl": "https://twitter.com/arvis__crypto", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_501317", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "stack7311", + "displayName": "Stack7311.base.eth", + "fid": 501317, + "followers": 413, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d43b2720-f712-45ad-d265-4062411e3800/rectcrop3", + "ensName": "stack73111.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xadef5993319ddef1b06ac7667e6ce0835718a743", + "etherscanUrl": "https://etherscan.io/address/0xadef5993319ddef1b06ac7667e6ce0835718a743", + "xHandle": "doudoustark", + "xUrl": "https://twitter.com/doudoustark", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_383172", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "lazybone", + "displayName": "Lazy.base.eth", + "fid": 383172, + "followers": 176, + "pfpUrl": "https://i.imgur.com/rjLFvz3.jpg", + "ensName": "0x7x1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6c5482d76ab170a311c97fc1e3989780d2c32a31", + "etherscanUrl": "https://etherscan.io/address/0x6c5482d76ab170a311c97fc1e3989780d2c32a31", + "xHandle": "lazybon56326008", + "xUrl": "https://twitter.com/lazybon56326008", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_875877", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!875877", + "displayName": null, + "fid": 875877, + "followers": 0, + "pfpUrl": null, + "ensName": "jack-pot.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3a293bed8818746230a8f50e5aa8bbda9c10b7cc", + "etherscanUrl": "https://etherscan.io/address/0x3a293bed8818746230a8f50e5aa8bbda9c10b7cc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_197710", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "yupao", + "displayName": "Yu Pao", + "fid": 197710, + "followers": 7, + "pfpUrl": "https://i.imgur.com/wlc38cL.jpg", + "ensName": "dianali.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2001591d4cfe0cc2e8338ce9f3c2b5493e4fa39d", + "etherscanUrl": "https://etherscan.io/address/0x2001591d4cfe0cc2e8338ce9f3c2b5493e4fa39d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530336", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "dolphinring", + "displayName": "dolphinring", + "fid": 530336, + "followers": 10, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1403f9f-314d-4bc8-15cc-9a85f638ba00/rectcrop3", + "ensName": "dolphinring.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc10fb41282774665ef6b132115486d0a000a0932", + "etherscanUrl": "https://etherscan.io/address/0xc10fb41282774665ef6b132115486d0a000a0932", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_326971", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "sbv", + "displayName": "SBV", + "fid": 326971, + "followers": 242, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19a18adf-4841-4510-451e-acd268514b00/original", + "ensName": "1o2o3o4.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9c1e7a9222c37a7febafe9b522b1636c80d2bf26", + "etherscanUrl": "https://etherscan.io/address/0x9c1e7a9222c37a7febafe9b522b1636c80d2bf26", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_417768", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "youwoo", + "displayName": "CityLight", + "fid": 417768, + "followers": 13, + "pfpUrl": "https://ipfs.decentralized-content.com/ipfs/bafybeiarx4lfpmgfushhdljepg5ugf25vhyrlcidyza4satcng2cc3aqvi", + "ensName": "fogcity.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x31ec3fb933711bcf69f3a18aa3c75a2ff34b9862", + "etherscanUrl": "https://etherscan.io/address/0x31ec3fb933711bcf69f3a18aa3c75a2ff34b9862", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_579502", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "jekaflash", + "displayName": "Yevhenii", + "fid": 579502, + "followers": 48, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc0e921b-34d6-4893-a789-f21b57f05500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2d146ca4c102cffccef9cb3b8a55ce331ec0659d", + "etherscanUrl": "https://etherscan.io/address/0x2d146ca4c102cffccef9cb3b8a55ce331ec0659d", + "xHandle": "eugenestasyukev", + "xUrl": "https://twitter.com/eugenestasyukev", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_545839", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "airdropzamani", + "displayName": "KutluhanETH", + "fid": 545839, + "followers": 268, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4983a78-5557-42f1-fabc-5a0c478acb00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72619809c6058bad6508335eaf88cd33bb1369c5", + "etherscanUrl": "https://etherscan.io/address/0x72619809c6058bad6508335eaf88cd33bb1369c5", + "xHandle": "kutluhaneth", + "xUrl": "https://twitter.com/kutluhaneth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_578890", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "wudda", + "displayName": "Wudda", + "fid": 578890, + "followers": 119, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3040aa97-1842-4c14-c8ec-d36fa2ee6b00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5746d2da30b46fe676b0f0cb5d8db5985c1f19cb", + "etherscanUrl": "https://etherscan.io/address/0x5746d2da30b46fe676b0f0cb5d8db5985c1f19cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_495430", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "shi222", + "displayName": "shi222", + "fid": 495430, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07ac6a12-c584-4177-45df-fe608bbca100/rectcrop3", + "ensName": "escapefromcloud.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5811322e633dcf1bed3bb40f321fcc4feaaae732", + "etherscanUrl": "https://etherscan.io/address/0x5811322e633dcf1bed3bb40f321fcc4feaaae732", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_244281", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "maysa1304", + "displayName": "Maysa1304", + "fid": 244281, + "followers": 674, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7e4b6d3-8af8-4f42-dded-09affc886d00/rectcrop3", + "ensName": "maysa13.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x63358c6f06e4350d71e57a8fac5f4d0a7b717de2", + "etherscanUrl": "https://etherscan.io/address/0x63358c6f06e4350d71e57a8fac5f4d0a7b717de2", + "xHandle": "ppassawut1", + "xUrl": "https://twitter.com/ppassawut1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_456786", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "usernamo", + "displayName": "Moriak Petia", + "fid": 456786, + "followers": 113, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64287e44-9f5f-45ba-ae54-c9d271dcf500/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa267904fb862124ee8cd849a02a763b2b5b6afb6", + "etherscanUrl": "https://etherscan.io/address/0xa267904fb862124ee8cd849a02a763b2b5b6afb6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_19272", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "mehdihp94", + "displayName": "Mehdi", + "fid": 19272, + "followers": 697, + "pfpUrl": "https://i.imgur.com/TUsOmvy.jpg", + "ensName": "mehdihp94.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x892a52e48a9f406b98a2b979ee38b63660b2f36c", + "etherscanUrl": "https://etherscan.io/address/0x892a52e48a9f406b98a2b979ee38b63660b2f36c", + "xHandle": "mehdi_hp94", + "xUrl": "https://twitter.com/mehdi_hp94", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_333201", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "ray-ban", + "displayName": "Anatoli", + "fid": 333201, + "followers": 64, + "pfpUrl": "https://i.imgur.com/eCOgUkK.jpg", + "ensName": "fruvita.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x41e0fcb3745b7f39814f8e353b810a74dc5e6512", + "etherscanUrl": "https://etherscan.io/address/0x41e0fcb3745b7f39814f8e353b810a74dc5e6512", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_396598", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "twentyseven27", + "displayName": "TwentySeven27", + "fid": 396598, + "followers": 2, + "pfpUrl": "https://i.imgur.com/jd97zgn.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa297bb9a7aa2aec77f62dcd93ea6db256d8643db", + "etherscanUrl": "https://etherscan.io/address/0xa297bb9a7aa2aec77f62dcd93ea6db256d8643db", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_188874", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "fiohistory", + "displayName": "Rey Wang", + "fid": 188874, + "followers": 245, + "pfpUrl": "https://i.imgur.com/urfQzoh.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0dc1bfb04feb0a1280346342e018ddba334e7f05", + "etherscanUrl": "https://etherscan.io/address/0x0dc1bfb04feb0a1280346342e018ddba334e7f05", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_190901", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!190901", + "displayName": null, + "fid": 190901, + "followers": 0, + "pfpUrl": null, + "ensName": "dragonquest1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7a4a1a694658e5af3b659ae7881ebd8119cb624e", + "etherscanUrl": "https://etherscan.io/address/0x7a4a1a694658e5af3b659ae7881ebd8119cb624e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_543450", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "krivoyrog", + "displayName": "7777777999", + "fid": 543450, + "followers": 412, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5b831ee0-0f2c-4b6f-7d62-f990aa0eb100/rectcrop3", + "ensName": "7777777999.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe3f56435de2ddd9d8812a8fbba00736d01659bfd", + "etherscanUrl": "https://etherscan.io/address/0xe3f56435de2ddd9d8812a8fbba00736d01659bfd", + "xHandle": "dumaydelayua", + "xUrl": "https://twitter.com/dumaydelayua", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_333095", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "maraby", + "displayName": "Dmitry ", + "fid": 333095, + "followers": 39, + "pfpUrl": "https://i.imgur.com/1njvSDS.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7534a1f502ea5fd0d3bdce9d026553a13c88eaf6", + "etherscanUrl": "https://etherscan.io/address/0x7534a1f502ea5fd0d3bdce9d026553a13c88eaf6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_332997", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "biedronka", + "displayName": "Anastasia ", + "fid": 332997, + "followers": 72, + "pfpUrl": "https://i.imgur.com/DkQO4rL.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51bd821bb01ddf5db5cb3707ffa544826898f109", + "etherscanUrl": "https://etherscan.io/address/0x51bd821bb01ddf5db5cb3707ffa544826898f109", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_556677", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "carzyeth", + "displayName": "Carzyeth", + "fid": 556677, + "followers": 4, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0581c71d-2cee-47b4-a44e-2cba8bcdda00/rectcrop3", + "ensName": "carzyeth.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x56f96a3f96c48736417a33413df98f9cc1e0fd56", + "etherscanUrl": "https://etherscan.io/address/0x56f96a3f96c48736417a33413df98f9cc1e0fd56", + "xHandle": "carzyeth", + "xUrl": "https://twitter.com/carzyeth", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_491350", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "philv2dot1", + "displayName": "PhilV2dot1.base.eth", + "fid": 491350, + "followers": 206, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/03ae21ea-feb5-4b9d-038d-46700dec6d00/original", + "ensName": "philv2dot1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf19356adbfb270d792b0fa120e744e47926a06d0", + "etherscanUrl": "https://etherscan.io/address/0xf19356adbfb270d792b0fa120e744e47926a06d0", + "xHandle": "philv2dot1", + "xUrl": "https://twitter.com/philv2dot1", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_255898", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "blueguns", + "displayName": "Radit Angga", + "fid": 255898, + "followers": 29, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1762925401/0029ddd5-0680-4b1d-8eb4-3a087376d494.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08528f0e89405dd38642b8a4b39d99c954a697fd", + "etherscanUrl": "https://etherscan.io/address/0x08528f0e89405dd38642b8a4b39d99c954a697fd", + "xHandle": "raditangga11", + "xUrl": "https://twitter.com/raditangga11", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_391370", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "dinhki", + "displayName": "Dinhki", + "fid": 391370, + "followers": 168, + "pfpUrl": "https://i.imgur.com/Kmu5Fay.jpg", + "ensName": "dinhki.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb84db518a9adec3510f2854d6a96cc363ade5302", + "etherscanUrl": "https://etherscan.io/address/0xb84db518a9adec3510f2854d6a96cc363ade5302", + "xHandle": "dinhki2", + "xUrl": "https://twitter.com/dinhki2", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_422891", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "haxuansang", + "displayName": "haxuansang \"base.eth\"", + "fid": 422891, + "followers": 126, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4bba0c7c-43e8-4a1c-a7a0-1281acd35500/original", + "ensName": "xuansang1976.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa9bbd0d98696c0b34394f5fb11a1539b6aa727a2", + "etherscanUrl": "https://etherscan.io/address/0xa9bbd0d98696c0b34394f5fb11a1539b6aa727a2", + "xHandle": "kieuoanh1991", + "xUrl": "https://twitter.com/kieuoanh1991", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_473684", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "warth", + "displayName": "Tim", + "fid": 473684, + "followers": 5, + "pfpUrl": "https://i.imgur.com/plFhIU7.jpg", + "ensName": "warth.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7040b1ba3d032fe1311b28c29db59d50222fb2d4", + "etherscanUrl": "https://etherscan.io/address/0x7040b1ba3d032fe1311b28c29db59d50222fb2d4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_629306", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "ob1-21-million", + "displayName": "OB1", + "fid": 629306, + "followers": 96, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63a0d8d5-f9a8-4f3e-c8db-37b7acb98200/original", + "ensName": "ob1-21million.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8d0335145c1ac14e3ffc4496b4217b174489667b", + "etherscanUrl": "https://etherscan.io/address/0x8d0335145c1ac14e3ffc4496b4217b174489667b", + "xHandle": "satoshiflacco", + "xUrl": "https://twitter.com/satoshiflacco", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1384165", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "shipengli", + "displayName": "shipengli", + "fid": 1384165, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a2717bd-8a5e-4596-12ba-67e920d4f600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2923210d02739601dd427b36dfc03355992bdbd0", + "etherscanUrl": "https://etherscan.io/address/0x2923210d02739601dd427b36dfc03355992bdbd0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_545340", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "vete", + "displayName": "Vete ", + "fid": 545340, + "followers": 340, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43df74b0-59dc-44a2-8e3a-8c18fe060300/original", + "ensName": "neferr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1dd40ab953273fd215b40afd021c90d4a4a9c1b6", + "etherscanUrl": "https://etherscan.io/address/0x1dd40ab953273fd215b40afd021c90d4a4a9c1b6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_530563", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "xjdong", + "displayName": "Xjdong", + "fid": 530563, + "followers": 254, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9a6ac8d-b826-494f-2f66-830e6b5e1c00/rectcrop3", + "ensName": "xjdong.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x99e5ff5126c68294108df8f92f9321a0d7a69d4e", + "etherscanUrl": "https://etherscan.io/address/0x99e5ff5126c68294108df8f92f9321a0d7a69d4e", + "xHandle": "xjdong95", + "xUrl": "https://twitter.com/xjdong95", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_237148", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!237148", + "displayName": null, + "fid": 237148, + "followers": 0, + "pfpUrl": null, + "ensName": "wobblhash.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x17d518736ee9341dcdc0a2498e013d33cfcdd080", + "etherscanUrl": "https://etherscan.io/address/0x17d518736ee9341dcdc0a2498e013d33cfcdd080", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_650888", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "purplenerrd", + "displayName": "Nabeelah🦄✨(6/100🎥)", + "fid": 650888, + "followers": 2443, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c9ad9ff-4904-4816-1e3b-8653f41fb300/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd83279f8b11d785a9803066af8b5f4d05ac554f1", + "etherscanUrl": "https://etherscan.io/address/0xd83279f8b11d785a9803066af8b5f4d05ac554f1", + "xHandle": "purplenerrrd", + "xUrl": "https://twitter.com/purplenerrrd", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_362995", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "blesgo", + "displayName": "blesgo", + "fid": 362995, + "followers": 8, + "pfpUrl": "https://i.imgur.com/xK4M5W0.jpg", + "ensName": "blesgo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xea94c172e113e1c8016f5f97f09f60376605b004", + "etherscanUrl": "https://etherscan.io/address/0xea94c172e113e1c8016f5f97f09f60376605b004", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_266029", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "devastos", + "displayName": "Mateusz", + "fid": 266029, + "followers": 12, + "pfpUrl": "https://i.imgur.com/bBtz3DN.jpg", + "ensName": "devastos.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0ad06c3639e7ef9f77c2b7057f5ddf7a49949c6d", + "etherscanUrl": "https://etherscan.io/address/0x0ad06c3639e7ef9f77c2b7057f5ddf7a49949c6d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_339874", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "robinsonc", + "displayName": "hittite.base.eth", + "fid": 339874, + "followers": 1320, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/542397fa-0a7f-4520-6cca-5f4fe1b13500/original", + "ensName": "hittite.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4770f67db9d09ca7347c1fccbf3795a464065ecb", + "etherscanUrl": "https://etherscan.io/address/0x4770f67db9d09ca7347c1fccbf3795a464065ecb", + "xHandle": "tmcnylmz", + "xUrl": "https://twitter.com/tmcnylmz", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_529818", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "cheakywood", + "displayName": "Corky", + "fid": 529818, + "followers": 15, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93670f47-19ad-435c-2dcf-eb2726681c00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0303c6ca7ad3b0a9c0dfc4693262d95f77803af7", + "etherscanUrl": "https://etherscan.io/address/0x0303c6ca7ad3b0a9c0dfc4693262d95f77803af7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_440358", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "unclebentse", + "displayName": "uncleben", + "fid": 440358, + "followers": 187, + "pfpUrl": "https://i.imgur.com/4vh8Zad.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc156da4b9fcf6fe13ce5c5c9a911aab8e66cd157", + "etherscanUrl": "https://etherscan.io/address/0xc156da4b9fcf6fe13ce5c5c9a911aab8e66cd157", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_463790", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "drnn", + "displayName": "Darren.base.eth", + "fid": 463790, + "followers": 562, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/713fcdaa-e807-4ae1-11e1-49ec1cb3d400/original", + "ensName": "drnnrd.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9a9dac2da0d3b829f807df55a88e4008b7f641d0", + "etherscanUrl": "https://etherscan.io/address/0x9a9dac2da0d3b829f807df55a88e4008b7f641d0", + "xHandle": "drn0602", + "xUrl": "https://twitter.com/drn0602", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_354095", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!354095", + "displayName": null, + "fid": 354095, + "followers": 1, + "pfpUrl": null, + "ensName": "evgenjj.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7743526ba3ae2798fa34f9957b0727e42966a209", + "etherscanUrl": "https://etherscan.io/address/0x7743526ba3ae2798fa34f9957b0727e42966a209", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_659797", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "alex24b34", + "displayName": "Alex24b34 base.eth", + "fid": 659797, + "followers": 13, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1fc23f3-0d2c-4584-11d3-445c5e577600/rectcrop3", + "ensName": "alex24b34.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x84ededa719de97ac74596bed7bcfea20ccf401f0", + "etherscanUrl": "https://etherscan.io/address/0x84ededa719de97ac74596bed7bcfea20ccf401f0", + "xHandle": "alex24b34", + "xUrl": "https://twitter.com/alex24b34", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_190083", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!190083", + "displayName": null, + "fid": 190083, + "followers": 0, + "pfpUrl": null, + "ensName": "axdrdr56n.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x60292ee7ac453105b4e1f9893fd2193a953838b8", + "etherscanUrl": "https://etherscan.io/address/0x60292ee7ac453105b4e1f9893fd2193a953838b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_368539", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!368539", + "displayName": null, + "fid": 368539, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c533f41a88fed7e00cdd28b3895471fa5345303", + "etherscanUrl": "https://etherscan.io/address/0x7c533f41a88fed7e00cdd28b3895471fa5345303", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_342402", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "bardiak", + "displayName": "bash 🎩", + "fid": 342402, + "followers": 331, + "pfpUrl": "https://i.imgur.com/pGfqRU2.png", + "ensName": "bardiak.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7b73f175eda17ed09841cff38712cc03ef76e11c", + "etherscanUrl": "https://etherscan.io/address/0x7b73f175eda17ed09841cff38712cc03ef76e11c", + "xHandle": "enmaalpha", + "xUrl": "https://twitter.com/enmaalpha", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_680833", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "tarittarit141", + "displayName": "Tarittarit", + "fid": 680833, + "followers": 249, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6142ce9f-a215-4333-6d7b-36cd64fc0400/original", + "ensName": "tarit.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd77f919b814314afcd3be9908471f65c890e455d", + "etherscanUrl": "https://etherscan.io/address/0xd77f919b814314afcd3be9908471f65c890e455d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_667417", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "exzillum", + "displayName": "ExZiLLuM 🐱", + "fid": 667417, + "followers": 35, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d5c0642-7a60-435d-046a-837cc21abd00/rectcrop3", + "ensName": "exzillum.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd19bb63a548b78446af3699f5fd4cf0da64862f4", + "etherscanUrl": "https://etherscan.io/address/0xd19bb63a548b78446af3699f5fd4cf0da64862f4", + "xHandle": "exzillum", + "xUrl": "https://twitter.com/exzillum", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_529663", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "schank", + "displayName": "Schank”base.eth”", + "fid": 529663, + "followers": 193, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47f45c75-25e6-4898-0c92-1e3d2287a600/rectcrop3", + "ensName": "schanks.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x720da27c3961bd2fe995840a2c2860e1ba2c4276", + "etherscanUrl": "https://etherscan.io/address/0x720da27c3961bd2fe995840a2c2860e1ba2c4276", + "xHandle": "sanksergej", + "xUrl": "https://twitter.com/sanksergej", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_477379", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "joeyjubjub", + "displayName": "joeyjubjub", + "fid": 477379, + "followers": 9, + "pfpUrl": "https://i.imgur.com/W3Tvbra.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57bd0d17cfd091ebffdda0615e67806f9b61877d", + "etherscanUrl": "https://etherscan.io/address/0x57bd0d17cfd091ebffdda0615e67806f9b61877d", + "xHandle": "joey_jubjub", + "xUrl": "https://twitter.com/joey_jubjub", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_506575", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "mariyasmir", + "displayName": "Mariya Smirn", + "fid": 506575, + "followers": 26, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb8aaf5c-052b-433b-eb7a-c244c62e6700/rectcrop3", + "ensName": "moneymistake.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa4431568a51b80bb47d60e94f6294ba137a72848", + "etherscanUrl": "https://etherscan.io/address/0xa4431568a51b80bb47d60e94f6294ba137a72848", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_748157", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "!748157", + "displayName": "SAP", + "fid": 748157, + "followers": 0, + "pfpUrl": "https://far.quest/DEFAULT_AVATAR.jpg", + "ensName": "sapnsk.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x05202ab4775485a4ef6242e8ec4c86da53bb1dcf", + "etherscanUrl": "https://etherscan.io/address/0x05202ab4775485a4ef6242e8ec4c86da53bb1dcf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492204", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "03267218jr", + "displayName": "Akol'base.eth'", + "fid": 492204, + "followers": 3, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64fc379c-0894-4e05-6ce4-cd14cafe8500/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42607d48e4046a7580a71cb9a27eb4db3a99e0d7", + "etherscanUrl": "https://etherscan.io/address/0x42607d48e4046a7580a71cb9a27eb4db3a99e0d7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_472823", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "invmediasem", + "displayName": "Invmediasem", + "fid": 472823, + "followers": 172, + "pfpUrl": "https://i.imgur.com/QZI3y0v.jpg", + "ensName": "invmediasem.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xacc188b3dd84c0b3d453d09241ebad12775a6161", + "etherscanUrl": "https://etherscan.io/address/0xacc188b3dd84c0b3d453d09241ebad12775a6161", + "xHandle": "jojjlojj", + "xUrl": "https://twitter.com/jojjlojj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_475603", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "mumusky", + "displayName": "mumusky.base.eth", + "fid": 475603, + "followers": 795, + "pfpUrl": "https://i.imgur.com/flG4ELs.jpg", + "ensName": "mumusky.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xce4b779aa407234ee950691b42f54b70b725b39f", + "etherscanUrl": "https://etherscan.io/address/0xce4b779aa407234ee950691b42f54b70b725b39f", + "xHandle": "js46335891", + "xUrl": "https://twitter.com/js46335891", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_936487", + "balanceRaw": "314000000000000000000", + "balanceFormatted": "314", + "lastTransferAt": null, + "username": "d50", + "displayName": "D50", + "fid": 936487, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e411ac8-9c29-4118-05cf-4b735d2c1500/original", + "ensName": "nguyentx.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2317a79f71273a3fb0ae6f05f2a20158c7abeb68", + "etherscanUrl": "https://etherscan.io/address/0x2317a79f71273a3fb0ae6f05f2a20158c7abeb68", + "xHandle": "persians_d50", + "xUrl": "https://twitter.com/persians_d50", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_389203", + "balanceRaw": "312364313440794675875", + "balanceFormatted": "312.364313440794675875", + "lastTransferAt": null, + "username": "kielbik", + "displayName": "Kielbik", + "fid": 389203, + "followers": 20, + "pfpUrl": "https://i.imgur.com/45euVWz.jpg", + "ensName": "kielbik.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x915ddeac03479b2e10929a027698fd763ad9416f", + "etherscanUrl": "https://etherscan.io/address/0x915ddeac03479b2e10929a027698fd763ad9416f", + "xHandle": "kielbik_", + "xUrl": "https://twitter.com/kielbik_", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x73471da03bd2db3c4ca849189b140b72ecc4589d", + "balanceRaw": "311648835657891207850", + "balanceFormatted": "311.64883565789120785", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x73471da03bd2db3c4ca849189b140b72ecc4589d", + "etherscanUrl": "https://etherscan.io/address/0x73471da03bd2db3c4ca849189b140b72ecc4589d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_482556", + "balanceRaw": "311619807364499532318", + "balanceFormatted": "311.619807364499532318", + "lastTransferAt": null, + "username": "willdias", + "displayName": "Willdias ⌐🟥-🟥", + "fid": 482556, + "followers": 345, + "pfpUrl": "https://i.imgur.com/TVhwI5J.jpg", + "ensName": "willdias.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd215e0e0602fd51597725d0575eacfbc834a93c8", + "etherscanUrl": "https://etherscan.io/address/0xd215e0e0602fd51597725d0575eacfbc834a93c8", + "xHandle": "willdiasgnars", + "xUrl": "https://twitter.com/willdiasgnars", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_334723", + "balanceRaw": "311131935214168239179", + "balanceFormatted": "311.131935214168239179", + "lastTransferAt": null, + "username": "naveltok", + "displayName": "naveltok", + "fid": 334723, + "followers": 36, + "pfpUrl": "https://i.imgur.com/NTvFSC5.jpg", + "ensName": "naveltok.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x76b00ef3e9abadd436d2f2cd414e44e90015a5ad", + "etherscanUrl": "https://etherscan.io/address/0x76b00ef3e9abadd436d2f2cd414e44e90015a5ad", + "xHandle": "naveltok", + "xUrl": "https://twitter.com/naveltok", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76e2d69e2ebb06c747fad7aeb01498a7327750c1", + "balanceRaw": "311000000000000000000", + "balanceFormatted": "311", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76e2d69e2ebb06c747fad7aeb01498a7327750c1", + "etherscanUrl": "https://etherscan.io/address/0x76e2d69e2ebb06c747fad7aeb01498a7327750c1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9c05fda8db33d8ba018158f8ddf06ee6fee2c129", + "balanceRaw": "310963972766171048981", + "balanceFormatted": "310.963972766171048981", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9c05fda8db33d8ba018158f8ddf06ee6fee2c129", + "etherscanUrl": "https://etherscan.io/address/0x9c05fda8db33d8ba018158f8ddf06ee6fee2c129", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_361523", + "balanceRaw": "310671596255989420181", + "balanceFormatted": "310.671596255989420181", + "lastTransferAt": null, + "username": "shuri", + "displayName": "shuri🎩🍖", + "fid": 361523, + "followers": 523, + "pfpUrl": "https://i.imgur.com/ePI9nAt.jpg", + "ensName": "しゅりさん.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4899c161bf167bd234e55cef0810e38386e546ba", + "etherscanUrl": "https://etherscan.io/address/0x4899c161bf167bd234e55cef0810e38386e546ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_423655", + "balanceRaw": "307270706494476497404", + "balanceFormatted": "307.270706494476497404", + "lastTransferAt": null, + "username": "ahamsandwich", + "displayName": "Ham", + "fid": 423655, + "followers": 66, + "pfpUrl": "https://i.imgur.com/JNXtDLw.jpg", + "ensName": "ahamsandwich.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x028c3f897c290169abd8439abd0577cbb7aa6c05", + "etherscanUrl": "https://etherscan.io/address/0x028c3f897c290169abd8439abd0577cbb7aa6c05", + "xHandle": "ahamsanwich", + "xUrl": "https://twitter.com/ahamsanwich", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x18327529a46b050044f03509c4528725cf535d39", + "balanceRaw": "306221466004589711870", + "balanceFormatted": "306.22146600458971187", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x18327529a46b050044f03509c4528725cf535d39", + "etherscanUrl": "https://etherscan.io/address/0x18327529a46b050044f03509c4528725cf535d39", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_852976", + "balanceRaw": "300000000000000000000", + "balanceFormatted": "300", + "lastTransferAt": null, + "username": "mathis-btc", + "displayName": "Mathis ₿", + "fid": 852976, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/321c6db8-a02a-4193-8f03-3813d870f200/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5082cf48dbed1d63290bdd330d2444790a991b30", + "etherscanUrl": "https://etherscan.io/address/0x5082cf48dbed1d63290bdd330d2444790a991b30", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1074781", + "balanceRaw": "300000000000000000000", + "balanceFormatted": "300", + "lastTransferAt": null, + "username": "johannaj", + "displayName": "Johanna Jurgens", + "fid": 1074781, + "followers": 295, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4842b5a-0aa4-4588-e723-351edc6b9a00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd692d43ad9382ba125434c8d0c09a3962ce9cc16", + "etherscanUrl": "https://etherscan.io/address/0xd692d43ad9382ba125434c8d0c09a3962ce9cc16", + "xHandle": "johannajurgenss", + "xUrl": "https://twitter.com/johannajurgenss", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_455678", + "balanceRaw": "299635608708421547234", + "balanceFormatted": "299.635608708421547234", + "lastTransferAt": null, + "username": "komacashgold", + "displayName": "Komacash", + "fid": 455678, + "followers": 1226, + "pfpUrl": "https://i.imgur.com/V1PgiZs.jpg", + "ensName": "komacash.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x466627e1a58da0f3af134703fe70cb49e86b186d", + "etherscanUrl": "https://etherscan.io/address/0x466627e1a58da0f3af134703fe70cb49e86b186d", + "xHandle": "komacash", + "xUrl": "https://twitter.com/komacash", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_210451", + "balanceRaw": "298416525498319430136", + "balanceFormatted": "298.416525498319430136", + "lastTransferAt": null, + "username": "spookyaction-btc", + "displayName": "Dara Khan", + "fid": 210451, + "followers": 615, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d762da9-b72e-4e8e-2ad5-6536590a8600/original", + "ensName": "darakhan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6ac5ffb373633f27e47fe180cd99133104f7f464", + "etherscanUrl": "https://etherscan.io/address/0x6ac5ffb373633f27e47fe180cd99133104f7f464", + "xHandle": "dara_khan", + "xUrl": "https://twitter.com/dara_khan", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6f7d8adde774c3ecf11707806b95034a4dc023d2", + "balanceRaw": "286504360289422202131", + "balanceFormatted": "286.504360289422202131", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "mod20.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6f7d8adde774c3ecf11707806b95034a4dc023d2", + "etherscanUrl": "https://etherscan.io/address/0x6f7d8adde774c3ecf11707806b95034a4dc023d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1091388", + "balanceRaw": "286000000000000000000", + "balanceFormatted": "286", + "lastTransferAt": null, + "username": "noun584", + "displayName": "NOUN584", + "fid": 1091388, + "followers": 122, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff641f62-7bbd-474c-9898-05c4dff01400/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a23e478c64c87997e547bcb81dc9ea2a0e19af7", + "etherscanUrl": "https://etherscan.io/address/0x7a23e478c64c87997e547bcb81dc9ea2a0e19af7", + "xHandle": "noun584", + "xUrl": "https://twitter.com/noun584", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_195117", + "balanceRaw": "284935883000000000000", + "balanceFormatted": "284.935883", + "lastTransferAt": null, + "username": "jacque", + "displayName": "Jacque(she|her) 026/100🎥", + "fid": 195117, + "followers": 8159, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/498b4353-e6e6-41bd-96de-8cdf77fd1100/original", + "ensName": "jacquec.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x517aed69de606b3cf120c8f50bc5c932c740fb2a", + "etherscanUrl": "https://etherscan.io/address/0x517aed69de606b3cf120c8f50bc5c932c740fb2a", + "xHandle": "jacquec_art", + "xUrl": "https://twitter.com/jacquec_art", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x729b250ab4f574f2d081af58f5394ef3dd32218a", + "balanceRaw": "283552566070960205028", + "balanceFormatted": "283.552566070960205028", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x729b250ab4f574f2d081af58f5394ef3dd32218a", + "etherscanUrl": "https://etherscan.io/address/0x729b250ab4f574f2d081af58f5394ef3dd32218a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_406879", + "balanceRaw": "280180792428385987897", + "balanceFormatted": "280.180792428385987897", + "lastTransferAt": null, + "username": "ktybr", + "displayName": "Elena Klyu", + "fid": 406879, + "followers": 2044, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bdb29a2f-0d27-41c6-56e2-15abcb019300/original", + "ensName": "ktybr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1a4650b0f6bba7b97488369adb0942f3a68e452d", + "etherscanUrl": "https://etherscan.io/address/0x1a4650b0f6bba7b97488369adb0942f3a68e452d", + "xHandle": "ktybr87", + "xUrl": "https://twitter.com/ktybr87", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd6b980029e6e6e0733ac8ec3e02be9410d09799", + "balanceRaw": "277562050421679519029", + "balanceFormatted": "277.562050421679519029", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd6b980029e6e6e0733ac8ec3e02be9410d09799", + "etherscanUrl": "https://etherscan.io/address/0xcd6b980029e6e6e0733ac8ec3e02be9410d09799", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_237394", + "balanceRaw": "270928583824597907007", + "balanceFormatted": "270.928583824597907007", + "lastTransferAt": null, + "username": "vaizal", + "displayName": "Vaizal", + "fid": 237394, + "followers": 176, + "pfpUrl": "https://i.imgur.com/d3zhjsx.jpg", + "ensName": "story.holer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x880e9659a0bcdcf76380f52b3b4beefd988f8946", + "etherscanUrl": "https://etherscan.io/address/0x880e9659a0bcdcf76380f52b3b4beefd988f8946", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_341646", + "balanceRaw": "270586271370775995245", + "balanceFormatted": "270.586271370775995245", + "lastTransferAt": null, + "username": "elvijs", + "displayName": "Elvijs", + "fid": 341646, + "followers": 535, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2371a7e-8c36-45f5-3261-364465e5a900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9ce34dfcd3cc92804772f3022af27bcd5e43ff2", + "etherscanUrl": "https://etherscan.io/address/0xf9ce34dfcd3cc92804772f3022af27bcd5e43ff2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_888823", + "balanceRaw": "270111099814441678870", + "balanceFormatted": "270.11109981444167887", + "lastTransferAt": null, + "username": "sethnuno00", + "displayName": "Luís Fernandes", + "fid": 888823, + "followers": 750, + "pfpUrl": "https://api.npc.nexus/v1/storage/buckets/6550e3a8c8d1568fe219/files/888823/preview?project=npcnexus&date=5867388", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x55baf79137628aad1c502a8caba7d67df38cd7dc", + "etherscanUrl": "https://etherscan.io/address/0x55baf79137628aad1c502a8caba7d67df38cd7dc", + "xHandle": "nunoseth25", + "xUrl": "https://twitter.com/nunoseth25", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_514131", + "balanceRaw": "269088599863830790003", + "balanceFormatted": "269.088599863830790003", + "lastTransferAt": null, + "username": "arunmak31", + "displayName": "Arunkumar", + "fid": 514131, + "followers": 75, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/320674f4-c770-490d-54d9-dc1cff191100/rectcrop3", + "ensName": "thorilliarun31.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbb4c44cd1cd582c4a3dbb60c956e96f903f6a7ff", + "etherscanUrl": "https://etherscan.io/address/0xbb4c44cd1cd582c4a3dbb60c956e96f903f6a7ff", + "xHandle": "arunmakm", + "xUrl": "https://twitter.com/arunmakm", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x52866fd157577897ce627022b9c19bd2e622fd7a", + "balanceRaw": "266538935339023355934", + "balanceFormatted": "266.538935339023355934", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52866fd157577897ce627022b9c19bd2e622fd7a", + "etherscanUrl": "https://etherscan.io/address/0x52866fd157577897ce627022b9c19bd2e622fd7a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7815bd5d1f972dc6913619480c1f32eea737233d", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7815bd5d1f972dc6913619480c1f32eea737233d", + "etherscanUrl": "https://etherscan.io/address/0x7815bd5d1f972dc6913619480c1f32eea737233d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc50edfc3aacd0fad72fa07530a53fafa1daa5c04", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc50edfc3aacd0fad72fa07530a53fafa1daa5c04", + "etherscanUrl": "https://etherscan.io/address/0xc50edfc3aacd0fad72fa07530a53fafa1daa5c04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5cf604f4584ef6549bbd8fc7831cbaf1c47b6d6e", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5cf604f4584ef6549bbd8fc7831cbaf1c47b6d6e", + "etherscanUrl": "https://etherscan.io/address/0x5cf604f4584ef6549bbd8fc7831cbaf1c47b6d6e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc4f5920a7aaab8511c973947b8ae3e47ed2b0d90", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "vladislab1488.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc4f5920a7aaab8511c973947b8ae3e47ed2b0d90", + "etherscanUrl": "https://etherscan.io/address/0xc4f5920a7aaab8511c973947b8ae3e47ed2b0d90", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd119f47b11b551db77ffa4b1f3639991e8d11382", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd119f47b11b551db77ffa4b1f3639991e8d11382", + "etherscanUrl": "https://etherscan.io/address/0xd119f47b11b551db77ffa4b1f3639991e8d11382", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x423d18282a438f4db0ec97d5579c2c55c37d9770", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x423d18282a438f4db0ec97d5579c2c55c37d9770", + "etherscanUrl": "https://etherscan.io/address/0x423d18282a438f4db0ec97d5579c2c55c37d9770", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x62c59664256df5946fb5cdcf2aefa038a101993f", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "bytoby.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x62c59664256df5946fb5cdcf2aefa038a101993f", + "etherscanUrl": "https://etherscan.io/address/0x62c59664256df5946fb5cdcf2aefa038a101993f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8a07cf2747227b88b7b0b74e0e2c60cd182f7838", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8a07cf2747227b88b7b0b74e0e2c60cd182f7838", + "etherscanUrl": "https://etherscan.io/address/0x8a07cf2747227b88b7b0b74e0e2c60cd182f7838", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x60ff67967599d8947efd539649d9938743b0189c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x60ff67967599d8947efd539649d9938743b0189c", + "etherscanUrl": "https://etherscan.io/address/0x60ff67967599d8947efd539649d9938743b0189c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x134dd1294c328fef673c1c3f6f1acbdd19c0cae3", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x134dd1294c328fef673c1c3f6f1acbdd19c0cae3", + "etherscanUrl": "https://etherscan.io/address/0x134dd1294c328fef673c1c3f6f1acbdd19c0cae3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5bb7c4040e0f0bebc166e32078ab4aacf37242a7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5bb7c4040e0f0bebc166e32078ab4aacf37242a7", + "etherscanUrl": "https://etherscan.io/address/0x5bb7c4040e0f0bebc166e32078ab4aacf37242a7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x00d8ebac1c3f014cc3bd5c576e04b19c6997e8a1", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x00d8ebac1c3f014cc3bd5c576e04b19c6997e8a1", + "etherscanUrl": "https://etherscan.io/address/0x00d8ebac1c3f014cc3bd5c576e04b19c6997e8a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0de3f84782427380c6588a9dca8675a5c40893cb", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "888ens.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0de3f84782427380c6588a9dca8675a5c40893cb", + "etherscanUrl": "https://etherscan.io/address/0x0de3f84782427380c6588a9dca8675a5c40893cb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa78cc539468cbdd6b8d90b09284f9dd9495dc43b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa78cc539468cbdd6b8d90b09284f9dd9495dc43b", + "etherscanUrl": "https://etherscan.io/address/0xa78cc539468cbdd6b8d90b09284f9dd9495dc43b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa2e731db15098a4aacef51cf8b7759094bf1564b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "setalink.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa2e731db15098a4aacef51cf8b7759094bf1564b", + "etherscanUrl": "https://etherscan.io/address/0xa2e731db15098a4aacef51cf8b7759094bf1564b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7a8b4072b621a47ab51b0ccc5509e4fc749f6544", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7a8b4072b621a47ab51b0ccc5509e4fc749f6544", + "etherscanUrl": "https://etherscan.io/address/0x7a8b4072b621a47ab51b0ccc5509e4fc749f6544", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x57f9514ebaa227db0ce588f3417816fab701ea3c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x57f9514ebaa227db0ce588f3417816fab701ea3c", + "etherscanUrl": "https://etherscan.io/address/0x57f9514ebaa227db0ce588f3417816fab701ea3c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x08458a2fa032c53ae5d6632e7fe2d4ad4a4c061b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x08458a2fa032c53ae5d6632e7fe2d4ad4a4c061b", + "etherscanUrl": "https://etherscan.io/address/0x08458a2fa032c53ae5d6632e7fe2d4ad4a4c061b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5e05f3826e03eecb22b3731ae8346ed897cea1cf", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "mbappe999.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5e05f3826e03eecb22b3731ae8346ed897cea1cf", + "etherscanUrl": "https://etherscan.io/address/0x5e05f3826e03eecb22b3731ae8346ed897cea1cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9d82bf1c89a42998a03a21849a16e446656fa985", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "victor13.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9d82bf1c89a42998a03a21849a16e446656fa985", + "etherscanUrl": "https://etherscan.io/address/0x9d82bf1c89a42998a03a21849a16e446656fa985", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaa2d3d69f846ecd341b443fcd85ad561baba57c7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa2d3d69f846ecd341b443fcd85ad561baba57c7", + "etherscanUrl": "https://etherscan.io/address/0xaa2d3d69f846ecd341b443fcd85ad561baba57c7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b0b43d5bc4fd8261f4baa6cd349fe7da038ec1e", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b0b43d5bc4fd8261f4baa6cd349fe7da038ec1e", + "etherscanUrl": "https://etherscan.io/address/0x8b0b43d5bc4fd8261f4baa6cd349fe7da038ec1e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb4d6618d3eb533216047eb5d0d5964cf88fac192", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb4d6618d3eb533216047eb5d0d5964cf88fac192", + "etherscanUrl": "https://etherscan.io/address/0xb4d6618d3eb533216047eb5d0d5964cf88fac192", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbefaf1c1c28c821114434d689d9004e8a3279022", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbefaf1c1c28c821114434d689d9004e8a3279022", + "etherscanUrl": "https://etherscan.io/address/0xbefaf1c1c28c821114434d689d9004e8a3279022", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2c64a1d5d602e7fb6d21da6211dcecc6e17a0649", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "purpotest.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2c64a1d5d602e7fb6d21da6211dcecc6e17a0649", + "etherscanUrl": "https://etherscan.io/address/0x2c64a1d5d602e7fb6d21da6211dcecc6e17a0649", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe9c2e24faede890ce7ef474224aa45e8df4f07b0", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe9c2e24faede890ce7ef474224aa45e8df4f07b0", + "etherscanUrl": "https://etherscan.io/address/0xe9c2e24faede890ce7ef474224aa45e8df4f07b0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x59e01445d9051b75f833ffc5acd1a6189f73d0e4", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x59e01445d9051b75f833ffc5acd1a6189f73d0e4", + "etherscanUrl": "https://etherscan.io/address/0x59e01445d9051b75f833ffc5acd1a6189f73d0e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x578b29a7505991853c41289af1e8ce671ab20069", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x578b29a7505991853c41289af1e8ce671ab20069", + "etherscanUrl": "https://etherscan.io/address/0x578b29a7505991853c41289af1e8ce671ab20069", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5db54b1f6a7aee8015ca7d6af9975ff045d63e13", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5db54b1f6a7aee8015ca7d6af9975ff045d63e13", + "etherscanUrl": "https://etherscan.io/address/0x5db54b1f6a7aee8015ca7d6af9975ff045d63e13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe843ce52b064c2bc4726a3063ccfb082abccb768", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe843ce52b064c2bc4726a3063ccfb082abccb768", + "etherscanUrl": "https://etherscan.io/address/0xe843ce52b064c2bc4726a3063ccfb082abccb768", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf9cb9d126b4ad715a4e506e87b2c5202dbcbf632", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf9cb9d126b4ad715a4e506e87b2c5202dbcbf632", + "etherscanUrl": "https://etherscan.io/address/0xf9cb9d126b4ad715a4e506e87b2c5202dbcbf632", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x191ede58d87b4c7337fc2b284cd79d2415c9d434", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x191ede58d87b4c7337fc2b284cd79d2415c9d434", + "etherscanUrl": "https://etherscan.io/address/0x191ede58d87b4c7337fc2b284cd79d2415c9d434", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfb2897a4a7bf87b4662a1d15858498401e172e19", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb2897a4a7bf87b4662a1d15858498401e172e19", + "etherscanUrl": "https://etherscan.io/address/0xfb2897a4a7bf87b4662a1d15858498401e172e19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x40955e6f7e394dff3791f209b7067d725c239423", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40955e6f7e394dff3791f209b7067d725c239423", + "etherscanUrl": "https://etherscan.io/address/0x40955e6f7e394dff3791f209b7067d725c239423", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1f7075060269d9cc3670baabaed42d8910654fb2", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1f7075060269d9cc3670baabaed42d8910654fb2", + "etherscanUrl": "https://etherscan.io/address/0x1f7075060269d9cc3670baabaed42d8910654fb2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6c31bc0d5405e1cec5faea308247ca2b19041348", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6c31bc0d5405e1cec5faea308247ca2b19041348", + "etherscanUrl": "https://etherscan.io/address/0x6c31bc0d5405e1cec5faea308247ca2b19041348", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xde2dc8e044b20b5ae4d44d730d498e862e80e921", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xde2dc8e044b20b5ae4d44d730d498e862e80e921", + "etherscanUrl": "https://etherscan.io/address/0xde2dc8e044b20b5ae4d44d730d498e862e80e921", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x990dfb7cb93f40833dee7b154554fc50a3745c5d", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x990dfb7cb93f40833dee7b154554fc50a3745c5d", + "etherscanUrl": "https://etherscan.io/address/0x990dfb7cb93f40833dee7b154554fc50a3745c5d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9daac9fee6e82ac2d2aef633403e91e9c7a662cf", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9daac9fee6e82ac2d2aef633403e91e9c7a662cf", + "etherscanUrl": "https://etherscan.io/address/0x9daac9fee6e82ac2d2aef633403e91e9c7a662cf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x548990ee95d31f5b6d87b35caafcb6d35068d81e", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "quadshock.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x548990ee95d31f5b6d87b35caafcb6d35068d81e", + "etherscanUrl": "https://etherscan.io/address/0x548990ee95d31f5b6d87b35caafcb6d35068d81e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ce7a7901ad9770bc9e881f89f0513a8efa0b638", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ce7a7901ad9770bc9e881f89f0513a8efa0b638", + "etherscanUrl": "https://etherscan.io/address/0x0ce7a7901ad9770bc9e881f89f0513a8efa0b638", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb11a963b6fdf382a355dd75d4a044376fb5d2e19", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb11a963b6fdf382a355dd75d4a044376fb5d2e19", + "etherscanUrl": "https://etherscan.io/address/0xb11a963b6fdf382a355dd75d4a044376fb5d2e19", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc3e403b21fc888d59df7ba6324a5a01421a0853f", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "kronosi77.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc3e403b21fc888d59df7ba6324a5a01421a0853f", + "etherscanUrl": "https://etherscan.io/address/0xc3e403b21fc888d59df7ba6324a5a01421a0853f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb6f6e1f5592be7fb0acae192fb23821572d480fe", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6f6e1f5592be7fb0acae192fb23821572d480fe", + "etherscanUrl": "https://etherscan.io/address/0xb6f6e1f5592be7fb0acae192fb23821572d480fe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcf6ba6727fc1e348a9ad36bb67d017612cd44008", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "zmbgal3.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xcf6ba6727fc1e348a9ad36bb67d017612cd44008", + "etherscanUrl": "https://etherscan.io/address/0xcf6ba6727fc1e348a9ad36bb67d017612cd44008", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x133a361474665bbecb079b9c79f1fb975fc935b7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x133a361474665bbecb079b9c79f1fb975fc935b7", + "etherscanUrl": "https://etherscan.io/address/0x133a361474665bbecb079b9c79f1fb975fc935b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x64b8b50251fef60e8a9d444397cf4c15aa147091", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x64b8b50251fef60e8a9d444397cf4c15aa147091", + "etherscanUrl": "https://etherscan.io/address/0x64b8b50251fef60e8a9d444397cf4c15aa147091", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x1bfd57e6d0f3696d88cb997df0fbbf4c7d7a02f7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1bfd57e6d0f3696d88cb997df0fbbf4c7d7a02f7", + "etherscanUrl": "https://etherscan.io/address/0x1bfd57e6d0f3696d88cb997df0fbbf4c7d7a02f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x068a40d35f4b49fa84cb0d1899208aa4e7c91d04", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x068a40d35f4b49fa84cb0d1899208aa4e7c91d04", + "etherscanUrl": "https://etherscan.io/address/0x068a40d35f4b49fa84cb0d1899208aa4e7c91d04", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaa801729bd13d290e3364784b5ef83bf6031e0f7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaa801729bd13d290e3364784b5ef83bf6031e0f7", + "etherscanUrl": "https://etherscan.io/address/0xaa801729bd13d290e3364784b5ef83bf6031e0f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7f4ee1ca4e88542c6a9d1017f637a6124ece0e16", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7f4ee1ca4e88542c6a9d1017f637a6124ece0e16", + "etherscanUrl": "https://etherscan.io/address/0x7f4ee1ca4e88542c6a9d1017f637a6124ece0e16", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x354a4f3b0504855cb19d97b234c3d1813c822306", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x354a4f3b0504855cb19d97b234c3d1813c822306", + "etherscanUrl": "https://etherscan.io/address/0x354a4f3b0504855cb19d97b234c3d1813c822306", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x38fb50bbfe4a60da340e2c712322b09b145e1693", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x38fb50bbfe4a60da340e2c712322b09b145e1693", + "etherscanUrl": "https://etherscan.io/address/0x38fb50bbfe4a60da340e2c712322b09b145e1693", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x25bca717365f3494a23b7ffe34ed988e5b027218", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x25bca717365f3494a23b7ffe34ed988e5b027218", + "etherscanUrl": "https://etherscan.io/address/0x25bca717365f3494a23b7ffe34ed988e5b027218", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5970d282b8628dcc4e116de9c2eae11f37329ec0", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5970d282b8628dcc4e116de9c2eae11f37329ec0", + "etherscanUrl": "https://etherscan.io/address/0x5970d282b8628dcc4e116de9c2eae11f37329ec0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xcd3e907055863e381280d31566c2cc74a1effa25", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xcd3e907055863e381280d31566c2cc74a1effa25", + "etherscanUrl": "https://etherscan.io/address/0xcd3e907055863e381280d31566c2cc74a1effa25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4b58841ea6d517f57c0bb2597b4d29853f662adc", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b58841ea6d517f57c0bb2597b4d29853f662adc", + "etherscanUrl": "https://etherscan.io/address/0x4b58841ea6d517f57c0bb2597b4d29853f662adc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xb6d30e574bb1a61bd7299c0375f6529bf167b972", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xb6d30e574bb1a61bd7299c0375f6529bf167b972", + "etherscanUrl": "https://etherscan.io/address/0xb6d30e574bb1a61bd7299c0375f6529bf167b972", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x114d10a2fffa9ae13a273bbc01307e2dd57e347f", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gobygo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x114d10a2fffa9ae13a273bbc01307e2dd57e347f", + "etherscanUrl": "https://etherscan.io/address/0x114d10a2fffa9ae13a273bbc01307e2dd57e347f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x40619454a70ebc5e5cccede9ba9aabb9d3b1d824", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x40619454a70ebc5e5cccede9ba9aabb9d3b1d824", + "etherscanUrl": "https://etherscan.io/address/0x40619454a70ebc5e5cccede9ba9aabb9d3b1d824", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc50a333fc82b3087c96e7849fb90958d2cc9f700", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "gocrpt.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc50a333fc82b3087c96e7849fb90958d2cc9f700", + "etherscanUrl": "https://etherscan.io/address/0xc50a333fc82b3087c96e7849fb90958d2cc9f700", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x649c92a98b8c163de6bba53effd55ad2d89553b7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x649c92a98b8c163de6bba53effd55ad2d89553b7", + "etherscanUrl": "https://etherscan.io/address/0x649c92a98b8c163de6bba53effd55ad2d89553b7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x41b9ca1057354d4089a8b0ae2a10f62d81e3d1d0", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x41b9ca1057354d4089a8b0ae2a10f62d81e3d1d0", + "etherscanUrl": "https://etherscan.io/address/0x41b9ca1057354d4089a8b0ae2a10f62d81e3d1d0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9cb1422e66645746df4241f71ac7b21772c7d2e0", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9cb1422e66645746df4241f71ac7b21772c7d2e0", + "etherscanUrl": "https://etherscan.io/address/0x9cb1422e66645746df4241f71ac7b21772c7d2e0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0a4166c03ee32ca24e21e6d0702961897eb163a8", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0a4166c03ee32ca24e21e6d0702961897eb163a8", + "etherscanUrl": "https://etherscan.io/address/0x0a4166c03ee32ca24e21e6d0702961897eb163a8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x728ad62c7fc8f2b653b3150b83e341d8b8264451", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "krzychhh80.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x728ad62c7fc8f2b653b3150b83e341d8b8264451", + "etherscanUrl": "https://etherscan.io/address/0x728ad62c7fc8f2b653b3150b83e341d8b8264451", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x004b639bbaa7ad8696e50017b6b45872c64cf7c8", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "darcelos.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x004b639bbaa7ad8696e50017b6b45872c64cf7c8", + "etherscanUrl": "https://etherscan.io/address/0x004b639bbaa7ad8696e50017b6b45872c64cf7c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd4fcac34462b27af60ba977ad1bc492d16159b92", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "blackjan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xd4fcac34462b27af60ba977ad1bc492d16159b92", + "etherscanUrl": "https://etherscan.io/address/0xd4fcac34462b27af60ba977ad1bc492d16159b92", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa9e2d5e858304ecde300420cc8aa06dce678496e", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa9e2d5e858304ecde300420cc8aa06dce678496e", + "etherscanUrl": "https://etherscan.io/address/0xa9e2d5e858304ecde300420cc8aa06dce678496e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfb9dfb196afc06e7019203a80381759e07fe22bb", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfb9dfb196afc06e7019203a80381759e07fe22bb", + "etherscanUrl": "https://etherscan.io/address/0xfb9dfb196afc06e7019203a80381759e07fe22bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xfa3b1e715c6c3f672d3f39abb07dfa57e713a8bb", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfa3b1e715c6c3f672d3f39abb07dfa57e713a8bb", + "etherscanUrl": "https://etherscan.io/address/0xfa3b1e715c6c3f672d3f39abb07dfa57e713a8bb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd3ec028279508a50977a47a5e1efa73ba7afd343", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd3ec028279508a50977a47a5e1efa73ba7afd343", + "etherscanUrl": "https://etherscan.io/address/0xd3ec028279508a50977a47a5e1efa73ba7afd343", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4643cadeaeb05bbe434ee9b121f65dc1e54f067b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4643cadeaeb05bbe434ee9b121f65dc1e54f067b", + "etherscanUrl": "https://etherscan.io/address/0x4643cadeaeb05bbe434ee9b121f65dc1e54f067b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3238e4dbb25efefc5d00624f949bc40e719a6f27", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "monotyper.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3238e4dbb25efefc5d00624f949bc40e719a6f27", + "etherscanUrl": "https://etherscan.io/address/0x3238e4dbb25efefc5d00624f949bc40e719a6f27", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x78f0d9a770b141fd5886e245bd47026814963834", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "notforfun.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x78f0d9a770b141fd5886e245bd47026814963834", + "etherscanUrl": "https://etherscan.io/address/0x78f0d9a770b141fd5886e245bd47026814963834", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x582548f94372ca54894012e41f34972370368b84", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x582548f94372ca54894012e41f34972370368b84", + "etherscanUrl": "https://etherscan.io/address/0x582548f94372ca54894012e41f34972370368b84", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xbb0f93ec959cf7d32b24fc1ad3562236a7e47859", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xbb0f93ec959cf7d32b24fc1ad3562236a7e47859", + "etherscanUrl": "https://etherscan.io/address/0xbb0f93ec959cf7d32b24fc1ad3562236a7e47859", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x617811c054c058fd1b1c3c9bffcd1606aee55a2d", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x617811c054c058fd1b1c3c9bffcd1606aee55a2d", + "etherscanUrl": "https://etherscan.io/address/0x617811c054c058fd1b1c3c9bffcd1606aee55a2d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x023fbfac4e706f00d593aabad414cb7958956f20", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x023fbfac4e706f00d593aabad414cb7958956f20", + "etherscanUrl": "https://etherscan.io/address/0x023fbfac4e706f00d593aabad414cb7958956f20", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3bfdc39fa705e710c9a8980995f8b13bc9f1b01b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3bfdc39fa705e710c9a8980995f8b13bc9f1b01b", + "etherscanUrl": "https://etherscan.io/address/0x3bfdc39fa705e710c9a8980995f8b13bc9f1b01b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x495db28e13a43503f791ce64c97633fa36821c67", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x495db28e13a43503f791ce64c97633fa36821c67", + "etherscanUrl": "https://etherscan.io/address/0x495db28e13a43503f791ce64c97633fa36821c67", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x443c9f79d9a7edf04f8d8539692bbf8905009e31", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x443c9f79d9a7edf04f8d8539692bbf8905009e31", + "etherscanUrl": "https://etherscan.io/address/0x443c9f79d9a7edf04f8d8539692bbf8905009e31", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4319e8d7dcd339aa5dc667a63cab58cafbb22300", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4319e8d7dcd339aa5dc667a63cab58cafbb22300", + "etherscanUrl": "https://etherscan.io/address/0x4319e8d7dcd339aa5dc667a63cab58cafbb22300", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x88e66affa67af68f393fcc3de8d59c9cd8a3dbd1", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x88e66affa67af68f393fcc3de8d59c9cd8a3dbd1", + "etherscanUrl": "https://etherscan.io/address/0x88e66affa67af68f393fcc3de8d59c9cd8a3dbd1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x2ad570cbf4dc8afee334f0495fef64da503d79d2", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x2ad570cbf4dc8afee334f0495fef64da503d79d2", + "etherscanUrl": "https://etherscan.io/address/0x2ad570cbf4dc8afee334f0495fef64da503d79d2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5000715dc45b5581b1871c72c5aa30d8853977f7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "pinkeagle.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5000715dc45b5581b1871c72c5aa30d8853977f7", + "etherscanUrl": "https://etherscan.io/address/0x5000715dc45b5581b1871c72c5aa30d8853977f7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x61e3a87dbb3bb5d589f030629d9f15233289daa7", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x61e3a87dbb3bb5d589f030629d9f15233289daa7", + "etherscanUrl": "https://etherscan.io/address/0x61e3a87dbb3bb5d589f030629d9f15233289daa7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc9fe41d4944ebeb147ba03586e2a084929ff5d5c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "dendubrik.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc9fe41d4944ebeb147ba03586e2a084929ff5d5c", + "etherscanUrl": "https://etherscan.io/address/0xc9fe41d4944ebeb147ba03586e2a084929ff5d5c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdb7bd2f01cc559c060bafddc052c9eb35a4338d5", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb7bd2f01cc559c060bafddc052c9eb35a4338d5", + "etherscanUrl": "https://etherscan.io/address/0xdb7bd2f01cc559c060bafddc052c9eb35a4338d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x933ddc2cf453afa3206eb2a44e3d59a7168cb7ad", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x933ddc2cf453afa3206eb2a44e3d59a7168cb7ad", + "etherscanUrl": "https://etherscan.io/address/0x933ddc2cf453afa3206eb2a44e3d59a7168cb7ad", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9b617797da3ea16dcaf50ce806046f966de4f301", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9b617797da3ea16dcaf50ce806046f966de4f301", + "etherscanUrl": "https://etherscan.io/address/0x9b617797da3ea16dcaf50ce806046f966de4f301", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x195c9ccb261cb4fa05c79ff6da30f5eb5e3183b2", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x195c9ccb261cb4fa05c79ff6da30f5eb5e3183b2", + "etherscanUrl": "https://etherscan.io/address/0x195c9ccb261cb4fa05c79ff6da30f5eb5e3183b2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3da94a101245b9b3815f1ddecd532bc335a9361c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3da94a101245b9b3815f1ddecd532bc335a9361c", + "etherscanUrl": "https://etherscan.io/address/0x3da94a101245b9b3815f1ddecd532bc335a9361c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7643e32a9d2b0cc86a95edac9ce2d1a1a81b09b8", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7643e32a9d2b0cc86a95edac9ce2d1a1a81b09b8", + "etherscanUrl": "https://etherscan.io/address/0x7643e32a9d2b0cc86a95edac9ce2d1a1a81b09b8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x169522fc7b15d3f50ae39b87fdc0f77a3bf53fe3", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x169522fc7b15d3f50ae39b87fdc0f77a3bf53fe3", + "etherscanUrl": "https://etherscan.io/address/0x169522fc7b15d3f50ae39b87fdc0f77a3bf53fe3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x43f62d0eac13454c38fb5283f19041ea11c6eeed", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43f62d0eac13454c38fb5283f19041ea11c6eeed", + "etherscanUrl": "https://etherscan.io/address/0x43f62d0eac13454c38fb5283f19041ea11c6eeed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8946532159c0deab7b15c81847f0ad543d44fc70", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8946532159c0deab7b15c81847f0ad543d44fc70", + "etherscanUrl": "https://etherscan.io/address/0x8946532159c0deab7b15c81847f0ad543d44fc70", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf80cb2f6c4b89a5e6e97d646cfca95905a7afccf", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf80cb2f6c4b89a5e6e97d646cfca95905a7afccf", + "etherscanUrl": "https://etherscan.io/address/0xf80cb2f6c4b89a5e6e97d646cfca95905a7afccf", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc5238ebc7ccd0d2b86e23a7764d15dc2e69f74e4", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "pineal.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc5238ebc7ccd0d2b86e23a7764d15dc2e69f74e4", + "etherscanUrl": "https://etherscan.io/address/0xc5238ebc7ccd0d2b86e23a7764d15dc2e69f74e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x52ebf7a5524627467a4e7baec62467f25f56f6b2", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x52ebf7a5524627467a4e7baec62467f25f56f6b2", + "etherscanUrl": "https://etherscan.io/address/0x52ebf7a5524627467a4e7baec62467f25f56f6b2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5f427fca06b90392cc23bc1bbd8a07c7e484b2ba", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5f427fca06b90392cc23bc1bbd8a07c7e484b2ba", + "etherscanUrl": "https://etherscan.io/address/0x5f427fca06b90392cc23bc1bbd8a07c7e484b2ba", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0bc977149e132d8b18c3a644a79f1a8487443a46", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0bc977149e132d8b18c3a644a79f1a8487443a46", + "etherscanUrl": "https://etherscan.io/address/0x0bc977149e132d8b18c3a644a79f1a8487443a46", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6193a0c638224a8f77953ac2d49e5d6daa5d769a", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6193a0c638224a8f77953ac2d49e5d6daa5d769a", + "etherscanUrl": "https://etherscan.io/address/0x6193a0c638224a8f77953ac2d49e5d6daa5d769a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8c8935e01def8a405c175fd59aa99463b6806586", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8c8935e01def8a405c175fd59aa99463b6806586", + "etherscanUrl": "https://etherscan.io/address/0x8c8935e01def8a405c175fd59aa99463b6806586", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd46425c46e7d057cba0b0bb78fbe87b6005a1409", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd46425c46e7d057cba0b0bb78fbe87b6005a1409", + "etherscanUrl": "https://etherscan.io/address/0xd46425c46e7d057cba0b0bb78fbe87b6005a1409", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xa6e55ec0dcd467c771f53eb47f5d1dfcb96e225e", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa6e55ec0dcd467c771f53eb47f5d1dfcb96e225e", + "etherscanUrl": "https://etherscan.io/address/0xa6e55ec0dcd467c771f53eb47f5d1dfcb96e225e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3f0271fa6bbe64da1ea39bd5cdf46883441334ed", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3f0271fa6bbe64da1ea39bd5cdf46883441334ed", + "etherscanUrl": "https://etherscan.io/address/0x3f0271fa6bbe64da1ea39bd5cdf46883441334ed", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x860e8dd2131845228d68a754803408e41688dc4b", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x860e8dd2131845228d68a754803408e41688dc4b", + "etherscanUrl": "https://etherscan.io/address/0x860e8dd2131845228d68a754803408e41688dc4b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x21d6625e4207e28bf6417c246331f1d4c8d82b00", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x21d6625e4207e28bf6417c246331f1d4c8d82b00", + "etherscanUrl": "https://etherscan.io/address/0x21d6625e4207e28bf6417c246331f1d4c8d82b00", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6363ea9bfe6761df341792f347b516c56755a902", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "optimist14.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6363ea9bfe6761df341792f347b516c56755a902", + "etherscanUrl": "https://etherscan.io/address/0x6363ea9bfe6761df341792f347b516c56755a902", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x5ba0fd93c49ceca923e89a036059fd240d772be2", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "mykey21.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5ba0fd93c49ceca923e89a036059fd240d772be2", + "etherscanUrl": "https://etherscan.io/address/0x5ba0fd93c49ceca923e89a036059fd240d772be2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0cbcabf9ffc5a53976aa63f2bf092166b3727151", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "morbak.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0cbcabf9ffc5a53976aa63f2bf092166b3727151", + "etherscanUrl": "https://etherscan.io/address/0x0cbcabf9ffc5a53976aa63f2bf092166b3727151", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x413c18646dd6e468d93e4da9f839ccd52106ee50", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x413c18646dd6e468d93e4da9f839ccd52106ee50", + "etherscanUrl": "https://etherscan.io/address/0x413c18646dd6e468d93e4da9f839ccd52106ee50", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xd540c20e61560533d1c62c9878326625fadb18fd", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xd540c20e61560533d1c62c9878326625fadb18fd", + "etherscanUrl": "https://etherscan.io/address/0xd540c20e61560533d1c62c9878326625fadb18fd", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6adbee0ad006b4051e204a7cfd7774da890bef38", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6adbee0ad006b4051e204a7cfd7774da890bef38", + "etherscanUrl": "https://etherscan.io/address/0x6adbee0ad006b4051e204a7cfd7774da890bef38", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xc340f6525644b843587663e7f6ccd23566587a6c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xc340f6525644b843587663e7f6ccd23566587a6c", + "etherscanUrl": "https://etherscan.io/address/0xc340f6525644b843587663e7f6ccd23566587a6c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9cfb161377bf9d060d1b944adf52cdc4ba95f11d", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x9cfb161377bf9d060d1b944adf52cdc4ba95f11d", + "etherscanUrl": "https://etherscan.io/address/0x9cfb161377bf9d060d1b944adf52cdc4ba95f11d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xe24afa47c3fe47fc68270a54eb53b36d5d9eba14", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe24afa47c3fe47fc68270a54eb53b36d5d9eba14", + "etherscanUrl": "https://etherscan.io/address/0xe24afa47c3fe47fc68270a54eb53b36d5d9eba14", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x8b0c317d920b22ae8d453b592e88dfd9e8f1506f", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x8b0c317d920b22ae8d453b592e88dfd9e8f1506f", + "etherscanUrl": "https://etherscan.io/address/0x8b0c317d920b22ae8d453b592e88dfd9e8f1506f", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x51ba89f79f7511666fe5016c418eb93921242bc4", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x51ba89f79f7511666fe5016c418eb93921242bc4", + "etherscanUrl": "https://etherscan.io/address/0x51ba89f79f7511666fe5016c418eb93921242bc4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x0ae32d42359083919d99656e95d23962b6c0dc08", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ae32d42359083919d99656e95d23962b6c0dc08", + "etherscanUrl": "https://etherscan.io/address/0x0ae32d42359083919d99656e95d23962b6c0dc08", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xaae9e248ed8a581c8872e12a49ef87158841e6c8", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xaae9e248ed8a581c8872e12a49ef87158841e6c8", + "etherscanUrl": "https://etherscan.io/address/0xaae9e248ed8a581c8872e12a49ef87158841e6c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x9e4d15e0ecb571e7e66831334519c76130f29636", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "palaceinvestment.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9e4d15e0ecb571e7e66831334519c76130f29636", + "etherscanUrl": "https://etherscan.io/address/0x9e4d15e0ecb571e7e66831334519c76130f29636", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7c7140543592e81768194b3500d1c2fd6f07a79a", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7c7140543592e81768194b3500d1c2fd6f07a79a", + "etherscanUrl": "https://etherscan.io/address/0x7c7140543592e81768194b3500d1c2fd6f07a79a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x549264f918e54803b23525bdbe6187d65ec99560", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x549264f918e54803b23525bdbe6187d65ec99560", + "etherscanUrl": "https://etherscan.io/address/0x549264f918e54803b23525bdbe6187d65ec99560", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3c22d8ed38fa4d2b11dad58c5c357ed5600b08f5", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3c22d8ed38fa4d2b11dad58c5c357ed5600b08f5", + "etherscanUrl": "https://etherscan.io/address/0x3c22d8ed38fa4d2b11dad58c5c357ed5600b08f5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x62bb0d12474e1d6b24b03461ddb008fd87cb239c", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x62bb0d12474e1d6b24b03461ddb008fd87cb239c", + "etherscanUrl": "https://etherscan.io/address/0x62bb0d12474e1d6b24b03461ddb008fd87cb239c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x76292284a0d801281d45dd47e8bfd49938f22c25", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x76292284a0d801281d45dd47e8bfd49938f22c25", + "etherscanUrl": "https://etherscan.io/address/0x76292284a0d801281d45dd47e8bfd49938f22c25", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xdbc0dd961ea25ce8796cbe23fed97ceafee17d00", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdbc0dd961ea25ce8796cbe23fed97ceafee17d00", + "etherscanUrl": "https://etherscan.io/address/0xdbc0dd961ea25ce8796cbe23fed97ceafee17d00", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xf54815195bcea9c389d14581b72008848d7b04c6", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xf54815195bcea9c389d14581b72008848d7b04c6", + "etherscanUrl": "https://etherscan.io/address/0xf54815195bcea9c389d14581b72008848d7b04c6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x02f86a8783152f5f048afc57b5a2afb5529ee745", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "jaguarstar.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x02f86a8783152f5f048afc57b5a2afb5529ee745", + "etherscanUrl": "https://etherscan.io/address/0x02f86a8783152f5f048afc57b5a2afb5529ee745", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_541422", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "coinherif", + "displayName": "CoinHerif", + "fid": 541422, + "followers": 75, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73a1620e-48c1-4ba5-ffd0-0712cd3a0700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x1884423deb615ea6d98c48bd675ad08fcf03ed2e", + "etherscanUrl": "https://etherscan.io/address/0x1884423deb615ea6d98c48bd675ad08fcf03ed2e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_485370", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "zouglas", + "displayName": "zouglas", + "fid": 485370, + "followers": 355, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74080788-e887-42aa-844e-e4651cdb9700/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x571dfef4d2a854d656d2fa54613c86233e147ca6", + "etherscanUrl": "https://etherscan.io/address/0x571dfef4d2a854d656d2fa54613c86233e147ca6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_233043", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "dato1st", + "displayName": "Dato", + "fid": 233043, + "followers": 1169, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0892149-9f45-40fc-4905-81ac744ac100/rectcrop3", + "ensName": "1stdato.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4fedd69d57cd378a0906bd185b7678478868e719", + "etherscanUrl": "https://etherscan.io/address/0x4fedd69d57cd378a0906bd185b7678478868e719", + "xHandle": "david71604979", + "xUrl": "https://twitter.com/david71604979", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_20687", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "0xhax.eth", + "displayName": "CryHAX", + "fid": 20687, + "followers": 70, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39b4281c-7398-42d2-c793-71e8943c0000/original", + "ensName": "0xhax.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8f2ddd42842e83ae5c1303b3580e018b054afeaa", + "etherscanUrl": "https://etherscan.io/address/0x8f2ddd42842e83ae5c1303b3580e018b054afeaa", + "xHandle": "wendy58152", + "xUrl": "https://twitter.com/wendy58152", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_318956", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "ccn", + "displayName": "Can.base.eth", + "fid": 318956, + "followers": 214, + "pfpUrl": "https://i.imgur.com/re08nnw.jpg", + "ensName": "ccancanc.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc14feb4285c143ba4ca96b7fdfb1399ed144ee67", + "etherscanUrl": "https://etherscan.io/address/0xc14feb4285c143ba4ca96b7fdfb1399ed144ee67", + "xHandle": "baraycan01", + "xUrl": "https://twitter.com/baraycan01", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_199860", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "arunaskz", + "displayName": "ARUNAS K -> base.eth", + "fid": 199860, + "followers": 594, + "pfpUrl": "https://i.imgur.com/aNmWPDt.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x90e0f8cd9bddefcf9b003e9288fa697fcaa53bc5", + "etherscanUrl": "https://etherscan.io/address/0x90e0f8cd9bddefcf9b003e9288fa697fcaa53bc5", + "xHandle": "mlietuvaite", + "xUrl": "https://twitter.com/mlietuvaite", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_480244", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "juansiur", + "displayName": "Juan Silva", + "fid": 480244, + "followers": 74, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f491a05d-7584-404b-1456-385c13def300/original", + "ensName": "juansiur.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4bc48ac6c3497f3ced6a7221320baf8f7110c788", + "etherscanUrl": "https://etherscan.io/address/0x4bc48ac6c3497f3ced6a7221320baf8f7110c788", + "xHandle": "juansiur3", + "xUrl": "https://twitter.com/juansiur3", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_398089", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "togan79", + "displayName": "Togan79.base.eth", + "fid": 398089, + "followers": 9, + "pfpUrl": "https://i.imgur.com/ZAEAojv.jpg", + "ensName": "togan79.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x445a2508aa82edde6c74062447f0ef6cd6155f04", + "etherscanUrl": "https://etherscan.io/address/0x445a2508aa82edde6c74062447f0ef6cd6155f04", + "xHandle": "togan79", + "xUrl": "https://twitter.com/togan79", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_279910", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptoourgurukul", + "displayName": "0xiam .base.eth", + "fid": 279910, + "followers": 1658, + "pfpUrl": "https://i.imgur.com/oofdKvZ.jpg", + "ensName": "rajsthan.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x83ddf6b7ab321a7fcf27e6fb1b6661890f5b30e3", + "etherscanUrl": "https://etherscan.io/address/0x83ddf6b7ab321a7fcf27e6fb1b6661890f5b30e3", + "xHandle": "mahendr38580607", + "xUrl": "https://twitter.com/mahendr38580607", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_489225", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "saratoga77", + "displayName": "Saratogasy", + "fid": 489225, + "followers": 210, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f691996a-2d0c-446b-fae9-6ce2f6c50800/original", + "ensName": "lyonvel.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xfd0df2f07dc2529828cd879cd6f4d0bdfdf55482", + "etherscanUrl": "https://etherscan.io/address/0xfd0df2f07dc2529828cd879cd6f4d0bdfdf55482", + "xHandle": "javunoly", + "xUrl": "https://twitter.com/javunoly", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_486842", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "pandayuv", + "displayName": "Panda_Yuv", + "fid": 486842, + "followers": 7, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/227b8602-1657-4749-bafd-8dca04d5ed00/rectcrop3", + "ensName": "kingyuv.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x793e446afff802e20bdb496a64250622be32df29", + "etherscanUrl": "https://etherscan.io/address/0x793e446afff802e20bdb496a64250622be32df29", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_796828", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "scrooge777", + "displayName": "Scrooge", + "fid": 796828, + "followers": 85, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3f46454-ec19-4fdf-b9c7-6d6d3f067c00/rectcrop3", + "ensName": "reminder149834957872394.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf5143d17c0f4ca942d90fa9b0b9a1db38bc1dcde", + "etherscanUrl": "https://etherscan.io/address/0xf5143d17c0f4ca942d90fa9b0b9a1db38bc1dcde", + "xHandle": "minderre13", + "xUrl": "https://twitter.com/minderre13", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_313803", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "agtegweint", + "displayName": "Victor Montoya", + "fid": 313803, + "followers": 1420, + "pfpUrl": "https://i.imgur.com/FyhAaCk.jpg", + "ensName": "mexicocripto.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9fc440a1185497a988443d5ca151d8e0127995b7", + "etherscanUrl": "https://etherscan.io/address/0x9fc440a1185497a988443d5ca151d8e0127995b7", + "xHandle": "emsepsalas9376", + "xUrl": "https://twitter.com/emsepsalas9376", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_468979", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "pappardelle", + "displayName": "Pappardelle.eth Angel investor", + "fid": 468979, + "followers": 2019, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6d6679a-566c-4265-765e-2960dc985200/original", + "ensName": "pappardelle.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5d69c42a3a481d0ccfd88cfa8a2a08e2bf456134", + "etherscanUrl": "https://etherscan.io/address/0x5d69c42a3a481d0ccfd88cfa8a2a08e2bf456134", + "xHandle": "anonimocommando", + "xUrl": "https://twitter.com/anonimocommando", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_197195", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "gruiny", + "displayName": "Beat", + "fid": 197195, + "followers": 2, + "pfpUrl": "https://i.imgur.com/Mt5er9X.jpg", + "ensName": "tax-man.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6fc798523182490bdaec088295e37b91d6e89f57", + "etherscanUrl": "https://etherscan.io/address/0x6fc798523182490bdaec088295e37b91d6e89f57", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_560676", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!560676", + "displayName": null, + "fid": 560676, + "followers": 0, + "pfpUrl": null, + "ensName": "paul2nice.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1900bc150238b511d6f7f6b96a4cdcfd6ce01a0e", + "etherscanUrl": "https://etherscan.io/address/0x1900bc150238b511d6f7f6b96a4cdcfd6ce01a0e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_707431", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "oliasova", + "displayName": "Olia Sova", + "fid": 707431, + "followers": 125, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2592cc60-2342-402e-5935-da5aeb5f2000/rectcrop3", + "ensName": "sovaolia.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc3a1914ba403c3edd581f009e553308930f69e40", + "etherscanUrl": "https://etherscan.io/address/0xc3a1914ba403c3edd581f009e553308930f69e40", + "xHandle": "gapristaj", + "xUrl": "https://twitter.com/gapristaj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_322738", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "kabo", + "displayName": "Kabo 🐹", + "fid": 322738, + "followers": 156, + "pfpUrl": "https://i.imgur.com/5sNGLQe.jpg", + "ensName": "kaboos.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xfaba8a43afc05234107a2207c8b827e3f73c07d4", + "etherscanUrl": "https://etherscan.io/address/0xfaba8a43afc05234107a2207c8b827e3f73c07d4", + "xHandle": "farshad07345959", + "xUrl": "https://twitter.com/farshad07345959", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_541606", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "pepemonaut.eth", + "displayName": "@Brettmonaut.base.eth", + "fid": 541606, + "followers": 38, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7dcbdad7-b113-4d5a-4662-9fc9b42b1a00/original", + "ensName": "pepemonaut.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7b161e59de61a520f361b2c5977ef4672a226675", + "etherscanUrl": "https://etherscan.io/address/0x7b161e59de61a520f361b2c5977ef4672a226675", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_192983", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "nhatkhanh.eth", + "displayName": "nhatkhanh.opflux", + "fid": 192983, + "followers": 624, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cfab7cd0-1af2-4648-2bdc-369ac278e600/original", + "ensName": "nhatkhanh.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x58c04034e9a7723f9b59ade81573a38550555a6f", + "etherscanUrl": "https://etherscan.io/address/0x58c04034e9a7723f9b59ade81573a38550555a6f", + "xHandle": "nhatkhanhc1k", + "xUrl": "https://twitter.com/nhatkhanhc1k", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_22075", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!22075", + "displayName": "ERC-721", + "fid": 22075, + "followers": 0, + "pfpUrl": "https://i.imgur.com/hrIrPgi.jpg", + "ensName": "chos1n.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xeb6e5dcf8e854c78d2f1c64db0ca95ff0bb86068", + "etherscanUrl": "https://etherscan.io/address/0xeb6e5dcf8e854c78d2f1c64db0ca95ff0bb86068", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_189693", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "tainiksatoshi", + "displayName": "Tainiksatoshi", + "fid": 189693, + "followers": 1203, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78686650-27f3-43ac-b3e9-291fc0a64300/rectcrop3", + "ensName": "tainiksatoshi.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9834f7b207b7058cef68214b8421394febee1fc1", + "etherscanUrl": "https://etherscan.io/address/0x9834f7b207b7058cef68214b8421394febee1fc1", + "xHandle": "ashtajts", + "xUrl": "https://twitter.com/ashtajts", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_505712", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "degen1717", + "displayName": "Balenciaga", + "fid": 505712, + "followers": 82, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3116aec5-c485-44f2-54d2-c0ddeaa28300/rectcrop3", + "ensName": "levandovski9.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x828a6eb1a093ebcb4e2f62425fca30e7e915ab72", + "etherscanUrl": "https://etherscan.io/address/0x828a6eb1a093ebcb4e2f62425fca30e7e915ab72", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246679", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "anon0.eth", + "displayName": "0xanon", + "fid": 246679, + "followers": 356, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4807d22e-aece-4e3c-e508-05b443e4e300/rectcrop3", + "ensName": "anon0.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x971336868c2c1dab62789be14dbddceecb8182e2", + "etherscanUrl": "https://etherscan.io/address/0x971336868c2c1dab62789be14dbddceecb8182e2", + "xHandle": "anon0xy", + "xUrl": "https://twitter.com/anon0xy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_343088", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "dynojonky", + "displayName": "Dyno| base.eth", + "fid": 343088, + "followers": 83, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/700cdcb5-3987-476a-0cf7-0bd8f4ecf000/original", + "ensName": "dynojonky.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xbd9bff70fb73033a290685951a92b52a4256ff82", + "etherscanUrl": "https://etherscan.io/address/0xbd9bff70fb73033a290685951a92b52a4256ff82", + "xHandle": "dyno451472", + "xUrl": "https://twitter.com/dyno451472", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_247839", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "joshi-sun", + "displayName": "joshi-sun🎩", + "fid": 247839, + "followers": 1193, + "pfpUrl": "https://i.imgur.com/xnX5qN7.jpg", + "ensName": "web3jk.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1f3edd58939efb708553fd2fb274ae73d72b210b", + "etherscanUrl": "https://etherscan.io/address/0x1f3edd58939efb708553fd2fb274ae73d72b210b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_260434", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptolarry", + "displayName": "cryptonft.base.eth", + "fid": 260434, + "followers": 132, + "pfpUrl": "https://i.imgur.com/TYiZzi1.jpg", + "ensName": "cryptomiha.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xaf900c14b79b799c8ea86ed6948e12423eb6701a", + "etherscanUrl": "https://etherscan.io/address/0xaf900c14b79b799c8ea86ed6948e12423eb6701a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_383254", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptoterapist", + "displayName": "Physio", + "fid": 383254, + "followers": 222, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4369eae6-0433-40d7-3a9f-2bb4d2d1ec00/original", + "ensName": "0.did9933.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0fee3b9912b1fa90079a3a987fd1d3d0f168e671", + "etherscanUrl": "https://etherscan.io/address/0x0fee3b9912b1fa90079a3a987fd1d3d0f168e671", + "xHandle": "cryptoterapist", + "xUrl": "https://twitter.com/cryptoterapist", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_766864", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "funassy", + "displayName": "Funassy", + "fid": 766864, + "followers": 11, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/699d4ad8-4d7a-4dd6-0508-0f1c20d33900/rectcrop3", + "ensName": "sundia.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9c20871bdae296955ac27ce6307313172ca7de56", + "etherscanUrl": "https://etherscan.io/address/0x9c20871bdae296955ac27ce6307313172ca7de56", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_543836", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "pthefirst", + "displayName": "Pthefirst, \"base.eth\"", + "fid": 543836, + "followers": 6, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09a5436c-4662-4fb5-a4a1-03ded81eee00/rectcrop3", + "ensName": "pthefirst.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x482f0547bd692b9d669ad32fa9c8d93d124bdabc", + "etherscanUrl": "https://etherscan.io/address/0x482f0547bd692b9d669ad32fa9c8d93d124bdabc", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_557135", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "mkhrana", + "displayName": "KAMRUL HASAN base.eth", + "fid": 557135, + "followers": 12, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/388589ee-6e72-4335-b2be-6152352c8800/rectcrop3", + "ensName": "mkhrana.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x54e28b355692c11373d9b4dbf40cee5769791959", + "etherscanUrl": "https://etherscan.io/address/0x54e28b355692c11373d9b4dbf40cee5769791959", + "xHandle": "mkhrana", + "xUrl": "https://twitter.com/mkhrana", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_464485", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "hululei", + "displayName": "hululei", + "fid": 464485, + "followers": 40, + "pfpUrl": "https://i.imgur.com/QvklFU2.jpg", + "ensName": "bybtc.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb7caf50b0569f63d7c0a9ac98831522d35a0fcd9", + "etherscanUrl": "https://etherscan.io/address/0xb7caf50b0569f63d7c0a9ac98831522d35a0fcd9", + "xHandle": "wzlaohu1987", + "xUrl": "https://twitter.com/wzlaohu1987", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_760647", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "0xdefitheo", + "displayName": "Theo", + "fid": 760647, + "followers": 81, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/293c8ce5-ed26-42e1-9519-fd9fc10c8800/rectcrop3", + "ensName": "highcryptoguy.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x75a1cfa6d871031cdefdcb30d43b5391e972b5e6", + "etherscanUrl": "https://etherscan.io/address/0x75a1cfa6d871031cdefdcb30d43b5391e972b5e6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_704530", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptwild", + "displayName": "Angel", + "fid": 704530, + "followers": 15, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd7ee3a6-cd00-438e-542e-f8efa389f200/rectcrop3", + "ensName": "cryptwild.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb43a0909f2f8ee75a992db40d12e3ca9f78492d5", + "etherscanUrl": "https://etherscan.io/address/0xb43a0909f2f8ee75a992db40d12e3ca9f78492d5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_472897", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "irsatte", + "displayName": "Hasbulla", + "fid": 472897, + "followers": 200, + "pfpUrl": "https://i.imgur.com/geHHJYg.jpg", + "ensName": "hillytu.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x334019f6d6b2ea95458347d2dd65f3241116a6d5", + "etherscanUrl": "https://etherscan.io/address/0x334019f6d6b2ea95458347d2dd65f3241116a6d5", + "xHandle": "dragonflou", + "xUrl": "https://twitter.com/dragonflou", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_495968", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "anuch.eth", + "displayName": "Anush", + "fid": 495968, + "followers": 320, + "pfpUrl": "https://p765cpbvm0.execute-api.eu-central-1.amazonaws.com/p1/renderer/Minteeble/chain/base/collection/6e0b39a5-8569-4e67-b330-d352593c9629/image/3676.png", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x72b89bcd72a00644feb9623c86e6f12179620c69", + "etherscanUrl": "https://etherscan.io/address/0x72b89bcd72a00644feb9623c86e6f12179620c69", + "xHandle": "anuchvenu", + "xUrl": "https://twitter.com/anuchvenu", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21668", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!21668", + "displayName": null, + "fid": 21668, + "followers": 1, + "pfpUrl": null, + "ensName": "ohanahana.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdcf4feb7114372b14bc37be098ed14b1b8536c45", + "etherscanUrl": "https://etherscan.io/address/0xdcf4feb7114372b14bc37be098ed14b1b8536c45", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_721495", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "0xhaku", + "displayName": "haku152", + "fid": 721495, + "followers": 8, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf34ef61-b40e-45ab-b962-5db223c14d00/rectcrop3", + "ensName": "0xhaku11.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x94ea3c842c770cd1c1750cb6ca3e148f3cd0b7a9", + "etherscanUrl": "https://etherscan.io/address/0x94ea3c842c770cd1c1750cb6ca3e148f3cd0b7a9", + "xHandle": "0xcrypto0202", + "xUrl": "https://twitter.com/0xcrypto0202", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_317347", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "supermantas", + "displayName": "Supermantas", + "fid": 317347, + "followers": 308, + "pfpUrl": "https://i.imgur.com/fSB6Wh4.jpg", + "ensName": "supermantas.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2d05bfaa80ee097a444943dea60dfc91f6b97e85", + "etherscanUrl": "https://etherscan.io/address/0x2d05bfaa80ee097a444943dea60dfc91f6b97e85", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_356707", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "kvnchtw", + "displayName": "kvnchtw", + "fid": 356707, + "followers": 103, + "pfpUrl": "https://i.imgur.com/rIVImQW.jpg", + "ensName": "kvnchtw.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2ddc2a7747570f38122cd74c3313b40d5eb548e7", + "etherscanUrl": "https://etherscan.io/address/0x2ddc2a7747570f38122cd74c3313b40d5eb548e7", + "xHandle": "kevin7306", + "xUrl": "https://twitter.com/kevin7306", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_870064", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "desironna", + "displayName": "Desironna", + "fid": 870064, + "followers": 9, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/579aca34-f893-4514-ea44-a34e7a143300/rectcrop3", + "ensName": "desironna.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xec0ec463e15cec8c1230106b0119c4b7a5ad573d", + "etherscanUrl": "https://etherscan.io/address/0xec0ec463e15cec8c1230106b0119c4b7a5ad573d", + "xHandle": "qoqnush", + "xUrl": "https://twitter.com/qoqnush", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_250563", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "dahyun", + "displayName": "dahyunee.eth 🎩", + "fid": 250563, + "followers": 240, + "pfpUrl": "https://i.imgur.com/uWEDo3P.jpg", + "ensName": "dahyunee.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8bd3a15abf9e9d73871a84c52355c05a9ace48cd", + "etherscanUrl": "https://etherscan.io/address/0x8bd3a15abf9e9d73871a84c52355c05a9ace48cd", + "xHandle": "0xminyun", + "xUrl": "https://twitter.com/0xminyun", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_409234", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "crypto4u", + "displayName": "Kill tony", + "fid": 409234, + "followers": 16, + "pfpUrl": "https://i.imgur.com/sIHGas2.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xe67a9c5e6e3bf10da79a204a70948eec4419ba12", + "etherscanUrl": "https://etherscan.io/address/0xe67a9c5e6e3bf10da79a204a70948eec4419ba12", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23104", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!23104", + "displayName": "cinn", + "fid": 23104, + "followers": 1, + "pfpUrl": "https://imagedelivery.net/g4iQ0bIzMZrjFMgjAnSGfw/d0c45589-7612-4240-dea5-f7e113309400/public", + "ensName": "yellgon.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdca81888531bd3a3219d978538bd951efb50dce0", + "etherscanUrl": "https://etherscan.io/address/0xdca81888531bd3a3219d978538bd951efb50dce0", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_246260", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "a9hec", + "displayName": "A9hec", + "fid": 246260, + "followers": 91, + "pfpUrl": "https://i.imgur.com/bJ9tFs3.jpg", + "ensName": "baranscrypto.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe28c5298435c01f2884e963d3425885aa90f76ff", + "etherscanUrl": "https://etherscan.io/address/0xe28c5298435c01f2884e963d3425885aa90f76ff", + "xHandle": "adhdyak", + "xUrl": "https://twitter.com/adhdyak", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_361088", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!361088", + "displayName": null, + "fid": 361088, + "followers": 0, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xa39a99b4b45949af9d91238cde5252ec7b7f8e2a", + "etherscanUrl": "https://etherscan.io/address/0xa39a99b4b45949af9d91238cde5252ec7b7f8e2a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492587", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "shriom.eth", + "displayName": "Swati", + "fid": 492587, + "followers": 361, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b1b9a52-6ad5-41bc-b236-ed4bc7b9f700/rectcrop3", + "ensName": "shriom.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0691f397a5f7d18a3be905d48b657cb0dd1cd762", + "etherscanUrl": "https://etherscan.io/address/0x0691f397a5f7d18a3be905d48b657cb0dd1cd762", + "xHandle": "swati15041992", + "xUrl": "https://twitter.com/swati15041992", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_664458", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "senseibraj", + "displayName": "SenseiBraj", + "fid": 664458, + "followers": 35, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b633bc1-df8f-49a3-28cd-9dca32af9200/rectcrop3", + "ensName": "senseibraj.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdef43dd03e9fec5b40fcfabeb788e6b02edc3926", + "etherscanUrl": "https://etherscan.io/address/0xdef43dd03e9fec5b40fcfabeb788e6b02edc3926", + "xHandle": "senseibraj", + "xUrl": "https://twitter.com/senseibraj", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_897405", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "poou", + "displayName": "Mr Poou", + "fid": 897405, + "followers": 69, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66a3c06d-bba0-4409-faf4-af8871e46100/rectcrop3", + "ensName": "parsa1.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4dc133467afd7cdb76f115c0e74d0dce5348d6ed", + "etherscanUrl": "https://etherscan.io/address/0x4dc133467afd7cdb76f115c0e74d0dce5348d6ed", + "xHandle": "mr_pooou", + "xUrl": "https://twitter.com/mr_pooou", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_581180", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "deedee07", + "displayName": "Dee Dee", + "fid": 581180, + "followers": 66, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/126b1eae-021f-4b87-7bed-b0bd1ff29700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5c2a79f6085740d0b000735ef20a739d5a1e55be", + "etherscanUrl": "https://etherscan.io/address/0x5c2a79f6085740d0b000735ef20a739d5a1e55be", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_287505", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "nayaro.eth", + "displayName": "nayaro", + "fid": 287505, + "followers": 1297, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/29b83d08-ba2d-4d06-90d6-3ab595446000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x286480cda4291d97816c1193a3478cf9e4e7abd1", + "etherscanUrl": "https://etherscan.io/address/0x286480cda4291d97816c1193a3478cf9e4e7abd1", + "xHandle": "em_nayaro", + "xUrl": "https://twitter.com/em_nayaro", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_325598", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "gentlexchange", + "displayName": "Gentle", + "fid": 325598, + "followers": 1311, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e37aa3be-7eed-4505-9208-60b76a81d900/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xfea73a4f8abbf1d5141e254bd64ccf50e6af1f27", + "etherscanUrl": "https://etherscan.io/address/0xfea73a4f8abbf1d5141e254bd64ccf50e6af1f27", + "xHandle": "thatteddguy", + "xUrl": "https://twitter.com/thatteddguy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_580544", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!580544", + "displayName": "KriptoXN", + "fid": 580544, + "followers": 1, + "pfpUrl": null, + "ensName": "kriptoxn.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x1de14ee37f1cf16414c72656607e1a703d7eb46d", + "etherscanUrl": "https://etherscan.io/address/0x1de14ee37f1cf16414c72656607e1a703d7eb46d", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_352827", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "kampinho", + "displayName": "Kampinho", + "fid": 352827, + "followers": 44, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62372f70-35fb-4961-a262-4091519d5a00/original", + "ensName": "kampinho.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe7a77b7060a3972c230de328d3711b431ce4f4d1", + "etherscanUrl": "https://etherscan.io/address/0xe7a77b7060a3972c230de328d3711b431ce4f4d1", + "xHandle": "dolcewitamtk", + "xUrl": "https://twitter.com/dolcewitamtk", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_551005", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "paulmurphy63", + "displayName": "Paul Murphy", + "fid": 551005, + "followers": 0, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa3d149c-ba21-41fe-c280-ebdd0b98bc00/rectcrop3", + "ensName": "paulmurphy63.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x81e86e1731c2fa05433e7d1452e8afa4cd4e6220", + "etherscanUrl": "https://etherscan.io/address/0x81e86e1731c2fa05433e7d1452e8afa4cd4e6220", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492178", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "woronek", + "displayName": "Michal", + "fid": 492178, + "followers": 196, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2301714c-c00d-4c08-7438-be46ab870700/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x12f9ccc48f08d5c62035a7e277b270ccbd25e5f3", + "etherscanUrl": "https://etherscan.io/address/0x12f9ccc48f08d5c62035a7e277b270ccbd25e5f3", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_529991", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "canphone", + "displayName": "Canphone", + "fid": 529991, + "followers": 321, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b42dd5ce-0c2c-4cb9-6dfb-17d0eafccd00/rectcrop3", + "ensName": "thaxiao.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb066e31be2015fbc93d4fbba01ad204dbee9a910", + "etherscanUrl": "https://etherscan.io/address/0xb066e31be2015fbc93d4fbba01ad204dbee9a910", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_318394", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "ashst", + "displayName": "ashwin", + "fid": 318394, + "followers": 9, + "pfpUrl": "https://i.imgur.com/hz3yicx.jpg", + "ensName": "cryptoashwin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x778d8f0e5feb6b36d4c37f9a6cff527b82f0307d", + "etherscanUrl": "https://etherscan.io/address/0x778d8f0e5feb6b36d4c37f9a6cff527b82f0307d", + "xHandle": "ashwinshib", + "xUrl": "https://twitter.com/ashwinshib", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_235404", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "eolnmusk", + "displayName": "Blamer", + "fid": 235404, + "followers": 923, + "pfpUrl": "https://i.imgur.com/kBpKJnr.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x561ba132fb8fefc7671f293f5865ec73be57bff1", + "etherscanUrl": "https://etherscan.io/address/0x561ba132fb8fefc7671f293f5865ec73be57bff1", + "xHandle": "blamertzy", + "xUrl": "https://twitter.com/blamertzy", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_504636", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptofiasco", + "displayName": "Fiasco VB", + "fid": 504636, + "followers": 376, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bfa598d5-547b-4e7f-4cea-0ac6c0c2b300/rectcrop3", + "ensName": "cryptofiasco.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x098746ed11f59249c51548c9dad0d96f64f53ffb", + "etherscanUrl": "https://etherscan.io/address/0x098746ed11f59249c51548c9dad0d96f64f53ffb", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_345107", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "happythoughts", + "displayName": "Yanbase.eth ⚡️🔵", + "fid": 345107, + "followers": 603, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/073b8a84-411f-4e9f-9794-ae5299c0a100/original", + "ensName": "cryptocoinwave.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb89218a4a5eb6e569e0d2b95ad16231bfda72689", + "etherscanUrl": "https://etherscan.io/address/0xb89218a4a5eb6e569e0d2b95ad16231bfda72689", + "xHandle": "cryptocoinwave", + "xUrl": "https://twitter.com/cryptocoinwave", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_265234", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "glimz", + "displayName": "Glimz.base.eth", + "fid": 265234, + "followers": 637, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db0ddb26-c776-416e-c9cf-0a02466cca00/rectcrop3", + "ensName": "glimz.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6f0ff963de8dce82bca04aa33fae9e5d027421f2", + "etherscanUrl": "https://etherscan.io/address/0x6f0ff963de8dce82bca04aa33fae9e5d027421f2", + "xHandle": "glimzalex", + "xUrl": "https://twitter.com/glimzalex", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_16645", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "johnsmit", + "displayName": "John Smit", + "fid": 16645, + "followers": 1450, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1998cb-ddd2-4b6e-7c00-312f73e0c700/original", + "ensName": "johnsmit.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xb2f3e21ed6f81207bdb616a779034332fed3fec9", + "etherscanUrl": "https://etherscan.io/address/0xb2f3e21ed6f81207bdb616a779034332fed3fec9", + "xHandle": "johnsmit00001", + "xUrl": "https://twitter.com/johnsmit00001", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_557549", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "gavin1314", + "displayName": "Gavin", + "fid": 557549, + "followers": 116, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bd89fb8-edaf-4e45-36fa-54867cb69300/rectcrop3", + "ensName": "cosmo1314.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x9f9ba1f30021f266f138f053fa78078df0746df3", + "etherscanUrl": "https://etherscan.io/address/0x9f9ba1f30021f266f138f053fa78078df0746df3", + "xHandle": "gavinlove1314", + "xUrl": "https://twitter.com/gavinlove1314", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_726351", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "kopciuszek", + "displayName": "Przemek", + "fid": 726351, + "followers": 38, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b5c8d7-dca1-4e53-0399-d23459e1ea00/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x5a747ab7b5c874e194e959838584ccb2623d9c2e", + "etherscanUrl": "https://etherscan.io/address/0x5a747ab7b5c874e194e959838584ccb2623d9c2e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_502105", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "mythago", + "displayName": "Sergejs Bozoks", + "fid": 502105, + "followers": 5, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c49ff42-dfc1-42b4-d250-6e889d3f2e00/rectcrop3", + "ensName": "mythago.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x03d2e4ed24035ac270aa6a923b71de493facdafe", + "etherscanUrl": "https://etherscan.io/address/0x03d2e4ed24035ac270aa6a923b71de493facdafe", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_763026", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "sharkins94", + "displayName": "Przemek.base.eth", + "fid": 763026, + "followers": 51, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b79e1227-7046-42d2-92c3-d4b3270b0c00/original", + "ensName": "sharkins.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4e4a0cd4def8a9781d24ef0db6f7b946e32477e4", + "etherscanUrl": "https://etherscan.io/address/0x4e4a0cd4def8a9781d24ef0db6f7b946e32477e4", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_492194", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "intoyou", + "displayName": "Into", + "fid": 492194, + "followers": 27, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab077601-353d-4841-4f05-cf60bfc5d300/rectcrop3", + "ensName": "intoyou97.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xa23b60d366064212b23a4b2d19aac35b3abf125c", + "etherscanUrl": "https://etherscan.io/address/0xa23b60d366064212b23a4b2d19aac35b3abf125c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_196825", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "christian1", + "displayName": "christian", + "fid": 196825, + "followers": 2, + "pfpUrl": null, + "ensName": "christian99.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xf9496be6e73bd01ab40af220d3ea23503ea6c6c9", + "etherscanUrl": "https://etherscan.io/address/0xf9496be6e73bd01ab40af220d3ea23503ea6c6c9", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_788579", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "kiddykidkiddy", + "displayName": "Kid", + "fid": 788579, + "followers": 13, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/544f8dc0-ef40-4ded-3f26-0ddcc9822000/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6ae1f1e7ac42808cd19377f6c8d1566899c7c017", + "etherscanUrl": "https://etherscan.io/address/0x6ae1f1e7ac42808cd19377f6c8d1566899c7c017", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_389052", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "!389052", + "displayName": null, + "fid": 389052, + "followers": 0, + "pfpUrl": null, + "ensName": "0xarshia78.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x97e0a1f28c9fff064b2df8abbf6a5d4db374a823", + "etherscanUrl": "https://etherscan.io/address/0x97e0a1f28c9fff064b2df8abbf6a5d4db374a823", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_549134", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "cryptophuc", + "displayName": "Phuc", + "fid": 549134, + "followers": 187, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d9df4e4-db4d-4f95-29d6-56afc7c8cc00/rectcrop3", + "ensName": "phuccoin.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4b83029dca8a8b962b11d906f45054a7898c41a1", + "etherscanUrl": "https://etherscan.io/address/0x4b83029dca8a8b962b11d906f45054a7898c41a1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_443948", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "nikolay22", + "displayName": "Nikolay22", + "fid": 443948, + "followers": 153, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd713925-9a8f-4f1a-c405-6ad9903de200/original", + "ensName": "nikolay22.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xacbe116b89e94dff2bd9fe1cdb3903808583a1e1", + "etherscanUrl": "https://etherscan.io/address/0xacbe116b89e94dff2bd9fe1cdb3903808583a1e1", + "xHandle": "ivnoffvasily", + "xUrl": "https://twitter.com/ivnoffvasily", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_774265", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "walterite", + "displayName": "walterwhite_81.base.eth", + "fid": 774265, + "followers": 3, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07a72769-0258-4960-6769-d2d1a53d6900/original", + "ensName": "itsover9k.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x2e26f6b308a91b9c1cd7cfead4bbef40bba42bf8", + "etherscanUrl": "https://etherscan.io/address/0x2e26f6b308a91b9c1cd7cfead4bbef40bba42bf8", + "xHandle": "_mr_ww", + "xUrl": "https://twitter.com/_mr_ww", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_542386", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "bata77", + "displayName": "Bata", + "fid": 542386, + "followers": 3, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bde52a95-bc21-4520-a3e1-05bd074e1600/rectcrop3", + "ensName": "bata77.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xdbfdfa124aae8476d2fb9a3514f704afd152930c", + "etherscanUrl": "https://etherscan.io/address/0xdbfdfa124aae8476d2fb9a3514f704afd152930c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_455571", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "darkpower", + "displayName": "Kara", + "fid": 455571, + "followers": 198, + "pfpUrl": "https://i.imgur.com/bYQWDp5.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xdb755f85b05ac72dff8f1186d54d108c90862b91", + "etherscanUrl": "https://etherscan.io/address/0xdb755f85b05ac72dff8f1186d54d108c90862b91", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_21114", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "vsck", + "displayName": "vsck", + "fid": 21114, + "followers": 4300, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bafd4982-6c81-4e09-dfeb-d16c8b51a900/original", + "ensName": "bugswe.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x0f17863f2d13fbe637215fd3cc1cef2d416422dc", + "etherscanUrl": "https://etherscan.io/address/0x0f17863f2d13fbe637215fd3cc1cef2d416422dc", + "xHandle": "cdeburner", + "xUrl": "https://twitter.com/cdeburner", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_416381", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "krapo103", + "displayName": "Mikel Krapo", + "fid": 416381, + "followers": 22, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1819915c-fddc-4e2d-5ceb-43b8dc0ae600/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x0ddc7e95a0959687623a5e91ae990ef4f54321d6", + "etherscanUrl": "https://etherscan.io/address/0x0ddc7e95a0959687623a5e91ae990ef4f54321d6", + "xHandle": "krapo710po", + "xUrl": "https://twitter.com/krapo710po", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1083249", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "iulebedev", + "displayName": "iulebedev.base.eth", + "fid": 1083249, + "followers": 2, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/166d62e5-ef04-4d3d-b10f-6fc964142500/original", + "ensName": "iulebedev.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4c84c1636b2d010730af425ffb5692a92e2e1167", + "etherscanUrl": "https://etherscan.io/address/0x4c84c1636b2d010730af425ffb5692a92e2e1167", + "xHandle": "iulebedev51", + "xUrl": "https://twitter.com/iulebedev51", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_1428097", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "coinv.base.eth", + "displayName": "bcrypto", + "fid": 1428097, + "followers": 16, + "pfpUrl": "https://res.cloudinary.com/base-app/image/upload/f_auto/v1761816290/1000006682.jpg.jpg", + "ensName": "btctoinr.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7381888e439b914c506270457b7d8d80cc62e3a2", + "etherscanUrl": "https://etherscan.io/address/0x7381888e439b914c506270457b7d8d80cc62e3a2", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_445509", + "balanceRaw": "265000000000000000000", + "balanceFormatted": "265", + "lastTransferAt": null, + "username": "maimun", + "displayName": "Maimun ", + "fid": 445509, + "followers": 31, + "pfpUrl": "https://i.imgur.com/Y8LwGMa.jpg", + "ensName": "maimun.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x8d34a38b6b737802570d14c2d3abacd3eabb0234", + "etherscanUrl": "https://etherscan.io/address/0x8d34a38b6b737802570d14c2d3abacd3eabb0234", + "xHandle": "chest_treasures", + "xUrl": "https://twitter.com/chest_treasures", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_254339", + "balanceRaw": "264792312577066422676", + "balanceFormatted": "264.792312577066422676", + "lastTransferAt": null, + "username": "shunchan", + "displayName": "Shunchan🎩🥏🍖🔵", + "fid": 254339, + "followers": 622, + "pfpUrl": "https://i.imgur.com/PRerC7u.jpg", + "ensName": "shunchan666.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x97f9eb37d7f3afe73ecb10baa699b82722742fe7", + "etherscanUrl": "https://etherscan.io/address/0x97f9eb37d7f3afe73ecb10baa699b82722742fe7", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x7ea74516e7d801cd5267e2b6b4f456b5bb75b267", + "balanceRaw": "264000000000000000000", + "balanceFormatted": "264", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x7ea74516e7d801cd5267e2b6b4f456b5bb75b267", + "etherscanUrl": "https://etherscan.io/address/0x7ea74516e7d801cd5267e2b6b4f456b5bb75b267", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3a5d48144b5da6574924d6488670a314fe3c7cf5", + "balanceRaw": "260698508358184243267", + "balanceFormatted": "260.698508358184243267", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "kaminarioyaji173.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3a5d48144b5da6574924d6488670a314fe3c7cf5", + "etherscanUrl": "https://etherscan.io/address/0x3a5d48144b5da6574924d6488670a314fe3c7cf5", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x898d0ae6187494a00a4f5934bba64d97fcb1a50e", + "balanceRaw": "260300953748391647462", + "balanceFormatted": "260.300953748391647462", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x898d0ae6187494a00a4f5934bba64d97fcb1a50e", + "etherscanUrl": "https://etherscan.io/address/0x898d0ae6187494a00a4f5934bba64d97fcb1a50e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x43a2a720cd0911690c248075f4a29a5e7716f758", + "balanceRaw": "259602954800626290095", + "balanceFormatted": "259.602954800626290095", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x43a2a720cd0911690c248075f4a29a5e7716f758", + "etherscanUrl": "https://etherscan.io/address/0x43a2a720cd0911690c248075f4a29a5e7716f758", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4a12c8250c9e8c5923f73a958d98ff589c7d64c8", + "balanceRaw": "259343935923704899356", + "balanceFormatted": "259.343935923704899356", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4a12c8250c9e8c5923f73a958d98ff589c7d64c8", + "etherscanUrl": "https://etherscan.io/address/0x4a12c8250c9e8c5923f73a958d98ff589c7d64c8", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_23815", + "balanceRaw": "258631245305162348698", + "balanceFormatted": "258.631245305162348698", + "lastTransferAt": null, + "username": "godog", + "displayName": "ungoo🎩", + "fid": 23815, + "followers": 346, + "pfpUrl": "https://i.imgur.com/Dcbnwyk.jpg", + "ensName": "ungoo.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xc472ad53a1760746acbc573626054226d482bfd8", + "etherscanUrl": "https://etherscan.io/address/0xc472ad53a1760746acbc573626054226d482bfd8", + "xHandle": "wn9oo", + "xUrl": "https://twitter.com/wn9oo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0xca82151688c91013b42efab54175f53de62d0fd6", + "balanceRaw": "255299316721287690409", + "balanceFormatted": "255.299316721287690409", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0xca82151688c91013b42efab54175f53de62d0fd6", + "etherscanUrl": "https://etherscan.io/address/0xca82151688c91013b42efab54175f53de62d0fd6", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_580820", + "balanceRaw": "250000000000000000000", + "balanceFormatted": "250", + "lastTransferAt": null, + "username": "samhan", + "displayName": "Sam", + "fid": 580820, + "followers": 6, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce51744b-f275-44ad-1840-966b9f552500/rectcrop3", + "ensName": "samuelhanna.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x168310a1111953d9e259f7c03f0e20f2bc27ed7a", + "etherscanUrl": "https://etherscan.io/address/0x168310a1111953d9e259f7c03f0e20f2bc27ed7a", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_407769", + "balanceRaw": "250000000000000000000", + "balanceFormatted": "250", + "lastTransferAt": null, + "username": "tanchik", + "displayName": "Tanchik🌸", + "fid": 407769, + "followers": 1016, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5337f2e2-19fa-4609-bde0-d70fced9e000/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x92cb926a465164c522198208fb963f0e63a89d15", + "etherscanUrl": "https://etherscan.io/address/0x92cb926a465164c522198208fb963f0e63a89d15", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_357795", + "balanceRaw": "246304874611410662236", + "balanceFormatted": "246.304874611410662236", + "lastTransferAt": null, + "username": "ljune", + "displayName": "Ljune🎩🔵🧀🍕🔮", + "fid": 357795, + "followers": 1269, + "pfpUrl": "https://i.imgur.com/j62pHW0.jpg", + "ensName": "ljune1111.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x6f6764ef9c1cb4ef9e9acc18110e95cea68f9e8c", + "etherscanUrl": "https://etherscan.io/address/0x6f6764ef9c1cb4ef9e9acc18110e95cea68f9e8c", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_13894", + "balanceRaw": "242718446601941747550", + "balanceFormatted": "242.71844660194174755", + "lastTransferAt": null, + "username": "0xdariush", + "displayName": "0xDariush | MAYC 6900", + "fid": 13894, + "followers": 1165, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a0548ef-57eb-4262-9498-616b4754c300/original", + "ensName": "0xdariush.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x3b57c45cc068c595ebebdfbfd759134d13aaa696", + "etherscanUrl": "https://etherscan.io/address/0x3b57c45cc068c595ebebdfbfd759134d13aaa696", + "xHandle": "0xdariush", + "xUrl": "https://twitter.com/0xdariush", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4b87e357b8c1d6d3f4863a4a878b23b18c7eaa13", + "balanceRaw": "241333060474299984501", + "balanceFormatted": "241.333060474299984501", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x4b87e357b8c1d6d3f4863a4a878b23b18c7eaa13", + "etherscanUrl": "https://etherscan.io/address/0x4b87e357b8c1d6d3f4863a4a878b23b18c7eaa13", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_569253", + "balanceRaw": "237205625977801604776", + "balanceFormatted": "237.205625977801604776", + "lastTransferAt": null, + "username": "aungye", + "displayName": "tanjiro", + "fid": 569253, + "followers": 105, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f55173d6-639e-49df-0cbf-25be3e859c00/rectcrop3", + "ensName": "mrsoe.eth", + "ensAvatarUrl": null, + "primaryAddress": "0xe3cd65e0a8917405b001a3f92a2b3161d6f491ac", + "etherscanUrl": "https://etherscan.io/address/0xe3cd65e0a8917405b001a3f92a2b3161d6f491ac", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_855537", + "balanceRaw": "231970425744006038495", + "balanceFormatted": "231.970425744006038495", + "lastTransferAt": null, + "username": "theclaree", + "displayName": "Claree.xo ⌐◨-◨", + "fid": 855537, + "followers": 23, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/350e9dce-c255-4f12-ceb5-f8599465a500/rectcrop3", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x395644998eeea72389effdfc54c84e0b218b7946", + "etherscanUrl": "https://etherscan.io/address/0x395644998eeea72389effdfc54c84e0b218b7946", + "xHandle": "clareexoo", + "xUrl": "https://twitter.com/clareexoo", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x34e44d22db10a68d37d2b7ca923b907e68176938", + "balanceRaw": "230609394064224249466", + "balanceFormatted": "230.609394064224249466", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "arckaizer.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x34e44d22db10a68d37d2b7ca923b907e68176938", + "etherscanUrl": "https://etherscan.io/address/0x34e44d22db10a68d37d2b7ca923b907e68176938", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_762813", + "balanceRaw": "230554391508999573429", + "balanceFormatted": "230.554391508999573429", + "lastTransferAt": null, + "username": "vastu", + "displayName": "Sid", + "fid": 762813, + "followers": 41, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4359910-c0d1-46cb-b724-a85122346900/rectcrop3", + "ensName": "reliancetata.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x5bd0b512b6da48d1e7a746a0c3d769051943817a", + "etherscanUrl": "https://etherscan.io/address/0x5bd0b512b6da48d1e7a746a0c3d769051943817a", + "xHandle": "fcowway", + "xUrl": "https://twitter.com/fcowway", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x4a4c0ba1a4cf50d6ca2854b85c688ee0ab034ea1", + "balanceRaw": "229195131604263470084", + "balanceFormatted": "229.195131604263470084", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": "fanuro33.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x4a4c0ba1a4cf50d6ca2854b85c688ee0ab034ea1", + "etherscanUrl": "https://etherscan.io/address/0x4a4c0ba1a4cf50d6ca2854b85c688ee0ab034ea1", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_267400", + "balanceRaw": "228306925742329091650", + "balanceFormatted": "228.30692574232909165", + "lastTransferAt": null, + "username": "zzaby", + "displayName": "Zzaby base.eth", + "fid": 267400, + "followers": 242, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b76b2261-da14-423c-48b3-3b35c8af7200/original", + "ensName": "zzaby.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x095e4502bd604dede52a55701ef0cd2531a2029d", + "etherscanUrl": "https://etherscan.io/address/0x095e4502bd604dede52a55701ef0cd2531a2029d", + "xHandle": "kbnoh6", + "xUrl": "https://twitter.com/kbnoh6", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_234692", + "balanceRaw": "226150283759822324569", + "balanceFormatted": "226.150283759822324569", + "lastTransferAt": null, + "username": "tamastorok.eth", + "displayName": "Thomas", + "fid": 234692, + "followers": 2149, + "pfpUrl": "https://i.imgur.com/cu46hik.jpg", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x42b6b0d25d502f07ee655ec5b90fe7f3555641cf", + "etherscanUrl": "https://etherscan.io/address/0x42b6b0d25d502f07ee655ec5b90fe7f3555641cf", + "xHandle": "torok_tomi", + "xUrl": "https://twitter.com/torok_tomi", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x423f64b0d10b0ce31f0db68e6a84b53046bd146e", + "balanceRaw": "222922657488617914926", + "balanceFormatted": "222.922657488617914926", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x423f64b0d10b0ce31f0db68e6a84b53046bd146e", + "etherscanUrl": "https://etherscan.io/address/0x423f64b0d10b0ce31f0db68e6a84b53046bd146e", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x6a242148e7c4a82fdc4d017a4aad4d7437fcb653", + "balanceRaw": "222739066565891054440", + "balanceFormatted": "222.73906656589105444", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x6a242148e7c4a82fdc4d017a4aad4d7437fcb653", + "etherscanUrl": "https://etherscan.io/address/0x6a242148e7c4a82fdc4d017a4aad4d7437fcb653", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "0x3bfc33f8b79960626dcd21f789c6fe9fc86ecb2b", + "balanceRaw": "222579165482523629706", + "balanceFormatted": "222.579165482523629706", + "lastTransferAt": null, + "username": null, + "displayName": null, + "fid": null, + "followers": null, + "pfpUrl": null, + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x3bfc33f8b79960626dcd21f789c6fe9fc86ecb2b", + "etherscanUrl": "https://etherscan.io/address/0x3bfc33f8b79960626dcd21f789c6fe9fc86ecb2b", + "xHandle": null, + "xUrl": null, + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_977052", + "balanceRaw": "220024847604830689559", + "balanceFormatted": "220.024847604830689559", + "lastTransferAt": null, + "username": "lookice76", + "displayName": "Lookice76 \"base.eth\"", + "fid": 977052, + "followers": 17, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4802260e-100a-493d-3db2-33f61239d900/rectcrop3", + "ensName": "lookice76.eth", + "ensAvatarUrl": null, + "primaryAddress": "0x7a5c6f369f6c445e9311ce76f333fe33af66985d", + "etherscanUrl": "https://etherscan.io/address/0x7a5c6f369f6c445e9311ce76f333fe33af66985d", + "xHandle": "daviderabbi87", + "xUrl": "https://twitter.com/daviderabbi87", + "githubHandle": null, + "githubUrl": null + }, + { + "address": "fc_fid_11508", + "balanceRaw": "220000000000000000000", + "balanceFormatted": "220", + "lastTransferAt": null, + "username": "latsko.eth", + "displayName": "Benjamin ⌐◨-◨", + "fid": 11508, + "followers": 3870, + "pfpUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4f33cb2-564e-42f7-fe1e-9fbc39168c00/original", + "ensName": null, + "ensAvatarUrl": null, + "primaryAddress": "0x085555e7f432fc1450643f58958f6587897bda27", + "etherscanUrl": "https://etherscan.io/address/0x085555e7f432fc1450643f58958f6587897bda27", + "xHandle": "benjaminlatsko", + "xUrl": "https://twitter.com/benjaminlatsko", + "githubHandle": null, + "githubUrl": null + } + ], + "tokenSymbol": null, + "tokenDecimals": 18, + "lastUpdatedTimestamp": "2025-11-17T21:44:20.058Z", + "lastFetchSettings": { + "source": "tokenHolders", + "network": "base", + "contractAddress": "0x48c6740bcf807d6c47c864faeea15ed4da3910ab", + "assetType": "token" + } +} diff --git a/src/config/nouns/initialSpaces/index.ts b/src/config/nouns/initialSpaces/index.ts new file mode 100644 index 000000000..74ff4e240 --- /dev/null +++ b/src/config/nouns/initialSpaces/index.ts @@ -0,0 +1,6 @@ +// Export the initial space creators from nouns config +export { default as createInitialProfileSpaceConfigForFid } from './initialProfileSpace'; +export { default as createInitialChannelSpaceConfig } from './initialChannelSpace'; +export { default as createInitialTokenSpaceConfigForAddress } from './initialTokenSpace'; +export { default as createInitalProposalSpaceConfigForProposalId } from './initialProposalSpace'; +export { default as INITIAL_HOMEBASE_CONFIG } from './initialHomebase'; diff --git a/src/config/nouns/initialSpaces/initialChannelSpace.ts b/src/config/nouns/initialSpaces/initialChannelSpace.ts new file mode 100644 index 000000000..3980bab28 --- /dev/null +++ b/src/config/nouns/initialSpaces/initialChannelSpace.ts @@ -0,0 +1,55 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { FilterType, FeedType } from "@neynar/nodejs-sdk/build/api"; +import { cloneDeep } from "lodash"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; + +const INITIAL_CHANNEL_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); +INITIAL_CHANNEL_SPACE_CONFIG.tabNames = ["Channel"]; + +const createInitialChannelSpaceConfig = ( + channelId: string, +): Omit => { + const config = cloneDeep(INITIAL_CHANNEL_SPACE_CONFIG); + + config.fidgetInstanceDatums = { + "feed:channel": { + config: { + editable: false, + settings: { + feedType: FeedType.Filter, + filterType: FilterType.ChannelId, + channel: channelId, + }, + data: {}, + }, + fidgetType: "feed", + id: "feed:channel", + }, + }; + + const layoutItems = [ + { + w: 6, + h: 8, + x: 0, + y: 0, + i: "feed:channel", + minW: 4, + maxW: 20, + minH: 6, + maxH: 12, + moved: false, + static: false, + }, + ]; + + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = layoutItems; + + config.tabNames = ["Channel"]; + + return config; +}; + +export default createInitialChannelSpaceConfig; diff --git a/src/constants/intialHomebase.ts b/src/config/nouns/initialSpaces/initialHomebase.ts similarity index 98% rename from src/constants/intialHomebase.ts rename to src/config/nouns/initialSpaces/initialHomebase.ts index c1f43c5a1..091cfcd61 100644 --- a/src/constants/intialHomebase.ts +++ b/src/config/nouns/initialSpaces/initialHomebase.ts @@ -1,5 +1,6 @@ import { SpaceConfig } from "@/app/(spaces)/Space"; import DEFAULT_THEME from "@/common/lib/theme/defaultTheme"; + const tutorialText = ` ### 🖌️ Click the paintbrush in the bottom-left corner to open Customization Mode @@ -98,8 +99,8 @@ const INITIAL_HOMEBASE_CONFIG: SpaceConfig = { fidgetInstanceDatums: { [onboardingFidgetID]: onboardingFidgetConfig, }, - isEditable: true, + isEditable: false, fidgetTrayContents: [], }; -export default INITIAL_HOMEBASE_CONFIG; +export default INITIAL_HOMEBASE_CONFIG; \ No newline at end of file diff --git a/src/constants/initialProfileSpace.ts b/src/config/nouns/initialSpaces/initialProfileSpace.ts similarity index 71% rename from src/constants/initialProfileSpace.ts rename to src/config/nouns/initialSpaces/initialProfileSpace.ts index d65752f92..2c172fa01 100644 --- a/src/constants/initialProfileSpace.ts +++ b/src/config/nouns/initialSpaces/initialProfileSpace.ts @@ -2,13 +2,13 @@ import { SpaceConfig } from "@/app/(spaces)/Space"; import { FeedType, FilterType } from "@neynar/nodejs-sdk/build/api"; import { cloneDeep } from "lodash"; import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; -import { INITIAL_SPACE_CONFIG_EMPTY } from "./initialSpaceConfig"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; // Set default tabNames for profile spaces const INITIAL_PROFILE_SPACE_CONFIG = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); INITIAL_PROFILE_SPACE_CONFIG.tabNames = ["Profile"]; -const createIntialProfileSpaceConfigForFid = ( +const createInitialProfileSpaceConfigForFid = ( fid: number, username?: string, ): Omit => { @@ -43,31 +43,31 @@ const createIntialProfileSpaceConfigForFid = ( }; const layoutItems = [ { - w: 6, - h: 8, - x: 0, - y: 0, - i: "feed:profile", - minW: 4, - maxW: 36, - minH: 6, - maxH: 36, - moved: false, - static: false, - }, -{ - w: 6, - h: 8, - x: 7, - y: 0, - i: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", - minW: 3, - maxW: 36, - minH: 3, - maxH: 36, - moved: false, - static: false, - } + w: 6, + h: 8, + x: 0, + y: 0, + i: "feed:profile", + minW: 4, + maxW: 36, + minH: 6, + maxH: 36, + moved: false, + static: false, + }, + { + w: 6, + h: 8, + x: 7, + y: 0, + i: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", + minW: 3, + maxW: 36, + minH: 3, + maxH: 36, + moved: false, + static: false, + } ]; // Set the layout configuration @@ -80,4 +80,4 @@ const createIntialProfileSpaceConfigForFid = ( return config; }; -export default createIntialProfileSpaceConfigForFid; +export default createInitialProfileSpaceConfigForFid; diff --git a/src/config/nouns/initialSpaces/initialProposalSpace.ts b/src/config/nouns/initialSpaces/initialProposalSpace.ts new file mode 100644 index 000000000..38a507aa5 --- /dev/null +++ b/src/config/nouns/initialSpaces/initialProposalSpace.ts @@ -0,0 +1,220 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { cloneDeep } from "lodash"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; +import { Address } from "viem"; + +export const createInitalProposalSpaceConfigForProposalId = ( + proposalId: string, + proposerAddress: Address +): Omit => { + const config = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); + + config.fidgetInstanceDatums = { + "iframe:2f0a1c7b-da0c-474c-ad30-59915d0096b1": { + config: { + editable: true, + data: {}, + settings: { + url: `https://www.nouns.camp/proposals/${proposalId}?tab=description`, + showOnMobile: true, + customMobileDisplayName: "Proposal", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "iframe", + id: "iframe:2f0a1c7b-da0c-474c-ad30-59915d0096b1", + }, + "iframe:10e88b10-b999-4ddc-a577-bd0eeb6bc76d": { + config: { + editable: true, + data: {}, + settings: { + url: "https://euphonious-kulfi-5e5a30.netlify.app/?id=" + proposalId, + showOnMobile: true, + customMobileDisplayName: "TLDR", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "iframe", + id: "iframe:10e88b10-b999-4ddc-a577-bd0eeb6bc76d", + }, + "iframe:1afc071b-ce6b-4527-9419-f2e057a9fb0a": { + config: { + editable: true, + data: {}, + settings: { + url: `https://www.nouns.camp/proposals/${proposalId}?tab=activity`, + showOnMobile: true, + customMobileDisplayName: "Activity", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "iframe", + id: "iframe:1afc071b-ce6b-4527-9419-f2e057a9fb0a", + }, + "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9": { + config: { + editable: true, + data: {}, + settings: { + background: "var(--user-theme-fidget-background)", + customMobileDisplayName: "Chat", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + roomName: `prop ${proposalId} chat`, + roomOwnerAddress: proposerAddress, + showOnMobile: true, + }, + }, + fidgetType: "Chat", + id: "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9", + }, + }; + + config.layoutDetails = { + layoutConfig: { + layout: [ + { + w: 4, + h: 10, + x: 0, + y: 0, + i: "iframe:2f0a1c7b-da0c-474c-ad30-59915d0096b1", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + { + w: 4, + h: 6, + x: 4, + y: 0, + i: "iframe:10e88b10-b999-4ddc-a577-bd0eeb6bc76d", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + }, + { + w: 4, + h: 10, + x: 8, + y: 0, + i: "iframe:1afc071b-ce6b-4527-9419-f2e057a9fb0a", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + { + w: 4, + h: 4, + x: 4, + y: 6, + i: "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "default-layout-fidget", // Assign a valid string value + }; + + config.theme = { + id: "Homebase-Tab 10-Theme", + name: "Homebase-Tab 10-Theme", + properties: { + background: "#ffffff", + backgroundHTML: ` + + + + Nouns DAO Animated Background + + + +`, + fidgetBackground: "#ffffff", + fidgetBorderColor: "#eeeeee", + fidgetBorderWidth: "1px", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + headingsFont: "Londrina Solid", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }; + + return config; +}; + +export default createInitalProposalSpaceConfigForProposalId; diff --git a/src/constants/initialSpaceConfig.ts b/src/config/nouns/initialSpaces/initialSpaceConfig.ts similarity index 100% rename from src/constants/initialSpaceConfig.ts rename to src/config/nouns/initialSpaces/initialSpaceConfig.ts diff --git a/src/config/nouns/initialSpaces/initialTokenSpace.ts b/src/config/nouns/initialSpaces/initialTokenSpace.ts new file mode 100644 index 000000000..eaa096789 --- /dev/null +++ b/src/config/nouns/initialSpaces/initialTokenSpace.ts @@ -0,0 +1,447 @@ +import { SpaceConfig } from "@/app/(spaces)/Space"; +import { cloneDeep } from "lodash"; +import { INITIAL_SPACE_CONFIG_EMPTY } from "../../initialSpaceConfig"; +import { getNetworkWithId } from "@/common/lib/utils/networks"; +import { EtherScanChainName } from "../../../constants/etherscanChainIds"; +import { getGeckoUrl } from "@/common/lib/utils/links"; +import { Address } from "viem"; +import { getLayoutConfig } from "@/common/utils/layoutFormatUtils"; + +export const createInitialTokenSpaceConfigForAddress = ( + address: string, + castHash: string | null, + casterFid: string | null, + symbol: string, + isClankerToken: boolean, + network: EtherScanChainName = "base", + ownerAddress?: Address, +): Omit => { + const config = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); + + config.fidgetInstanceDatums = { + "Swap:f9e0259a-4524-4b37-a261-9f3be26d4af1": { + config: { + data: {}, + editable: true, + settings: { + defaultBuyToken: address, + defaultSellToken: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + fromChain: getNetworkWithId(network), + toChain: getNetworkWithId(network), + size: 0.8, + }, + }, + fidgetType: "Swap", + id: "Swap:f9e0259a-4524-4b37-a261-9f3be26d4af1", + }, + ...(isClankerToken && + castHash && + casterFid && + castHash !== "clank.fun deployment" && { + "cast:9c63b80e-bd46-4c8e-9e4e-c6facc41bf71": { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + castHash: castHash, + casterFid: casterFid, + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + fidgetType: "cast", + id: "cast:9c63b80e-bd46-4c8e-9e4e-c6facc41bf71", + }, + }), + "feed:3de67742-56f2-402c-b751-7e769cdcfc56": { + config: { + data: {}, + editable: true, + settings: { + Xhandle: "thenounspace", + background: "var(--user-theme-fidget-background)", + feedType: "filter", + keyword: `$${symbol}`, + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + filterType: "keyword", + fontColor: "var(--user-theme-font-color)", + fontFamily: "var(--user-theme-font)", + }, + }, + fidgetType: "feed", + id: "feed:3de67742-56f2-402c-b751-7e769cdcfc56", + }, + "Market:733222fa-38f8-4343-9fa2-6646bb47dde0": { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + chain: getNetworkWithId(network), + token: address, + dataSource: "geckoterminal", + theme: "light", + size: 1, + }, + }, + + fidgetType: "Market", + id: "Market:733222fa-38f8-4343-9fa2-6646bb47dde0", + }, + "links:5b4c8b73-416d-4842-9dc5-12fc186d8f57": { + config: { + data: {}, + editable: true, + settings: { + DescriptionColor: "black", + HeaderColor: "black", + background: "rgba(255, 255, 255, 0.5)", + css: "", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + headingsFontFamily: "'__Inter_d65c78', '__Inter_Fallback_d65c78'", + itemBackground: "#e0eeff", + links: [ + ...(isClankerToken + ? [ + { + avatar: + "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAAM1BMVEX////q5PfUxe7o4fbMu+uPadTGs+jKueqJYNHEseiJYtKOZ9PJt+rUx+7MuuvPwOvm3vVnLuiEAAAAXUlEQVR4Ac3QAxaAQAAE0LXR/S+bXdNDWuOvSSGBMsYhCikVRG2MxejcFZoHcXoDQCF9gBiMURC1cfYzpDFSiEnKAHF6w4TuiMscs0bt+69JQyW8VyvkOVeH6p/QAF54BSckEkJ8AAAAAElFTkSuQmCC", + description: "", + text: "Clanker.world", + url: `https://www.clanker.world/clanker/${address}`, + }, + ] + : []), + { + avatar: + "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Ljc3Nzc3Nzg3Nzc3NzctKzc3Nzc3Nzc3Kzc3Nzc3Nzc3ODc3Nzc3Nys3N//AABEIABwAHAMBIgACEQEDEQH/xAAaAAABBQEAAAAAAAAAAAAAAAAHAgQFBggD/8QAKRAAAgEDAgQFBQAAAAAAAAAAAQIDAAURBDEGEiFREyJBccEHFKHR8P/EABgBAAIDAAAAAAAAAAAAAAAAAAIDAQQF/8QAHhEAAQQDAAMAAAAAAAAAAAAAAgABAxEEEiETQVH/2gAMAwEAAhEDEQA/ABZGperdZOBdRcYQ87SpI4ykMcfM2O5HxTbgPQQ6ozayXDNAwCIdgd8n4o4/TZJ5LNNrdVpmgaedhEHGHMa4AJ925j7YrekIYofI7WnuVMs/3zhi4WdpDPEJIY3MbTRMHVG6eV8E8jdR5WwagmBBxR6v3FMV5F5suj0/2ulaR4JplQBpzjDMD+O+3WgHqX8Od05geViMjY0stmBiNqtRfOrvYb3PaNWJYTlT0dDs47H9+lGvhLjKRLa7W9hNC4OI5D1gf+9NjvWeSxpxBrJ4VYRyFQRg4O4qvDliw6SNYoNr46vfGHE6xNJpdFJmRifFlXv6gfJoftJzMSaS7s5yxyaTScnLKcr9Ib+L/9k=", + description: "", + text: "GeckoTerminal", + url: getGeckoUrl(address as Address, network), + }, + { + avatar: + "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAEGElEQVR4AbWWA5AcXRSFX2ytbe/+DNccx6vYtm3bTjm2jUGyVg/CRmzb6dwXdO12LaYHt+oMu/s797zbQMYWy7JVMzIyYkaPHjstOTlln1SmKBCJpDfFYukNqUxe2D459cCwESOmnz17Nh62rY4sVXfu3LGZOHHiJIlUdsfG1v577Tr12PLUyMaOFUuk9ydPnjqNJEl7k8HQRZWVK1f2a9Y8/GmduvU5gLHC+zRr3uL50uXLB+P0BMFfvnzZqHvPXkegY8Fgvho2smW79ehx8vXr17bGRu4qkyl05oL5kkikV+7fv+9RYecyOQe3uKRyBTZhV+aa9+7d95CloXx179HrRKkzsWLF6t4wwd/NBSQmibW7d+9OP3DgSFuscRMmbIY5KDETK1asGFQCjgckPDzysSU63LNnT2f+9SMqKuZ98W2aNw9//ubNGwduo6lTp46rW6+BRSI+efJkMuJVTEzca/4pOmHSpKnc2sNwMEIgdvaObOs2bTPaJaccxFK0bFXQoKGN0QawRCLJPWBXQ3B5Dbe1cxC09smpaSdh50rFYq4sb9kqV4gB3ARUMBo9evQkoTF36dJ1Ix+SnJy6V4iB6OjYV2CgAUpLS99dTtTf/fwDPvv5B3729PT+CmtnEQNOzq7fVq9e3QnhgqteXmlwX1//L0eOHGkFLp2x4CLlDXfBU+YawMs9d+78idyfIrGk1AFMSEy6iXi1YMGigeYYcHRy+Y6n/8/8qAiyK0qCe3qpBhJENxCvli1b1s9UAz4+fp8XLFo0/A9cSVxvqSq6rkVSqVxnbQPDho2gt27dKvvzPeMyFaYirj9TEuRF1LZd8hFrG4Cunf58Vhbd8FIR1E2InwUTO9CAQYPmW9kAVxcIOgDAzC84SEtORAcOH5bBZdgiBmDC2UKtNrE0uJKgoyDyhxwcS8tE43jqRsfEPjfXwPLly6fjO2op8VeCqIcC/GNxOHy/m5+fXw3hGjhw8HIhBrp3774GGVFKLekGsMMYyJdaS07nNtTr9b4BgcEfStzXE0UM4tWuXbu6QNRnzp8/H1oe2GBgq8P6DgTQ89Lg0P3Ls3rGkXeRWTA8MCjko5u757d//v3//dix45aUFmd54N1wZwVwK1UReYkH5WtUWY9ljiAvUH0koHYbDNXVBNlLWXSdqAAM3V+/cPw4WQOZWziN8zqqsVpLLeFNdzmibmYS11xNhp7SauvAQeJVWnoexHzZOCh3zt/O0FJhRsM2wimiKSRDNFo6WU1Qs2FqVXCgN4KgHJzKO1fIeCIhhc9RiHYCOH8rHMrpA+w/L/POnVrI1FLnUu5woGWg1wLA7yC1DcpLlB+yVGWTZH2NlkmBjtbCwTNg6h/BHHwF2FeY/qdwtcuB/zapdXSnzEt3bJCR9QPwKOxl9MLyXAAAAABJRU5ErkJggg==", + description: "", + text: "BaseScan", + url: `https://basescan.org/address/${address}`, + }, + ], + title: `$${symbol} Links`, + viewMode: "list", + }, + }, + fidgetType: "links", + id: "links:5b4c8b73-416d-4842-9dc5-12fc186d8f57", + }, + "Chat:09528872-6659-460e-bb25-0c200cccb0ec": { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + roomName: address, + roomOwnerAddress: ownerAddress ?? "", + }, + }, + fidgetType: "Chat", + id: "Chat:09528872-6659-460e-bb25-0c200cccb0ec", + }, + }; + + const newLayout = isClankerToken && + castHash && + casterFid && + castHash !== "clank.fun deployment" + ? [ + { + h: 6, + i: "Chat:09528872-6659-460e-bb25-0c200cccb0ec", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 4, + y: 4, + }, + { + h: 8, + i: "feed:3de67742-56f2-402c-b751-7e769cdcfc56", + maxH: 36, + maxW: 36, + minH: 2, + minW: 4, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 8, + y: 0, + }, + { + h: 5, + i: "Swap:f9e0259a-4524-4b37-a261-9f3be26d4af1", + maxH: 36, + maxW: 36, + minH: 3, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 0, + y: 5, + }, + { + h: 5, + i: "Market:733222fa-38f8-4343-9fa2-6646bb47dde0", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 0, + y: 0, + }, + { + h: 2, + i: "links:5b4c8b73-416d-4842-9dc5-12fc186d8f57", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 8, + y: 8, + }, + { + h: 4, + i: "cast:9c63b80e-bd46-4c8e-9e4e-c6facc41bf71", + maxH: 4, + maxW: 12, + minH: 1, + minW: 3, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 4, + y: 0, + }, + ] + : [ + { + h: 8, + i: "Chat:09528872-6659-460e-bb25-0c200cccb0ec", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 4, + y: 0, + }, + { + h: 2, + i: "links:5b4c8b73-416d-4842-9dc5-12fc186d8f57", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 4, + y: 8, + }, + { + h: 10, + i: "feed:3de67742-56f2-402c-b751-7e769cdcfc56", + maxH: 36, + maxW: 36, + minH: 2, + minW: 4, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 8, + y: 0, + }, + { + h: 5, + i: "Market:733222fa-38f8-4343-9fa2-6646bb47dde0", + maxH: 36, + maxW: 36, + minH: 2, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 0, + y: 0, + }, + { + h: 5, + i: "Swap:f9e0259a-4524-4b37-a261-9f3be26d4af1", + maxH: 36, + maxW: 36, + minH: 3, + minW: 2, + moved: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + static: false, + w: 4, + x: 0, + y: 5, + }, + ]; + + // Set the layout configuration + const layoutConfig = getLayoutConfig(config.layoutDetails); + layoutConfig.layout = newLayout; + + config.theme = { + id: "default", + name: "Default", + properties: { + background: "#ffffff", + backgroundHTML: ` + + + + + + Aurora Borealis (Light Theme) + + + +
+
+ + + `, + fidgetBackground: "#ffffffb0", // equivalent to rgba(255, 255, 255, 0.69) + fidgetBorderColor: "#eeeeee", // equivalent to rgba(238, 238, 238, 1) + fidgetBorderWidth: "0", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }; + + return config; +}; + +export default createInitialTokenSpaceConfigForAddress; \ No newline at end of file diff --git a/src/config/nouns/nouns.assets.ts b/src/config/nouns/nouns.assets.ts new file mode 100644 index 000000000..d402cb9ee --- /dev/null +++ b/src/config/nouns/nouns.assets.ts @@ -0,0 +1,15 @@ +import noggles from './assets/noggles.svg'; +import logo from './assets/logo.svg'; +import og from './assets/og.svg'; +import splash from './assets/splash.svg'; + +export const nounsAssets = { + logos: { + main: logo, + icon: noggles, + favicon: "/images/favicon.ico", + appleTouch: "/images/apple-touch-icon.png", + og: og, + splash: splash, + }, +}; diff --git a/src/config/nouns/nouns.brand.ts b/src/config/nouns/nouns.brand.ts new file mode 100644 index 000000000..c4e7aaaac --- /dev/null +++ b/src/config/nouns/nouns.brand.ts @@ -0,0 +1,7 @@ +export const nounsBrand = { + name: "Nouns", + displayName: "Nouns", + tagline: "A space for Nouns", + description: "The social hub for Nouns", + miniAppTags: ["nouns", "client", "customizable", "social", "link"], +}; diff --git a/src/config/nouns/nouns.community.ts b/src/config/nouns/nouns.community.ts new file mode 100644 index 000000000..cf5e43664 --- /dev/null +++ b/src/config/nouns/nouns.community.ts @@ -0,0 +1,51 @@ +import { Address } from "viem"; +import type { + CommunityConfig, + CommunityErc20Token, + CommunityNftToken, +} from "../systemConfig"; + +export const nounsCommunity = { + type: 'nouns', + urls: { + website: 'https://nouns.com', + discord: 'https://discord.gg/nouns', + twitter: 'https://twitter.com/nounsdao', + github: 'https://github.com/nounsDAO', + forum: 'https://discourse.nouns.wtf', + }, + social: { + farcaster: 'nouns', + discord: 'nouns', + twitter: 'nounsdao', + }, + governance: { + proposals: 'https://nouns.wtf/vote', + delegates: 'https://nouns.wtf/delegates', + treasury: 'https://nouns.wtf/treasury', + }, + tokens: { + erc20Tokens: [ + { + address: '0x48C6740BcF807d6C47C864FaEEA15Ed4dA3910Ab', + symbol: '$SPACE', + decimals: 18, + network: 'base', + }, + ] satisfies CommunityErc20Token[], + nftTokens: [ + { + address: '0x9C8fF314C9Bc7F6e59A9d9225Fb22946427eDC03', + symbol: 'Nouns', + type: 'erc721', + network: 'eth', + }, + ] satisfies CommunityNftToken[], + }, + contracts: { + nouns: '0x9c8ff314c9bc7f6e59a9d9225fb22946427edc03' as Address, + auctionHouse: '0x830bd73e4184cef73443c15111a1df14e495c706' as Address, + space: '0x48C6740BcF807d6C47C864FaEEA15Ed4dA3910Ab' as Address, + nogs: '0xD094D5D45c06c1581f5f429462eE7cCe72215616' as Address, + }, +} satisfies CommunityConfig; diff --git a/src/config/nouns/nouns.explore.ts b/src/config/nouns/nouns.explore.ts new file mode 100644 index 000000000..54be18d71 --- /dev/null +++ b/src/config/nouns/nouns.explore.ts @@ -0,0 +1,37 @@ +import { createExplorePageConfig } from "../createExplorePageConfig"; +import { nounsCommunity } from "./nouns.community"; +import nounsChannelTab from "./initialSpaces/exploreTabs/channel.json"; +import spaceHoldersTab from "./initialSpaces/exploreTabs/spaceHolders.json"; +import nounsNftHoldersTab from "./initialSpaces/exploreTabs/nounsNFTholders.json"; +import { getDirectoryDataFromTabJson } from "../utils/exploreTabDirectoryData"; + +const nounsTokens = [ + ...(nounsCommunity.tokens?.erc20Tokens ?? []).map(({ address, symbol, network }) => ({ + address, + symbol, + network, + assetType: "token" as const, + })), + ...(nounsCommunity.tokens?.nftTokens ?? []).map(({ address, symbol, network }) => ({ + address, + symbol, + network, + assetType: "nft" as const, + })), +]; + +const nounsPreloadedDirectoryData = { + "$SPACE": getDirectoryDataFromTabJson(spaceHoldersTab), + space: getDirectoryDataFromTabJson(spaceHoldersTab), + Nouns: getDirectoryDataFromTabJson(nounsNftHoldersTab), + nouns: getDirectoryDataFromTabJson(nounsNftHoldersTab), + "/nouns": getDirectoryDataFromTabJson(nounsChannelTab), + "channel-nouns": getDirectoryDataFromTabJson(nounsChannelTab), +}; + +export const nounsExplorePage = createExplorePageConfig({ + tokens: nounsTokens, + channel: nounsCommunity.social?.farcaster ?? null, + defaultTokenNetwork: "mainnet", + preloadedDirectoryData: nounsPreloadedDirectoryData, +}); diff --git a/src/config/nouns/nouns.fidgets.ts b/src/config/nouns/nouns.fidgets.ts new file mode 100644 index 000000000..709d2df86 --- /dev/null +++ b/src/config/nouns/nouns.fidgets.ts @@ -0,0 +1,24 @@ +export const nounsFidgets = { + enabled: [ + 'nounsHome', + 'governance', + 'feed', + 'cast', + 'gallery', + 'text', + 'iframe', + 'links', + 'video', + 'channel', + 'profile', + 'snapshot', + 'swap', + 'rss', + 'market', + 'portfolio', + 'chat', + 'builderScore', + 'framesV2' + ], + disabled: ['example'] +}; diff --git a/src/config/nouns/nouns.home.ts b/src/config/nouns/nouns.home.ts new file mode 100644 index 000000000..1b79304ff --- /dev/null +++ b/src/config/nouns/nouns.home.ts @@ -0,0 +1,590 @@ +export const nounsHomePage = { + defaultTab: "Nouns", + tabOrder: ["Nouns", "Social", "Governance", "Resources", "Funded Works", "Places"], + tabs: { + "Nouns": { + name: "Nouns", + displayName: "Nouns", + layoutID: "88b78f73-37fb-4921-9410-bc298311c0bb", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, h: 10, x: 0, y: 0, + i: "nounsHome:3a8d7f19-3e77-4c2b-9c7f-1a6f5f5a6f01", + minW: 2, maxW: 36, minH: 2, maxH: 36, + moved: false, static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false + } + ] + }, + layoutFidget: "grid" + }, + theme: { + id: "Homebase-Tab 4 - 1-Theme", + name: "Homebase-Tab 4 - 1-Theme", + properties: { + background: "#ffffff", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderColor: "#eeeeee", + fidgetBorderRadius: "0px", + fidgetBorderWidth: "0px", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + gridSpacing: "0", + headingsFont: "Inter", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804" + } + }, + fidgetInstanceDatums: { + "nounsHome:3a8d7f19-3e77-4c2b-9c7f-1a6f5f5a6f01": { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + showOnMobile: true, + isScrollable: true, + headingsFontFamily: "Londrina Solid", + fontFamily: "Poppins" + } + }, + fidgetType: "nounsHome", + id: "nounsHome:3a8d7f19-3e77-4c2b-9c7f-1a6f5f5a6f01" + } + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-06-20T05:58:44.080Z" + }, + "Social": { + name: "Social", + displayName: "Social", + layoutID: "48073f43-70dd-459c-be6d-e31ac89f267f", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 8, + h: 10, + x: 0, + y: 0, + i: "feed:9f8f8e69-6323-4e7d-8f9a-210f522827f7", + minW: 4, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + { + w: 4, + h: 4, + x: 8, + y: 6, + i: "links:c96c96c9-c19d-47c7-b24d-b11985671470", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + { + w: 4, + h: 6, + x: 8, + y: 0, + i: "feed:Ns29YIhpl9SWpf5O36d2", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: { + id: "Homebase-Tab 3-Theme", + name: "Homebase-Tab 3-Theme", + properties: { + background: "#ffffff", + backgroundHTML: ` + + + + Nouns DAO Animated Background + + + +`, + fidgetBackground: "#ffffff", + fidgetBorderColor: "#eeeeee", + fidgetBorderRadius: "12px", + fidgetBorderWidth: "1px", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + gridSpacing: "16", + headingsFont: "Inter", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + }, + }, + fidgetInstanceDatums: { + "feed:9f8f8e69-6323-4e7d-8f9a-210f522827f7": { + config: { + data: {}, + editable: true, + settings: { + Xhandle: "thenounspace", + background: "var(--user-theme-fidget-background)", + channel: "nouns", + feedType: "filter", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + filterType: "channel_id", + fontColor: "var(--user-theme-font-color)", + fontFamily: "var(--user-theme-font)", + keyword: "", + selectPlatform: { + icon: "/images/farcaster.jpeg", + name: "Farcaster", + }, + showOnMobile: true, + style: "light", + username: "", + users: "", + }, + }, + fidgetType: "feed", + id: "feed:9f8f8e69-6323-4e7d-8f9a-210f522827f7", + }, + "links:c96c96c9-c19d-47c7-b24d-b11985671470": { + id: "links:c96c96c9-c19d-47c7-b24d-b11985671470", + fidgetType: "links", + config: { + data: {}, + editable: true, + settings: { + showOnMobile: true, + title: "Socials", + links: [ + { + avatar: + "data:image/webp;base64,UklGRjwDAABXRUJQVlA4IDADAAAwEwCdASozADMAPjEOjEYiEREJgCADBLSACvAP4B1T+gX7tewH7b7oB5Bfpx86/Hf8rtYJ/gv8+/KjJh/5b8t+FX/gPUh/Mf7zxg0d3nBfyH9O/Lv2R/PP+t9wD+Nf0P/O/2f94P8T8kHrM/aL2Lv1OTvFCx/7T977b/Lxb0GppIsSCShxNPS4ejN2Tn2Gpsha3mMHbq7Qs5OMbf/HXssqIPwA/v+r8lxFe+i8+zEOmpnbq/gZJ9n/r/gyvizFRxlqP83vEb2tMrQvF7HQPwRbHqDnQ7/waPUr+H6qkSp88nrrBnY8Rn9a+VTSJyR1ZeqwigXOSIguFtM78A3xJRz9VXOw2YgJtm7V9YTW92mv3Hg9mhimC3F0bEih9tQcZsbkJWOORQ4YejsAENCRdVcV7VrALnmzdwMSsfLfadMuf9Bp+S0KsKfCmCJvqWNTwGn2Vs8L7szaXFxMe+qLL708+z6/vx3Hyz23wF0LZhLVT3R2hB9KnLAmnxiFfh9KIr3hgLPEapK7qAtT5Q+GQTbPXo34M7SDx8tXrJ7PNF89N4ITkuMKvE8RWoyL3g6ep/5j1Y+wiIteNZe/D6f5UUyE5q/6GJevQ+AqIrO7abTGIO5Td2xsjIRuV/jV5A36uRO/3PH6v/8cOlr8ZE4uzHNak98aet9a+7iP/6p3u6HvENLHt1y13LZ34IE+ImLfFf+zFJsAiafcSOUgc2GtRpxJP+vJK+3pr/VEnNk4qMaL3hSyYZTJ6ND++XiV5vMrdm72LcJzYaNIZZpsF5vxR2/lPW/R57fvlJszqeK4gmQ/lqM6WX22ypXI7OPAMihJygPEvWbI/5CW0uMO8Ah2hiPwM/i0fiB/R+HLGoDa19/vOlnbedr+0U79UhB9VKvoCB3FVr4lpU8t8fE+8LOWWg8KN4IA4jRDOHBm59LX1IzhYZWeRSBrp8UHanycHuqqFa8JUSbJp6pYuD9KsfQR+en+P+kjg7eYFwQ8X6055LrJLTr4Metf8JGluIXMfgg0zBLor1XQwO73rj3+7164syNPA0zWJycUZ0jX2DSoE1os8KWbqlVdC4Y6sFWKEoEAAAA=", + description: "", + text: "X", + url: "https://x.com/nounsdao?lang=en", + }, + { + text: "Discord", + url: "https://discord.gg/TMDzKuf5", + avatar: + "https://play-lh.googleusercontent.com/0oO5sAneb9lJP6l8c6DH4aj6f85qNpplQVHmPmbbBxAukDnlO7DarDW0b-kEIHa8SQ=w240-h480-rw", + description: "", + }, + { + text: "Instagram", + url: "https://www.instagram.com/nounish/?hl=en", + avatar: "https://upload.wikimedia.org/wikipedia/commons/9/95/Instagram_logo_2022.svg", + description: "", + }, + ], + viewMode: "list", + headingsFontFamily: "'Londrina Solid', 'Londrina Solid Fallback'", + fontFamily: "Theme Font", + HeaderColor: "var(--user-theme-headings-font-color)", + DescriptionColor: "var(--user-theme-font-color)", + itemBackground: "var(--user-theme-fidget-background)", + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + css: "", + }, + }, + }, + "feed:Ns29YIhpl9SWpf5O36d2": { + config: { + data: {}, + editable: true, + settings: { + Xhandle: "", + background: "var(--user-theme-fidget-background)", + channel: "", + feedType: "filter", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + filterType: "keyword", + fontColor: "var(--user-theme-font-color)", + fontFamily: "var(--user-theme-font)", + keyword: "nounish", + selectPlatform: { + icon: "/images/farcaster.jpeg", + name: "Farcaster", + }, + showOnMobile: true, + style: "light", + username: "", + users: "", + }, + }, + fidgetType: "feed", + id: "feed:Ns29YIhpl9SWpf5O36d2", + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-06-20T09:51:46.060Z", + }, + "Governance": { + name: "Governance", + displayName: "Governance", + layoutID: "28dcce75-17c5-4c12-b5e2-8524ffc268cf", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, + h: 10, + x: 0, + y: 0, + i: "iframe:87e54ba3-9894-4ca6-9b75-3a67d9477af9", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: { + id: "Homebase-Tab 2 - 1-Theme", + name: "Homebase-Tab 2 - 1-Theme", + properties: { + background: "#ffffff", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderColor: "#eeeeee", + fidgetBorderRadius: "0px", + fidgetBorderWidth: "0px", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + gridSpacing: "0", + headingsFont: "Inter", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + }, + }, + fidgetInstanceDatums: { + "iframe:87e54ba3-9894-4ca6-9b75-3a67d9477af9": { + id: "iframe:87e54ba3-9894-4ca6-9b75-3a67d9477af9", + fidgetType: "iframe", + config: { + data: {}, + editable: true, + settings: { + url: "https://www.nouns.camp/?tab=proposals", + cropOffsetX: 0, + cropOffsetY: -3, + isScrollable: false, + showOnMobile: true, + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + fidgetBorderColor: "var(--user-theme-fidget-border-color)", + fidgetShadow: "var(--user-theme-fidget-shadow)", + }, + }, + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-06-20T06:51:01.474Z", + }, + "Resources": { + name: "Resources", + displayName: "Resources", + layoutID: "0bbe52be-5c9e-4d87-ad76-bd4b114c790a", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, + h: 10, + x: 0, + y: 0, + i: "iframe:d06b525b-54ff-4074-bfa3-a39807e42738", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: { + id: "Homebase-Tab 3-Theme", + name: "Homebase-Tab 3-Theme", + properties: { + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "0px", + fidgetBorderColor: "#eeeeee", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "0", + }, + }, + fidgetInstanceDatums: { + "iframe:d06b525b-54ff-4074-bfa3-a39807e42738": { + id: "iframe:d06b525b-54ff-4074-bfa3-a39807e42738", + fidgetType: "iframe", + config: { + editable: true, + data: {}, + settings: { + url: "https://nouns.center/assets", + size: 1.2, + cropOffsetX: 0, + cropOffsetY: -5, + isScrollable: false, + showOnMobile: true, + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "0", + fidgetBorderColor: "rgba(238, 238, 238, 0)", + fidgetShadow: "none", + }, + }, + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-06-20T07:14:04.678Z", + }, + "Funded Works": { + name: "Funded Works", + displayName: "Funded Works", + layoutID: "0bbe52be-5c9e-4d87-ad76-bd4b114c790a", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, + h: 10, + x: 0, + y: 0, + i: "iframe:d06b525b-54ff-4074-bfa3-a39807e42738", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: { + id: "Homebase-Tab 3-Theme", + name: "Homebase-Tab 3-Theme", + properties: { + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "0px", + fidgetBorderColor: "#eeeeee", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "0", + }, + }, + fidgetInstanceDatums: { + "iframe:d06b525b-54ff-4074-bfa3-a39807e42738": { + id: "iframe:d06b525b-54ff-4074-bfa3-a39807e42738", + fidgetType: "iframe", + config: { + editable: true, + data: {}, + settings: { + url: "https://nouns.world/explore", + size: 1.2, + cropOffsetX: 0, + cropOffsetY: -4, + isScrollable: false, + showOnMobile: true, + background: "var(--user-theme-fidget-background)", + fidgetBorderWidth: "0", + fidgetBorderColor: "rgba(238, 238, 238, 0)", + fidgetShadow: "none", + }, + }, + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-06-20T07:14:04.678Z", + }, + "Places": { + name: "Places", + displayName: "Places", + layoutID: "cdb57e20-254c-476f-aadc-bcce8bbfa772", + layoutDetails: { + layoutConfig: { + layout: [ + { + w: 12, + h: 10, + x: 0, + y: 0, + i: "iframe:8c9ce902-336e-4f11-ac2e-bf604da43b5d", + minW: 2, + maxW: 36, + minH: 2, + maxH: 36, + moved: false, + static: false, + resizeHandles: ["s", "w", "e", "n", "sw", "nw", "se", "ne"], + isBounded: false, + }, + ], + }, + layoutFidget: "grid", + }, + theme: { + id: "Homebase-Tab Places-Theme", + name: "Homebase-Tab Places-Theme", + properties: { + background: "#ffffff", + backgroundHTML: "", + fidgetBackground: "#ffffff", + fidgetBorderColor: "#eeeeee", + fidgetBorderRadius: "0px", + fidgetBorderWidth: "0px", + fidgetShadow: "none", + font: "Inter", + fontColor: "#000000", + gridSpacing: "0", + headingsFont: "Inter", + headingsFontColor: "#000000", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + }, + }, + fidgetInstanceDatums: { + "iframe:8c9ce902-336e-4f11-ac2e-bf604da43b5d": { + config: { + data: {}, + editable: true, + settings: { + background: "var(--user-theme-fidget-background)", + cropOffsetX: 0, + cropOffsetY: 0, + fidgetBorderColor: "rgba(238, 238, 238, 0)", + fidgetBorderWidth: "0", + fidgetShadow: "none", + isScrollable: false, + showOnMobile: true, + url: "https://nounspot.com/", + }, + }, + fidgetType: "iframe", + id: "iframe:8c9ce902-336e-4f11-ac2e-bf604da43b5d", + }, + }, + fidgetTrayContents: [], + isEditable: false, + timestamp: "2025-08-12T19:44:39.689Z", + } + }, + layout: { + defaultLayoutFidget: "grid", + gridSpacing: 16, + theme: { + background: "#ffffff", + fidgetBackground: "#ffffff", + font: "Inter", + fontColor: "#000000" + } + } +}; diff --git a/src/config/nouns/nouns.navigation.ts b/src/config/nouns/nouns.navigation.ts new file mode 100644 index 000000000..6404a435c --- /dev/null +++ b/src/config/nouns/nouns.navigation.ts @@ -0,0 +1,19 @@ +import { NavigationConfig } from "../systemConfig"; + +export const nounsNavigation: NavigationConfig = { + logoTooltip: { + text: "wtf is nouns?", + href: "https://nouns.wtf", + }, + items: [ + { id: 'home', label: 'Home', href: '/home', icon: 'home' }, + { id: 'explore', label: 'Explore', href: '/explore', icon: 'explore' }, + { id: 'notifications', label: 'Notifications', href: '/notifications', icon: 'notifications', requiresAuth: true }, + { id: 'space-token', label: '$SPACE', href: '/t/base/0x48C6740BcF807d6C47C864FaEEA15Ed4dA3910Ab/Profile', icon: 'space' }, + ], + showMusicPlayer: true, + showSocials: true, +}; + +export default nounsNavigation; + diff --git a/src/config/nouns/nouns.theme.ts b/src/config/nouns/nouns.theme.ts new file mode 100644 index 000000000..50d4093f2 --- /dev/null +++ b/src/config/nouns/nouns.theme.ts @@ -0,0 +1,192 @@ +export const nounsTheme = { + default: { + id: "default", + name: "Default", + properties: { + font: "Inter", + fontColor: "#000000", + headingsFont: "Inter", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#ffffff", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#C0C0C0", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + nounish: { + id: "nounish", + name: "Nounish", + properties: { + font: "Londrina Solid", + fontColor: "#333333", + headingsFont: "Work Sans", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "nounish", // Reference to animated background + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "#FFFAFA", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#F05252", + fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + gradientAndWave: { + id: "gradientAndWave", + name: "Gradient & Wave", + properties: { + font: "Lato", + fontColor: "#FFFFFF", + headingsFont: "Lato", + headingsFontColor: "#FFFFFF", + background: "rgba(101,0,94,1)", + backgroundHTML: "gradientAndWave", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "transparent", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + colorBlobs: { + id: "colorBlobs", + name: "Color Blobs", + properties: { + font: "Quicksand", + fontColor: "#000000", + headingsFont: "Roboto", + headingsFontColor: "#000000", + background: "#fbe9e0", + backgroundHTML: "colorBlobs", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0.5)", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#ffffff", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + floatingShapes: { + id: "floatingShapes", + name: "Floating Shapes", + properties: { + font: "Anek Latin", + fontColor: "#FFFFFF", + headingsFont: "Anek Latin", + headingsFontColor: "#FFFFFF", + background: "#4e54c8", + backgroundHTML: "floatingShapes", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0)", + fidgetBorderWidth: "0", + fidgetBorderColor: "transparent", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + imageParallax: { + id: "imageParallax", + name: "Image Parallax", + properties: { + font: "Inter", + fontColor: "#FFFFFF", + headingsFont: "Poppins", + headingsFontColor: "#FFFFFF", + background: "#000000", + backgroundHTML: "imageParallax", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(0 0 0 / 0.6)", + fidgetBorderWidth: "0", + fidgetBorderColor: "transparent", + fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + shootingStar: { + id: "shootingStar", + name: "Shooting Star", + properties: { + font: "Trispace", + fontColor: "#FDF6B2", + headingsFont: "Goldman", + headingsFontColor: "#FACA15", + background: "#000000", + backgroundHTML: "shootingStar", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "transparent", + fidgetBorderWidth: "1px", + fidgetBorderColor: "#FACA15", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + squareGrid: { + id: "squareGrid", + name: "Square Grid", + properties: { + font: "Inter", + fontColor: "#FFFFFF", + headingsFont: "Oswald", + headingsFontColor: "#FFFFFF", + background: "#4A1D96", + backgroundHTML: "squareGrid", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(103 65 78 / 0.6)", + fidgetBorderWidth: "4px", + fidgetBorderColor: "#FFFFFF", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + tesseractPattern: { + id: "tesseractPattern", + name: "Tesseract Pattern", + properties: { + font: "Exo", + fontColor: "#000000", + headingsFont: "Work Sans", + headingsFontColor: "#000000", + background: "#FFFFFF", + backgroundHTML: "tesseractPattern", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "rgb(255 255 255 / 0.9)", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#F8B4D9", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, + retro: { + id: "retro", + name: "Retro", + properties: { + font: "IBM Plex Mono", + fontColor: "#333333", + headingsFont: "IBM Plex Mono", + headingsFontColor: "#000000", + background: "#ffffff", + backgroundHTML: "retro", + musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", + fidgetBackground: "linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(144,165,185,1) 100%)", + fidgetBorderWidth: "2px", + fidgetBorderColor: "#90A5B9", + fidgetShadow: "none", + fidgetBorderRadius: "12px", + gridSpacing: "16", + }, + }, +}; diff --git a/src/config/nouns/nouns.ui.ts b/src/config/nouns/nouns.ui.ts new file mode 100644 index 000000000..5f2f85f63 --- /dev/null +++ b/src/config/nouns/nouns.ui.ts @@ -0,0 +1,12 @@ +import type { UIConfig } from "../systemConfig"; + +export const nounsUI: UIConfig = { + primaryColor: "rgb(37, 99, 235)", // blue-600 + primaryHoverColor: "rgb(29, 78, 216)", // blue-700 + primaryActiveColor: "rgb(30, 64, 175)", // blue-800 + castButton: { + backgroundColor: "rgb(37, 99, 235)", // blue-600 + hoverColor: "rgb(29, 78, 216)", // blue-700 + activeColor: "rgb(30, 64, 175)", // blue-800 + }, +}; diff --git a/src/config/systemConfig.ts b/src/config/systemConfig.ts new file mode 100644 index 000000000..f2a9d1aaf --- /dev/null +++ b/src/config/systemConfig.ts @@ -0,0 +1,226 @@ +// This file contains only the SystemConfig interface +// Individual configurations are imported from their respective folders + +import { Address } from "viem"; + +export type CommunityTokenNetwork = "mainnet" | "base" | "polygon" | "eth"; + +export interface CommunityErc20Token { + address: string; + symbol: string; + decimals: number; + network?: CommunityTokenNetwork; +} + +export interface CommunityNftToken { + address: string; + symbol: string; + type: "erc721" | "erc1155" | string; + network?: CommunityTokenNetwork; +} + +export interface CommunityTokensConfig { + erc20Tokens?: CommunityErc20Token[]; + nftTokens?: CommunityNftToken[]; +} + +export interface SystemConfig { + brand: BrandConfig; + assets: AssetConfig; + theme: ThemeConfig; + community: CommunityConfig; + fidgets: FidgetConfig; + homePage: HomePageConfig; + explorePage: ExplorePageConfig; + navigation?: NavigationConfig; + ui?: UIConfig; +} + +export interface UIConfig { + primaryColor: string; + primaryHoverColor: string; + primaryActiveColor: string; + castButton: { + backgroundColor: string; + hoverColor: string; + activeColor: string; + }; +} + +export interface BrandConfig { + name: string; + displayName: string; + tagline: string; + description: string; + miniAppTags: string[]; +} + +export interface AssetConfig { + logos: { + main: string; + icon: string; + favicon: string; + appleTouch: string; + og: string; + splash: string; + }; +} + +export interface ThemeConfig { + default: ThemeProperties; + nounish: ThemeProperties; + gradientAndWave: ThemeProperties; + colorBlobs: ThemeProperties; + floatingShapes: ThemeProperties; + imageParallax: ThemeProperties; + shootingStar: ThemeProperties; + squareGrid: ThemeProperties; + tesseractPattern: ThemeProperties; + retro: ThemeProperties; +} + +export interface ThemeProperties { + id: string; + name: string; + properties: { + font: string; + fontColor: string; + headingsFont: string; + headingsFontColor: string; + background: string; + backgroundHTML: string; + musicURL: string; + fidgetBackground: string; + fidgetBorderWidth: string; + fidgetBorderColor: string; + fidgetShadow: string; + fidgetBorderRadius: string; + gridSpacing: string; + }; +} + + +export type CommunityContractsConfig = { + nouns: Address; + auctionHouse: Address; + space: Address; + nogs: Address; +} & Record; + +export interface CommunityConfig { + type: string; + urls: { + website: string; + discord: string; + twitter: string; + github: string; + forum: string; + }; + social: { + farcaster: string; + discord: string; + twitter: string; + }; + governance: { + proposals: string; + delegates: string; + treasury: string; + }; + tokens: CommunityTokensConfig; + contracts: CommunityContractsConfig; +} + +export interface FidgetConfig { + enabled: string[]; + disabled: string[]; +} + +export interface HomePageConfig { + defaultTab: string; + tabOrder: string[]; + tabs: { + [key: string]: TabConfig; + }; + layout: { + defaultLayoutFidget: string; + gridSpacing: number; + theme: { + background: string; + fidgetBackground: string; + font: string; + fontColor: string; + }; + }; +} + +export type ExplorePageConfig = HomePageConfig; + +export interface NavigationConfig { + items: NavigationItem[]; + logoTooltip?: LogoTooltipConfig; + showMusicPlayer?: boolean; + showSocials?: boolean; +} + +export interface LogoTooltipConfig { + text: string; + href?: string; +} + +export interface NavigationItem { + id: string; + label: string; + href: string; + icon?: 'home' | 'explore' | 'notifications' | 'search' | 'space' | 'robot' | 'custom'; + openInNewTab?: boolean; + requiresAuth?: boolean; +} + +export interface TabConfig { + name: string; + displayName: string; + layoutID: string; + layoutDetails: LayoutFidgetDetails; + theme: ThemeProperties; + fidgetInstanceDatums: Record; + fidgetTrayContents: any[]; + isEditable: boolean; + timestamp: string; +} + +export interface LayoutFidgetDetails { + layoutConfig: { + layout: GridItem[]; + }; + layoutFidget: string; +} + +export interface FidgetInstanceData { + config: { + data: any; + editable: boolean; + settings: Record; + }; + fidgetType: string; + id: string; +} + +export interface GridItem { + w: number; + h: number; + x: number; + y: number; + i: string; + minW?: number; + maxW?: number; + minH?: number; + maxH?: number; + moved?: boolean; + static?: boolean; + resizeHandles?: string[]; + isBounded?: boolean; +} + + +// SystemConfig interface is exported from this file +// Individual configurations are defined in their respective folders diff --git a/src/config/utils/exploreTabDirectoryData.ts b/src/config/utils/exploreTabDirectoryData.ts new file mode 100644 index 000000000..5c14d9cdb --- /dev/null +++ b/src/config/utils/exploreTabDirectoryData.ts @@ -0,0 +1,70 @@ +import type { DirectoryFidgetData } from "@/fidgets/token/Directory/types"; + +type RawTabData = { + fidgetInstanceDatums?: Record< + string, + { + fidgetType?: string; + config?: { + data?: unknown; + }; + } + >; +} | null; + +type DirectoryPayloadLike = DirectoryFidgetData & { lastFetchSettings?: unknown }; + +const isDirectoryData = (value: unknown): value is DirectoryPayloadLike => + !!value && typeof value === "object" && Array.isArray((value as DirectoryPayloadLike).members); + +const sanitizeLastFetchSettings = ( + lastFetchSettings: DirectoryPayloadLike["lastFetchSettings"], +): DirectoryFidgetData["lastFetchSettings"] => { + if (!lastFetchSettings) { + return undefined; + } + + const source = (lastFetchSettings as { source?: unknown }).source; + const normalizedSource = + source === "tokenHolders" || source === "farcasterChannel" || source === "csv" + ? source + : undefined; + + return { + ...(lastFetchSettings as Record), + ...(normalizedSource ? { source: normalizedSource } : { source: undefined }), + }; +}; + +const sanitizeDirectoryData = (data: DirectoryPayloadLike): DirectoryFidgetData => ({ + members: Array.isArray(data.members) ? data.members : [], + lastUpdatedTimestamp: data.lastUpdatedTimestamp ?? null, + tokenSymbol: data.tokenSymbol ?? null, + tokenDecimals: data.tokenDecimals ?? null, + lastFetchSettings: sanitizeLastFetchSettings(data.lastFetchSettings), +}); + +/** + * Extract the persisted Directory fidget data from a serialized Tab JSON object. + * We support both the legacy saved-tab shape (with fidgetInstanceDatums) and the + * simplified shape that stores DirectoryFidgetData at the root. + */ +export const getDirectoryDataFromTabJson = ( + raw: unknown, +): DirectoryFidgetData | undefined => { + if (isDirectoryData(raw)) { + return sanitizeDirectoryData(raw); + } + + const tabData = raw as RawTabData; + if (!tabData?.fidgetInstanceDatums) { + return undefined; + } + + const directoryEntry = Object.values(tabData.fidgetInstanceDatums).find( + (value) => value?.fidgetType === "Directory" && value.config?.data, + ); + + const data = directoryEntry?.config?.data; + return isDirectoryData(data) ? sanitizeDirectoryData(data) : undefined; +}; diff --git a/src/constants/analyticsEvents.ts b/src/constants/analyticsEvents.ts new file mode 100644 index 000000000..adf6ff896 --- /dev/null +++ b/src/constants/analyticsEvents.ts @@ -0,0 +1,49 @@ +export enum AnalyticsEvent { + CONNECT_WALLET = "Connect Wallet", + SIGN_UP = "Sign Up", + LINK_FID = "Link FID", + CREATE_NEW_TAB = "Create New Tab", + SAVE_SPACE_THEME = "Save Space Theme", + SAVE_HOMEBASE_THEME = "Save Homebase Theme", + ADD_FIDGET = "Add Fidget", + EDIT_FIDGET = "Edit Fidget", + CLICK_SPACE_FAIR_LAUNCH = "Click Space Fair Launch", + CHANGE_TAB_NAME = "Change Tab Name", + MUSIC_UPDATED = "Music Updated", + CLICK_EXPLORE = "Explore Click", + CLICK_HOMEBASE = "Click Homebase", + CLICK_SEARCH = "Click Search", + CLICK_NOTIFICATIONS = "Click Notifications", + CLICK_MY_SPACE = "Click My Space", + CLICK_CAST = "Click Cast", + CLICK_EXPLORE_CARD = "Click Explore Card", + CAST = "Cast", + REPLY = "Reply", + RECAST = "Recast", + LIKE = "Like", + PLAY = "Play", + PAUSE = "Pause", + GENERATE_BACKGROUND = "Generate Background", + SPACE_REGISTERED = "Space Registered", +} + +export type AnalyticsEventProperties = { + [AnalyticsEvent.CONNECT_WALLET]: { hasNogs: boolean }; + [AnalyticsEvent.SIGN_UP]: Record; + [AnalyticsEvent.LINK_FID]: { fid: number }; + [AnalyticsEvent.CHANGE_TAB_NAME]: Record; + [AnalyticsEvent.CLICK_EXPLORE_CARD]: { slug: string }; + [AnalyticsEvent.CLICK_HOMEBASE]: Record; + [AnalyticsEvent.CLICK_NOTIFICATIONS]: Record; + [AnalyticsEvent.CLICK_SEARCH]: Record; + [AnalyticsEvent.CLICK_EXPLORE]: Record; + [AnalyticsEvent.CLICK_SPACE_FAIR_LAUNCH]: Record; + [AnalyticsEvent.CLICK_MY_SPACE]: Record; + [AnalyticsEvent.PLAY]: { url: string }; + [AnalyticsEvent.PAUSE]: { url: string }; + [AnalyticsEvent.LIKE]: { username: string; castId: string }; + [AnalyticsEvent.RECAST]: { username: string; castId: string }; + [AnalyticsEvent.REPLY]: { username: string; castId: string }; +} & { + [K in AnalyticsEvent]?: Record; +}; diff --git a/src/constants/basedDaos.ts b/src/constants/basedDaos.ts index e4024286c..64f587a35 100644 --- a/src/constants/basedDaos.ts +++ b/src/constants/basedDaos.ts @@ -36,7 +36,7 @@ export const DAO_OPTIONS = [ }, { name: "Based Fellas", - contract: "0xa5078075b929eabeb02a25edf4243665c9354601", + contract: "0xa5078075b929eabeb02a073edf4243665c9354601", graphUrl: BUILDER_DAO, icon: "https://nouns.build/_next/image?url=https%3A%2F%2Fipfs.decentralized-content.com%2Fipfs%2Fbafkreid4nwlrqpsxzchtu7sa2nes7slwo5uzsawurhl4yn3t3pzbjqv5je&w=128&q=75", }, diff --git a/src/constants/metadata.ts b/src/constants/metadata.ts index 9ae2f278a..825331593 100644 --- a/src/constants/metadata.ts +++ b/src/constants/metadata.ts @@ -1,32 +1,37 @@ import { WEBSITE_URL } from "@/constants/app"; +import { loadSystemConfig } from "@/config"; + +// Load system configuration +const config = loadSystemConfig(); export const defaultFrame = { version: "next", - imageUrl: `${WEBSITE_URL}/images/nounspace_og_low.png`, + imageUrl: `${WEBSITE_URL}${config.assets.logos.og}`, button: { - title: "Open Space", + title: config.brand.name, action: { type: "launch_frame", url: WEBSITE_URL, - name: "Nouns", - splashImageUrl: `${WEBSITE_URL}/images/nounspace_logo.png`, + name: config.brand.displayName, + splashImageUrl: `${WEBSITE_URL}${config.assets.logos.splash}`, splashBackgroundColor: "#FFFFFF", } } } export const metadata = { - APP_NAME: 'Nouns', - APP_ICON: 'https://www.nounspace.com/images/mini_app_icon.png', - APP_SUBTITLE: 'A space for Nouns', + APP_NAME: config.brand.name, + APP_ICON: `${WEBSITE_URL}${config.assets.logos.icon}`, + APP_SUBTITLE: config.brand.tagline, APP_BUTTON_TITLE: 'Open Space', - APP_DESCRIPTION: 'The social hub for Nouns', - APP_SPLASH_IMAGE: 'https://www.nounspace.com/images/icon-192x192.png', + APP_DESCRIPTION: config.brand.description, + APP_TAGS: config.brand.miniAppTags, + APP_SPLASH_IMAGE: `${WEBSITE_URL}${config.assets.logos.splash}`, SPLASH_BACKGROUND_COLOR: '#FFFFFF', APP_PRIMARY_CATEGORY: 'social', - APP_HERO_IMAGE: 'https://www.nounspace.com/images/icon-192x192.png', - APP_TAGLINE: 'A space for Nouns', - APP_OG_TITLE: 'Nouns', - APP_OG_DESCRIPTION: 'The social hub for Nouns', - APP_OG_IMAGE: 'https://www.nounspace.com/images/icon-192x192.png', + APP_HERO_IMAGE: `${WEBSITE_URL}${config.assets.logos.splash}`, + APP_TAGLINE: config.brand.tagline, + APP_OG_TITLE: config.brand.displayName, + APP_OG_DESCRIPTION: config.brand.description, + APP_OG_IMAGE: `${WEBSITE_URL}${config.assets.logos.og}`, } \ No newline at end of file diff --git a/src/constants/mobileFidgetIcons.ts b/src/constants/mobileFidgetIcons.ts index 90e2fda23..bc20b43ff 100644 --- a/src/constants/mobileFidgetIcons.ts +++ b/src/constants/mobileFidgetIcons.ts @@ -11,6 +11,7 @@ export const DEFAULT_FIDGET_ICON_MAP: Record = { Market: 'BsBarChart', Portfolio: 'GiTwoCoins', Chat: 'BsChatDots', + Top8: 'BsPeople', BuilderScore: 'BsTools', profile: 'BsPerson', }; diff --git a/src/constants/nogs.ts b/src/constants/nogs.ts index ad0897a18..333e9ce68 100644 --- a/src/constants/nogs.ts +++ b/src/constants/nogs.ts @@ -1 +1,6 @@ -export const NOGS_CONTRACT_ADDR = "0xD094D5D45c06c1581f5f429462eE7cCe72215616"; +import { loadSystemConfig } from "@/config"; + +// Load system configuration +const config = loadSystemConfig(); + +export const NOGS_CONTRACT_ADDR = config.community.contracts.nogs; diff --git a/src/constants/spaceToken.ts b/src/constants/spaceToken.ts index 2e4d770d0..324504857 100644 --- a/src/constants/spaceToken.ts +++ b/src/constants/spaceToken.ts @@ -1 +1,17 @@ -export const SPACE_CONTRACT_ADDR = "0x48c6740bcf807d6c47c864faeea15ed4da3910ab"; +import type { Address } from "viem"; +import { isAddress } from "viem"; + +import { loadSystemConfig } from "@/config"; + +// Load system configuration +const config = loadSystemConfig(); + +const spaceContractAddress = config.community.contracts.space; + +if (!isAddress(spaceContractAddress)) { + throw new Error( + "Invalid space contract address configured. Expected a checksummed 0x-prefixed address.", + ); +} + +export const SPACE_CONTRACT_ADDR: Address = spaceContractAddress; diff --git a/src/constants/themes.ts b/src/constants/themes.ts index 43622fc21..188245309 100644 --- a/src/constants/themes.ts +++ b/src/constants/themes.ts @@ -9,197 +9,75 @@ import { retro, nounish, } from "./animatedBackgroundsHtml"; +import { loadSystemConfig } from "@/config"; +// Load system configuration +const config = loadSystemConfig(); + +// Convert configuration themes to the expected format export const THEMES = [ + config.theme.default, { - id: "default", - name: "Default", - properties: { - font: "Inter", - fontColor: "#000000", - headingsFont: "Inter", - headingsFontColor: "#000000", - background: "#ffffff", - backgroundHTML: "", - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "#ffffff", - fidgetBorderWidth: "1px", - fidgetBorderColor: "#C0C0C0", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", - }, - }, - { - id: "gradientAndWave", - name: "Gradient & Wave", + ...config.theme.gradientAndWave, properties: { - font: "Lato", - fontColor: "#FFFFFF", - headingsFont: "Lato", - headingsFontColor: "#FFFFFF", - background: "rgba(101,0,94,1)", + ...config.theme.gradientAndWave.properties, backgroundHTML: gradientAndWave, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "transparent", - fidgetBorderWidth: "1px", - fidgetBorderColor: "#ffffff", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "colorBlobs", - name: "Color Blobs", + ...config.theme.colorBlobs, properties: { - font: "Quicksand", - fontColor: "#000000", - headingsFont: "Roboto", - headingsFontColor: "#000000", - background: "#fbe9e0", + ...config.theme.colorBlobs.properties, backgroundHTML: colorBlobs, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "rgb(255 255 255 / 0.5)", - fidgetBorderWidth: "1px", - fidgetBorderColor: "#ffffff", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "floatingShapes", - name: "Floating Shapes", + ...config.theme.floatingShapes, properties: { - font: "Anek Latin", - fontColor: "#FFFFFF", - headingsFont: "Anek Latin", - headingsFontColor: "#FFFFFF", - background: "#4e54c8", + ...config.theme.floatingShapes.properties, backgroundHTML: floatingShapes, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "rgb(255 255 255 / 0)", - fidgetBorderWidth: "0", - fidgetBorderColor: "transparent", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "imageParallax", - name: "Image Parallax", + ...config.theme.imageParallax, properties: { - font: "Inter", - fontColor: "#FFFFFF", - headingsFont: "Poppins", - headingsFontColor: "#FFFFFF", - background: "#000000", + ...config.theme.imageParallax.properties, backgroundHTML: imageParallax, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "rgb(0 0 0 / 0.6)", - fidgetBorderWidth: "0", - fidgetBorderColor: "transparent", - fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "shootingStar", - name: "Shooting Star", + ...config.theme.shootingStar, properties: { - font: "Trispace", - fontColor: "#FDF6B2", - headingsFont: "Goldman", - headingsFontColor: "#FACA15", - background: "#000000", + ...config.theme.shootingStar.properties, backgroundHTML: shootingStar, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "transparent", - fidgetBorderWidth: "1px", - fidgetBorderColor: "#FACA15", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "squareGrid", - name: "Square Grid", + ...config.theme.squareGrid, properties: { - font: "Inter", - fontColor: "#FFFFFF", - headingsFont: "Oswald", - headingsFontColor: "#FFFFFF", - background: "#4A1D96", + ...config.theme.squareGrid.properties, backgroundHTML: squareGrid, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "rgb(103 65 78 / 0.6)", - fidgetBorderWidth: "4px", - fidgetBorderColor: "#FFFFFF", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "tesseractPattern", - name: "Tesseract Pattern", + ...config.theme.tesseractPattern, properties: { - font: "Exo", - fontColor: "#000000", - headingsFont: "Work Sans", - headingsFontColor: "#000000", - background: "#FFFFFF", + ...config.theme.tesseractPattern.properties, backgroundHTML: tesseractPattern, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "rgb(255 255 255 / 0.9)", - fidgetBorderWidth: "2px", - fidgetBorderColor: "#F8B4D9", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "retro", - name: "Retro", + ...config.theme.retro, properties: { - font: "IBM Plex Mono", - fontColor: "#333333", - headingsFont: "IBM Plex Mono", - headingsFontColor: "#000000", - background: "#ffffff", + ...config.theme.retro.properties, backgroundHTML: retro, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: - "linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(144,165,185,1) 100%)", - fidgetBorderWidth: "2px", - fidgetBorderColor: "#90A5B9", - fidgetShadow: "none", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, { - id: "nounish", - name: "Nounish", + ...config.theme.nounish, properties: { - font: "Londrina Solid", - fontColor: "#333333", - headingsFont: "Work Sans", - headingsFontColor: "#000000", - background: "#ffffff", + ...config.theme.nounish.properties, backgroundHTML: nounish, - musicURL: "https://www.youtube.com/watch?v=dMXlZ4y7OK4&t=1804", - fidgetBackground: "#FFFAFA", - fidgetBorderWidth: "2px", - fidgetBorderColor: "#F05252", - fidgetShadow: "0 5px 15px rgba(0,0,0,0.55)", - fidgetBorderRadius: "12px", - gridSpacing: "16", }, }, ]; \ No newline at end of file diff --git a/src/constants/urls.ts b/src/constants/urls.ts index 224e06358..58f3bc2c7 100644 --- a/src/constants/urls.ts +++ b/src/constants/urls.ts @@ -3,12 +3,15 @@ export const WARPCAST_API = "https://api.warpcast.com"; const optimismUrl = `https://opt-mainnet.g.alchemy.com/`; const mainnetUrl = `https://eth-mainnet.g.alchemy.com/`; const baseUrl = `https://base-mainnet.g.alchemy.com/`; -export function ALCHEMY_API(network: "base" | "opt" | "eth") { +const polygonUrl = `https://polygon-mainnet.g.alchemy.com/`; +export function ALCHEMY_API(network: "base" | "opt" | "eth" | "polygon") { let url: string; if (network === "base") { url = baseUrl; } else if (network === "opt") { url = optimismUrl; + } else if (network === "polygon") { + url = polygonUrl; } else { url = mainnetUrl; } diff --git a/src/contracts/tokensABI.ts b/src/contracts/tokensABI.ts deleted file mode 100644 index 5b0241ed5..000000000 --- a/src/contracts/tokensABI.ts +++ /dev/null @@ -1,474 +0,0 @@ -const tokensABI = [ - { - inputs: [ - { internalType: "string", name: "name_", type: "string" }, - { internalType: "string", name: "symbol_", type: "string" }, - { internalType: "uint256", name: "maxSupply_", type: "uint256" }, - { internalType: "address", name: "deployer_", type: "address" }, - { internalType: "uint256", name: "fid_", type: "uint256" }, - { internalType: "string", name: "image_", type: "string" }, - { internalType: "string", name: "castHash_", type: "string" }, - ], - stateMutability: "nonpayable", - type: "constructor", - }, - { inputs: [], name: "CheckpointUnorderedInsertion", type: "error" }, - { inputs: [], name: "ECDSAInvalidSignature", type: "error" }, - { - inputs: [{ internalType: "uint256", name: "length", type: "uint256" }], - name: "ECDSAInvalidSignatureLength", - type: "error", - }, - { - inputs: [{ internalType: "bytes32", name: "s", type: "bytes32" }], - name: "ECDSAInvalidSignatureS", - type: "error", - }, - { - inputs: [ - { internalType: "uint256", name: "increasedSupply", type: "uint256" }, - { internalType: "uint256", name: "cap", type: "uint256" }, - ], - name: "ERC20ExceededSafeSupply", - type: "error", - }, - { - inputs: [ - { internalType: "address", name: "spender", type: "address" }, - { internalType: "uint256", name: "allowance", type: "uint256" }, - { internalType: "uint256", name: "needed", type: "uint256" }, - ], - name: "ERC20InsufficientAllowance", - type: "error", - }, - { - inputs: [ - { internalType: "address", name: "sender", type: "address" }, - { internalType: "uint256", name: "balance", type: "uint256" }, - { internalType: "uint256", name: "needed", type: "uint256" }, - ], - name: "ERC20InsufficientBalance", - type: "error", - }, - { - inputs: [{ internalType: "address", name: "approver", type: "address" }], - name: "ERC20InvalidApprover", - type: "error", - }, - { - inputs: [{ internalType: "address", name: "receiver", type: "address" }], - name: "ERC20InvalidReceiver", - type: "error", - }, - { - inputs: [{ internalType: "address", name: "sender", type: "address" }], - name: "ERC20InvalidSender", - type: "error", - }, - { - inputs: [{ internalType: "address", name: "spender", type: "address" }], - name: "ERC20InvalidSpender", - type: "error", - }, - { - inputs: [{ internalType: "uint256", name: "deadline", type: "uint256" }], - name: "ERC2612ExpiredSignature", - type: "error", - }, - { - inputs: [ - { internalType: "address", name: "signer", type: "address" }, - { internalType: "address", name: "owner", type: "address" }, - ], - name: "ERC2612InvalidSigner", - type: "error", - }, - { - inputs: [ - { internalType: "uint256", name: "timepoint", type: "uint256" }, - { internalType: "uint48", name: "clock", type: "uint48" }, - ], - name: "ERC5805FutureLookup", - type: "error", - }, - { inputs: [], name: "ERC6372InconsistentClock", type: "error" }, - { - inputs: [ - { internalType: "address", name: "account", type: "address" }, - { internalType: "uint256", name: "currentNonce", type: "uint256" }, - ], - name: "InvalidAccountNonce", - type: "error", - }, - { inputs: [], name: "InvalidShortString", type: "error" }, - { inputs: [], name: "NotDeployer", type: "error" }, - { - inputs: [ - { internalType: "uint8", name: "bits", type: "uint8" }, - { internalType: "uint256", name: "value", type: "uint256" }, - ], - name: "SafeCastOverflowedUintDowncast", - type: "error", - }, - { - inputs: [{ internalType: "string", name: "str", type: "string" }], - name: "StringTooLong", - type: "error", - }, - { - inputs: [{ internalType: "uint256", name: "expiry", type: "uint256" }], - name: "VotesExpiredSignature", - type: "error", - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "address", - name: "owner", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "spender", - type: "address", - }, - { - indexed: false, - internalType: "uint256", - name: "value", - type: "uint256", - }, - ], - name: "Approval", - type: "event", - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "address", - name: "delegator", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "fromDelegate", - type: "address", - }, - { - indexed: true, - internalType: "address", - name: "toDelegate", - type: "address", - }, - ], - name: "DelegateChanged", - type: "event", - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: "address", - name: "delegate", - type: "address", - }, - { - indexed: false, - internalType: "uint256", - name: "previousVotes", - type: "uint256", - }, - { - indexed: false, - internalType: "uint256", - name: "newVotes", - type: "uint256", - }, - ], - name: "DelegateVotesChanged", - type: "event", - }, - { anonymous: false, inputs: [], name: "EIP712DomainChanged", type: "event" }, - { - anonymous: false, - inputs: [ - { indexed: true, internalType: "address", name: "from", type: "address" }, - { indexed: true, internalType: "address", name: "to", type: "address" }, - { - indexed: false, - internalType: "uint256", - name: "value", - type: "uint256", - }, - ], - name: "Transfer", - type: "event", - }, - { - inputs: [], - name: "CLOCK_MODE", - outputs: [{ internalType: "string", name: "", type: "string" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "DOMAIN_SEPARATOR", - outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "owner", type: "address" }, - { internalType: "address", name: "spender", type: "address" }, - ], - name: "allowance", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "spender", type: "address" }, - { internalType: "uint256", name: "value", type: "uint256" }, - ], - name: "approve", - outputs: [{ internalType: "bool", name: "", type: "bool" }], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "account", type: "address" }], - name: "balanceOf", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "uint256", name: "value", type: "uint256" }], - name: "burn", - outputs: [], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "account", type: "address" }, - { internalType: "uint256", name: "value", type: "uint256" }, - ], - name: "burnFrom", - outputs: [], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [], - name: "castHash", - outputs: [{ internalType: "string", name: "", type: "string" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "account", type: "address" }, - { internalType: "uint32", name: "pos", type: "uint32" }, - ], - name: "checkpoints", - outputs: [ - { - components: [ - { internalType: "uint48", name: "_key", type: "uint48" }, - { internalType: "uint208", name: "_value", type: "uint208" }, - ], - internalType: "struct Checkpoints.Checkpoint208", - name: "", - type: "tuple", - }, - ], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "clock", - outputs: [{ internalType: "uint48", name: "", type: "uint48" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "decimals", - outputs: [{ internalType: "uint8", name: "", type: "uint8" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "delegatee", type: "address" }], - name: "delegate", - outputs: [], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "delegatee", type: "address" }, - { internalType: "uint256", name: "nonce", type: "uint256" }, - { internalType: "uint256", name: "expiry", type: "uint256" }, - { internalType: "uint8", name: "v", type: "uint8" }, - { internalType: "bytes32", name: "r", type: "bytes32" }, - { internalType: "bytes32", name: "s", type: "bytes32" }, - ], - name: "delegateBySig", - outputs: [], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "account", type: "address" }], - name: "delegates", - outputs: [{ internalType: "address", name: "", type: "address" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "deployer", - outputs: [{ internalType: "address", name: "", type: "address" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "eip712Domain", - outputs: [ - { internalType: "bytes1", name: "fields", type: "bytes1" }, - { internalType: "string", name: "name", type: "string" }, - { internalType: "string", name: "version", type: "string" }, - { internalType: "uint256", name: "chainId", type: "uint256" }, - { internalType: "address", name: "verifyingContract", type: "address" }, - { internalType: "bytes32", name: "salt", type: "bytes32" }, - { internalType: "uint256[]", name: "extensions", type: "uint256[]" }, - ], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "fid", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "uint256", name: "timepoint", type: "uint256" }], - name: "getPastTotalSupply", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "account", type: "address" }, - { internalType: "uint256", name: "timepoint", type: "uint256" }, - ], - name: "getPastVotes", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "account", type: "address" }], - name: "getVotes", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "image", - outputs: [{ internalType: "string", name: "", type: "string" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "name", - outputs: [{ internalType: "string", name: "", type: "string" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "owner", type: "address" }], - name: "nonces", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [{ internalType: "address", name: "account", type: "address" }], - name: "numCheckpoints", - outputs: [{ internalType: "uint32", name: "", type: "uint32" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "owner", type: "address" }, - { internalType: "address", name: "spender", type: "address" }, - { internalType: "uint256", name: "value", type: "uint256" }, - { internalType: "uint256", name: "deadline", type: "uint256" }, - { internalType: "uint8", name: "v", type: "uint8" }, - { internalType: "bytes32", name: "r", type: "bytes32" }, - { internalType: "bytes32", name: "s", type: "bytes32" }, - ], - name: "permit", - outputs: [], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [], - name: "symbol", - outputs: [{ internalType: "string", name: "", type: "string" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [], - name: "totalSupply", - outputs: [{ internalType: "uint256", name: "", type: "uint256" }], - stateMutability: "view", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "to", type: "address" }, - { internalType: "uint256", name: "value", type: "uint256" }, - ], - name: "transfer", - outputs: [{ internalType: "bool", name: "", type: "bool" }], - stateMutability: "nonpayable", - type: "function", - }, - { - inputs: [ - { internalType: "address", name: "from", type: "address" }, - { internalType: "address", name: "to", type: "address" }, - { internalType: "uint256", name: "value", type: "uint256" }, - ], - name: "transferFrom", - outputs: [{ internalType: "bool", name: "", type: "bool" }], - stateMutability: "nonpayable", - type: "function", - }, -]; - -export default tokensABI; diff --git a/src/fidgets/community/nouns-dao/NounishAuctions.tsx b/src/fidgets/community/nouns-dao/NounishAuctions.tsx new file mode 100644 index 000000000..1c06445d6 --- /dev/null +++ b/src/fidgets/community/nouns-dao/NounishAuctions.tsx @@ -0,0 +1,1026 @@ +"use client"; + +import React, { useCallback, useEffect, useMemo, useState } from "react"; +import { ChevronLeft, ChevronRight } from "lucide-react"; +import { formatEther, isAddress, parseEther } from "viem"; +import { base, mainnet, optimism } from "viem/chains"; +import { + useAccount, + useConnect, + useSwitchChain, + useWriteContract, + useEnsName, + useEnsAvatar, +} from "wagmi"; +import { readContract, waitForTransactionReceipt } from "wagmi/actions"; +import { Input } from "@/common/components/atoms/input"; +import { Button } from "@/common/components/atoms/button"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/common/components/atoms/select"; +import { DAO_OPTIONS } from "@/constants/basedDaos"; +import { mergeClasses } from "@/common/lib/utils/mergeClasses"; +import { FidgetArgs, FidgetModule, FidgetProperties, FidgetSettingsStyle } from "@/common/fidgets"; +import { defaultStyleFields, WithMargin } from "@/fidgets/helpers"; +import { wagmiConfig } from "@/common/providers/Wagmi"; +import { DaoSelector } from "@/common/components/molecules/DaoSelector"; + +const BUILDER_SUBGRAPH_ENDPOINTS: Record = { + base: + "https://api.goldsky.com/api/public/project_clkk1ucdyf6ak38svcatie9tf/subgraphs/nouns-builder-base-mainnet/stable/gn", + mainnet: "https://api.thegraph.com/subgraphs/name/neokry/nouns-builder-mainnet", + optimism: + "https://api.thegraph.com/subgraphs/name/neokry/noun-builder-optimism-mainnet", +}; + +const SUPPORTED_NETWORKS = [ + { label: "Base", value: "base", chain: base }, + { label: "Ethereum", value: "mainnet", chain: mainnet }, + { label: "Optimism", value: "optimism", chain: optimism }, +] as const; + +type SupportedNetwork = (typeof SUPPORTED_NETWORKS)[number]["value"]; + +type DaoOption = { + name: string; + contract: string; + graphUrl: string; + icon?: string; +}; + +type BuilderAuction = { + id: string; + endTime: number; + startTime: number; + settled: boolean; + tokenId: string; + imageUrl?: string; + highestBidAmount?: string; + highestBidder?: string; + winningBidAmount?: string; + winningBidder?: string; +}; + +type BuilderDao = { + auctionAddress?: `0x${string}`; + name?: string; +}; + +const ACTIVE_AUCTION_QUERY = /* GraphQL */ ` + query ActiveAuction($dao: ID!) { + dao(id: $dao) { + auctionAddress + name + } + auctions( + where: { dao: $dao, settled: false } + orderBy: startTime + orderDirection: desc + first: 1 + ) { + id + endTime + startTime + settled + token { + tokenId + image + } + highestBid { + amount + bidder + } + winningBid { + amount + bidder + } + } + } +`; + +const PAST_AUCTIONS_QUERY = /* GraphQL */ ` + query PastAuctions($dao: ID!, $first: Int!, $skip: Int!) { + auctions( + where: { dao: $dao, settled: true } + orderBy: endTime + orderDirection: desc + first: $first + skip: $skip + ) { + id + endTime + startTime + token { + tokenId + image + } + winningBid { + amount + bidder + } + highestBid { + amount + bidder + } + } + } +`; + +const auctionAbi = [ + { + type: "function", + stateMutability: "view", + name: "auction", + inputs: [], + outputs: [ + { name: "tokenId", type: "uint256" }, + { name: "highestBid", type: "uint256" }, + { name: "highestBidder", type: "address" }, + { name: "startTime", type: "uint40" }, + { name: "endTime", type: "uint40" }, + { name: "settled", type: "bool" }, + ], + }, + { + type: "function", + stateMutability: "payable", + name: "createBid", + inputs: [{ name: "_tokenId", type: "uint256" }], + outputs: [], + }, + { + type: "function", + stateMutability: "nonpayable", + name: "settleAuction", + inputs: [], + outputs: [], + }, + { + type: "function", + stateMutability: "nonpayable", + name: "settleCurrentAndCreateNewAuction", + inputs: [], + outputs: [], + }, + { + type: "function", + stateMutability: "view", + name: "reservePrice", + inputs: [], + outputs: [{ name: "", type: "uint256" }], + }, + { + type: "function", + stateMutability: "view", + name: "minBidIncrement", + inputs: [], + outputs: [{ name: "", type: "uint256" }], + }, + { + type: "function", + stateMutability: "view", + name: "minBidIncrementPercentage", + inputs: [], + outputs: [{ name: "", type: "uint256" }], + }, + { + type: "function", + stateMutability: "view", + name: "paused", + inputs: [], + outputs: [{ name: "", type: "bool" }], + }, +] as const; + +async function runGraphQuery(endpoint: string, query: string, variables: Record): Promise { + const response = await fetch(endpoint, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ query, variables }), + }); + + if (!response.ok) { + throw new Error(`GraphQL request failed with status ${response.status}`); + } + + const json = (await response.json()) as { data?: T; errors?: Array<{ message: string }> }; + + if (json.errors?.length) { + throw new Error(json.errors.map((error) => error.message).join(", ")); + } + + if (!json.data) { + throw new Error("No data returned from subgraph"); + } + + return json.data; +} + +const toHttpUri = (uri?: string | null): string | undefined => { + if (!uri) return undefined; + if (uri.startsWith("ipfs://")) { + return uri.replace("ipfs://", "https://ipfs.io/ipfs/"); + } + return uri; +}; + +const formatEthDisplay = (value?: string | bigint | null): string => { + if (value == null) return "0 ETH"; + const asBigInt = typeof value === "bigint" ? value : BigInt(value); + const numeric = Number.parseFloat(formatEther(asBigInt)); + if (!Number.isFinite(numeric)) return "0 ETH"; + const decimals = numeric >= 1 ? 2 : 4; + return `${numeric.toFixed(decimals)} ETH`; +}; + +const shortenAddress = (address?: string | null): string => { + if (!address) return "-"; + return `${address.slice(0, 6)}...${address.slice(-4)}`; +}; + +const AuctionArt: React.FC<{ imageUrl?: string; tokenId?: string; className?: string }> = ({ + imageUrl, + tokenId, + className, +}) => { + return ( +
+ {imageUrl ? ( + // eslint-disable-next-line @next/next/no-img-element + {`Token + ) : ( +
+ No artwork +
+ )} +
+ ); +}; + +const DEFAULT_BG = "#e1d7d5"; +const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000"; + +const useImageDominantColor = (imageUrl?: string) => { + const [color, setColor] = useState(); + + useEffect(() => { + if (!imageUrl) { + setColor(undefined); + return; + } + let cancelled = false; + const img = new Image(); + img.crossOrigin = "anonymous"; + img.src = imageUrl; + img.onload = () => { + if (cancelled) return; + try { + const canvas = document.createElement("canvas"); + canvas.width = 1; + canvas.height = 1; + const ctx = canvas.getContext("2d"); + if (!ctx) return; + ctx.drawImage(img, 0, 0, 1, 1); + const [r, g, b] = ctx.getImageData(0, 0, 1, 1).data; + setColor(`rgb(${r}, ${g}, ${b})`); + } catch { + setColor(undefined); + } + }; + img.onerror = () => { + if (!cancelled) setColor(undefined); + }; + return () => { + cancelled = true; + }; + }, [imageUrl]); + + return color; +}; + +const formatAuctionDate = (timestamp?: number) => { + if (!timestamp) return "-"; + return new Intl.DateTimeFormat(undefined, { dateStyle: "medium" }).format(new Date(timestamp * 1000)); +}; + +const formatCountdown = (endTime?: number) => { + if (!endTime) return "00:00:00"; + const ms = endTime * 1000 - Date.now(); + if (ms <= 0) return "00:00:00"; + const hours = Math.floor(ms / (1000 * 60 * 60)); + const minutes = Math.floor((ms % (1000 * 60 * 60)) / (1000 * 60)); + const seconds = Math.floor((ms % (1000 * 60)) / 1000); + return `${hours.toString().padStart(2, "0")}:${minutes.toString().padStart(2, "0")}:${seconds + .toString() + .padStart(2, "0")}`; +}; + +const formatEnsOrAddress = (ens?: string | null, address?: string | null) => { + if (ens) return ens; + if (address) return shortenAddress(address); + return "-"; +}; + +const AddressDisplay: React.FC<{ + ensName?: string | null; + address?: string | null; + avatar?: string | null; + className?: string; +}> = ({ ensName, address, avatar, className }) => { + const label = formatEnsOrAddress(ensName, address); + return ( +
+
+ {avatar ? ( + // eslint-disable-next-line @next/next/no-img-element + {label} + ) : ( +
+ {(ensName ?? address ?? "?").slice(0, 2).toUpperCase()} +
+ )} +
+ {label} +
+ ); +}; + +export type NounishAuctionsSettings = { + selectedDao: DaoOption; + customDaoContract?: string; + builderNetwork?: SupportedNetwork; + customGraphUrl?: string; +} & FidgetSettingsStyle; + +export const nounishAuctionsConfig: FidgetProperties = { + fidgetName: "Nounish Auctions", + icon: 0x1f3b0, + fields: [ + { + fieldName: "selectedDao", + displayName: "Select DAO", + displayNameHint: "Choose a Builder DAO to prefill address and subgraph", + default: DAO_OPTIONS.find((dao) => dao.name === "Gnars") ?? DAO_OPTIONS[0], + required: false, + inputSelector: (props) => ( + + + + ), + group: "settings", + }, + { + fieldName: "customDaoContract", + displayName: "Custom DAO contract", + displayNameHint: "Override the DAO address if it is not listed", + required: false, + inputSelector: (props) => ( + + + + ), + group: "settings", + }, + { + fieldName: "builderNetwork", + displayName: "Builder network", + displayNameHint: "Network where the DAO is deployed", + default: "base", + required: false, + inputSelector: (props) => ( + + + + ), + group: "settings", + }, + { + fieldName: "customGraphUrl", + displayName: "Custom subgraph URL", + displayNameHint: "Provide a custom Builder subgraph endpoint if needed", + required: false, + inputSelector: (props) => ( + + + + ), + group: "settings", + }, + ...defaultStyleFields, + ], + size: { + minHeight: 8, + maxHeight: 36, + minWidth: 6, + maxWidth: 36, + }, +}; + +const pastFetchSize = 1; + +export const NounishAuctions: React.FC> = ({ settings }) => { + const [activeAuction, setActiveAuction] = useState(null); + const [daoDetails, setDaoDetails] = useState(null); + const [pastAuctionCache, setPastAuctionCache] = useState>({}); + const [viewOffset, setViewOffset] = useState(0); + const [loadingActive, setLoadingActive] = useState(false); + const [loadingPast, setLoadingPast] = useState(false); + const [pastEndReached, setPastEndReached] = useState(false); + const [error, setError] = useState(null); + const [refreshKey, setRefreshKey] = useState(0); + const [txPending, setTxPending] = useState(false); + const [minBidIncrementPct, setMinBidIncrementPct] = useState(); + const [minBidIncrementWei, setMinBidIncrementWei] = useState(); + const [reservePrice, setReservePrice] = useState(); + const [bidValue, setBidValue] = useState(""); + const [fallbackChecked, setFallbackChecked] = useState(false); + const [now, setNow] = useState(Date.now()); + + const { address, chainId } = useAccount(); + const { connectAsync, connectors } = useConnect(); + const { switchChainAsync } = useSwitchChain(); + const { writeContractAsync } = useWriteContract(); + + const daoChoice = useMemo(() => settings.selectedDao ?? DAO_OPTIONS[0], [settings.selectedDao]); + const customAddress = settings.customDaoContract ?? ""; + const networkValue = (settings.builderNetwork ?? "base") as SupportedNetwork; + const customGraphUrl = settings.customGraphUrl ?? ""; + + const daoAddress = useMemo(() => { + const override = customAddress.trim(); + const fromSelector = daoChoice?.contract; + return (override && isAddress(override) ? override : fromSelector) as `0x${string}` | undefined; + }, [customAddress, daoChoice?.contract]); + + const resolvedNetwork = + SUPPORTED_NETWORKS.find((item) => item.value === networkValue) ?? SUPPORTED_NETWORKS[0]; + + const subgraphUrl = + customGraphUrl || + daoChoice?.graphUrl || + BUILDER_SUBGRAPH_ENDPOINTS[networkValue] || + BUILDER_SUBGRAPH_ENDPOINTS.base; + + const hasValidDao = Boolean(daoAddress); + + useEffect(() => { + const id = setInterval(() => setNow(Date.now()), 1_000); + return () => clearInterval(id); + }, []); + + const fetchActiveAuction = useCallback(async () => { + if (!hasValidDao) return; + setLoadingActive(true); + setError(null); + try { + const data = await runGraphQuery<{ + dao?: BuilderDao; + auctions: Array<{ + id: string; + endTime: string; + startTime: string; + settled: boolean; + token?: { tokenId: string; image?: string | null } | null; + highestBid?: { amount: string; bidder: string } | null; + winningBid?: { amount: string; bidder: string } | null; + }>; + }>(subgraphUrl, ACTIVE_AUCTION_QUERY, { dao: daoAddress?.toLowerCase() }); + + const auction = data.auctions?.[0]; + setDaoDetails(data.dao ?? null); + + if (auction) { + setActiveAuction({ + id: auction.id, + endTime: Number(auction.endTime), + startTime: Number(auction.startTime), + settled: auction.settled, + tokenId: auction.token?.tokenId ?? "", + imageUrl: toHttpUri(auction.token?.image), + highestBidAmount: auction.highestBid?.amount ?? undefined, + highestBidder: auction.highestBid?.bidder, + winningBidAmount: auction.winningBid?.amount ?? undefined, + winningBidder: auction.winningBid?.bidder, + }); + } else { + setActiveAuction(null); + } + } catch (err) { + console.error(err); + setError((err as Error).message); + } finally { + setLoadingActive(false); + } + }, [daoAddress, hasValidDao, subgraphUrl]); + + const fetchPastAuction = useCallback( + async (index: number) => { + if (!hasValidDao || index < 0) return null; + if (pastAuctionCache[index]) return pastAuctionCache[index]; + setLoadingPast(true); + setError(null); + try { + const data = await runGraphQuery<{ + auctions: Array<{ + id: string; + endTime: string; + startTime?: string; + token?: { tokenId: string; image?: string | null } | null; + winningBid?: { amount: string; bidder: string } | null; + highestBid?: { amount: string; bidder: string } | null; + }>; + }>(subgraphUrl, PAST_AUCTIONS_QUERY, { + dao: daoAddress?.toLowerCase(), + first: pastFetchSize, + skip: index, + }); + + const auction = data.auctions?.[0]; + if (!auction) { + setPastEndReached(true); + return null; + } + + const mapped: BuilderAuction = { + id: auction.id, + endTime: Number(auction.endTime), + startTime: Number(auction.startTime ?? auction.endTime), + settled: true, + tokenId: auction.token?.tokenId ?? "", + imageUrl: toHttpUri(auction.token?.image), + highestBidAmount: auction.highestBid?.amount ?? auction.winningBid?.amount ?? undefined, + highestBidder: auction.highestBid?.bidder ?? auction.winningBid?.bidder, + winningBidAmount: auction.winningBid?.amount ?? auction.highestBid?.amount ?? undefined, + winningBidder: auction.winningBid?.bidder ?? auction.highestBid?.bidder, + }; + + setPastAuctionCache((prev) => ({ ...prev, [index]: mapped })); + return mapped; + } catch (err) { + console.error(err); + setError((err as Error).message); + return null; + } finally { + setLoadingPast(false); + } + }, + [daoAddress, hasValidDao, pastAuctionCache, subgraphUrl], + ); + + useEffect(() => { + setPastAuctionCache({}); + setViewOffset(0); + setPastEndReached(false); + setFallbackChecked(false); + setBidValue(""); + }, [daoAddress, subgraphUrl]); + + useEffect(() => { + fetchActiveAuction(); + }, [fetchActiveAuction, refreshKey]); + + useEffect(() => { + if (loadingActive || fallbackChecked || !hasValidDao) return; + if (!activeAuction) { + setFallbackChecked(true); + fetchPastAuction(0).then((auction) => { + if (auction) setViewOffset(1); + }); + } + }, [activeAuction, fetchPastAuction, fallbackChecked, hasValidDao, loadingActive]); + + useEffect(() => { + (async () => { + if (!daoAddress) return; + try { + const [reserve, pct, increment] = await Promise.all([ + readContract(wagmiConfig, { + address: daoAddress, + abi: auctionAbi, + functionName: "reservePrice", + chainId: resolvedNetwork.chain.id, + }).catch(() => undefined), + readContract(wagmiConfig, { + address: daoAddress, + abi: auctionAbi, + functionName: "minBidIncrementPercentage", + chainId: resolvedNetwork.chain.id, + }).catch(() => undefined), + readContract(wagmiConfig, { + address: daoAddress, + abi: auctionAbi, + functionName: "minBidIncrement", + chainId: resolvedNetwork.chain.id, + }).catch(() => undefined), + ]); + if (typeof reserve === "bigint") setReservePrice(reserve); + if (typeof pct === "number" || typeof pct === "bigint") setMinBidIncrementPct(Number(pct)); + if (typeof increment === "bigint") setMinBidIncrementWei(increment); + } catch (err) { + console.warn("Failed to load auction parameters", err); + } + })(); + }, [daoAddress, resolvedNetwork.chain.id]); + + const ensureConnection = useCallback(async () => { + if (!connectAsync || !switchChainAsync) return; + if (!address) { + const connector = connectors[0]; + if (!connector) throw new Error("No wallet connector available"); + await connectAsync({ connector, chainId: resolvedNetwork.chain.id }); + return; + } + if (chainId !== resolvedNetwork.chain.id) { + await switchChainAsync({ chainId: resolvedNetwork.chain.id }); + } + }, [address, chainId, connectAsync, connectors, resolvedNetwork.chain.id, switchChainAsync]); + + const isViewingActive = viewOffset === 0 && Boolean(activeAuction); + const currentAuction = isViewingActive ? activeAuction : pastAuctionCache[viewOffset - 1] ?? null; + const displayDaoName = daoDetails?.name ?? daoChoice?.name ?? "Auction"; + + useEffect(() => { + setBidValue(""); + }, [currentAuction?.id]); + + const activeHighestBidWei = useMemo(() => { + const amount = activeAuction?.highestBidAmount; + if (!amount) return 0n; + return BigInt(amount); + }, [activeAuction?.highestBidAmount]); + + const minBidWei = useMemo(() => { + if (!isViewingActive) return undefined; + const highest = activeHighestBidWei; + if (highest === 0n) { + if (reservePrice !== undefined) return reservePrice; + if (minBidIncrementWei !== undefined) return minBidIncrementWei; + return undefined; + } + if (minBidIncrementWei !== undefined) return highest + minBidIncrementWei; + const pct = minBidIncrementPct ?? 5; + const bump = (highest * BigInt(pct) + 99n) / 100n; + return highest + bump; + }, [activeHighestBidWei, isViewingActive, minBidIncrementPct, minBidIncrementWei, reservePrice]); + + const minBidPlaceholder = useMemo(() => { + if (minBidWei == null) return "0.00"; + const eth = Number.parseFloat(formatEther(minBidWei)); + if (!Number.isFinite(eth)) return "0.00"; + const decimals = eth >= 1 ? 2 : 4; + return eth.toFixed(decimals); + }, [minBidWei]); + + const isEnded = currentAuction ? now >= currentAuction.endTime * 1000 : false; + const needsSettlement = isViewingActive && Boolean(currentAuction) && !currentAuction?.settled && isEnded; + + const displayBidValue = isViewingActive + ? currentAuction?.highestBidAmount ?? "0" + : currentAuction?.winningBidAmount ?? currentAuction?.highestBidAmount ?? "0"; + const displayBidLabel = formatEthDisplay(displayBidValue); + + const displayAddressRaw = isViewingActive + ? currentAuction?.highestBidder + : currentAuction?.winningBidder ?? currentAuction?.highestBidder; + const normalizedDisplayAddress = + displayAddressRaw && isAddress(displayAddressRaw) ? (displayAddressRaw as `0x${string}`) : undefined; + + const { data: ensName } = useEnsName({ + address: normalizedDisplayAddress, + chainId: mainnet.id, + query: { + enabled: Boolean(normalizedDisplayAddress && normalizedDisplayAddress !== ZERO_ADDRESS), + }, + }); + + const { data: ensAvatar } = useEnsAvatar({ + name: ensName ?? undefined, + chainId: mainnet.id, + query: { + enabled: Boolean(ensName), + }, + }); + + const timeLeftLabel = isViewingActive ? formatCountdown(currentAuction?.endTime) : "00:00:00"; + const backgroundColor = useImageDominantColor(currentAuction?.imageUrl) ?? DEFAULT_BG; + const canGoNewer = + viewOffset > 0 && + (!loadingActive || Boolean(activeAuction)) && + !(viewOffset === 1 && !activeAuction); + const nextPastIndex = viewOffset; + const canGoOlder = + hasValidDao && !loadingPast && !loadingActive && (!pastEndReached || Boolean(pastAuctionCache[nextPastIndex])); + + const handlePrev = useCallback(async () => { + const targetIndex = viewOffset; + const cached = pastAuctionCache[targetIndex]; + if (cached) { + setViewOffset((prev) => prev + 1); + return; + } + const fetched = await fetchPastAuction(targetIndex); + if (fetched) { + setViewOffset((prev) => prev + 1); + } + }, [fetchPastAuction, pastAuctionCache, viewOffset]); + + const handleNext = useCallback(() => { + if (viewOffset === 0) return; + if (viewOffset === 1 && !activeAuction) return; + setViewOffset((prev) => Math.max(0, prev - 1)); + }, [activeAuction, viewOffset]); + + const handleBid = useCallback( + async (value: string) => { + if (!activeAuction || !daoDetails?.auctionAddress || viewOffset !== 0) return; + const trimmed = value.trim(); + if (!trimmed || Number(trimmed) <= 0) { + setError("Enter a valid bid amount"); + return; + } + let bidWei: bigint; + try { + bidWei = parseEther(trimmed as `${number}`); + } catch { + setError("Enter a valid bid amount"); + return; + } + if (minBidWei != null && bidWei < minBidWei) { + setError(`Bid must be at least ${formatEthDisplay(minBidWei)}`); + return; + } + setError(null); + try { + setTxPending(true); + await ensureConnection(); + const hash = await writeContractAsync({ + address: daoDetails.auctionAddress, + abi: auctionAbi, + functionName: "createBid", + args: [BigInt(activeAuction.tokenId)], + value: bidWei, + chainId: resolvedNetwork.chain.id, + }); + await waitForTransactionReceipt(wagmiConfig, { hash, chainId: resolvedNetwork.chain.id }); + setRefreshKey((prev) => prev + 1); + } catch (err) { + console.error(err); + setError((err as Error).message); + } finally { + setTxPending(false); + } + }, + [ + activeAuction, + daoDetails?.auctionAddress, + ensureConnection, + minBidWei, + resolvedNetwork.chain.id, + viewOffset, + writeContractAsync, + ], + ); + + const handleSettle = useCallback(async () => { + if (!activeAuction || !daoDetails?.auctionAddress) return; + setError(null); + try { + setTxPending(true); + await ensureConnection(); + const hash = await writeContractAsync({ + address: daoDetails.auctionAddress, + abi: auctionAbi, + functionName: "settleCurrentAndCreateNewAuction", + args: [], + chainId: resolvedNetwork.chain.id, + }); + await waitForTransactionReceipt(wagmiConfig, { hash, chainId: resolvedNetwork.chain.id }); + setRefreshKey((prev) => prev + 1); + setViewOffset(0); + } catch (err) { + console.error(err); + setError((err as Error).message); + } finally { + setTxPending(false); + } + }, [activeAuction, daoDetails?.auctionAddress, ensureConnection, resolvedNetwork.chain.id, writeContractAsync]); + + const statusLabel = needsSettlement + ? "Ended • needs settlement" + : isViewingActive + ? "Live auction" + : "Settled auction"; + + const bidderHasValue = Boolean( + displayAddressRaw && + displayAddressRaw !== ZERO_ADDRESS && + (currentAuction?.highestBidAmount || currentAuction?.winningBidAmount), + ); + + return ( +
+
+ {error ? ( +
+ {error} +
+ ) : null} + + {!hasValidDao ? ( +
+ Enter a valid DAO contract address in the fidget settings to load auctions. +
+ ) : null} + + {hasValidDao && (loadingActive || (!currentAuction && loadingPast)) && ( +
+ Loading auction details... +
+ )} + + {hasValidDao && !loadingActive && !loadingPast && !currentAuction && ( +
+ No auctions found for this DAO yet. +
+ )} + + {hasValidDao && currentAuction && ( +
+
+
+ +
+
+ +
+
+
+
+ {formatAuctionDate(currentAuction.startTime || currentAuction.endTime)} +
+
+ + +
+
+ +
+
+ {statusLabel} +
+
+ {displayDaoName} • Token #{currentAuction.tokenId || "—"} +
+
+ +

+ {currentAuction.tokenId ? `Noun ${currentAuction.tokenId}` : displayDaoName} +

+ +
+
+

+ {isViewingActive ? "Current bid" : "Winning bid"} +

+

{displayBidLabel}

+
+
+

{isViewingActive ? "Time left" : "Time left"}

+

+ {isViewingActive ? (isEnded ? "00:00:00" : timeLeftLabel) : "00:00:00"} +

+
+
+ +
+ {needsSettlement ? ( + + ) : isViewingActive ? ( + <> +
+
+ setBidValue(event.target.value)} + placeholder={minBidPlaceholder} + disabled={txPending || isEnded} + className="h-12 w-full rounded-2xl border-2 border-black/10 bg-white pr-16 text-base font-semibold text-[#17171d] placeholder:font-semibold" + /> + + ETH + +
+ +
+
+ {bidderHasValue ? ( + <> + Highest bidder{" "} + + + ) : ( + "No bids yet" + )} +
+ + ) : ( +
+
Winning bid {displayBidLabel}
+
+ Won by{" "} + {bidderHasValue ? ( + + ) : ( + "—" + )} +
+
+ )} +
+
+
+
+ )} +
+
+ ); +}; + +export default { + fidget: NounishAuctions, + properties: nounishAuctionsConfig, +} as FidgetModule>; diff --git a/src/fidgets/farcaster/Top8.tsx b/src/fidgets/farcaster/Top8.tsx new file mode 100644 index 000000000..15dd7db48 --- /dev/null +++ b/src/fidgets/farcaster/Top8.tsx @@ -0,0 +1,102 @@ +import React from "react"; +import TextInput from "@/common/components/molecules/TextInput"; +import IFrameWidthSlider from "@/common/components/molecules/IframeScaleSlider"; +import { + FidgetArgs, + FidgetModule, + FidgetProperties, + type FidgetSettingsStyle, +} from "@/common/fidgets"; +import { defaultStyleFields, WithMargin } from "@/fidgets/helpers"; +import { BsPeople, BsPeopleFill } from "react-icons/bs"; + +export type Top8FidgetSettings = { + username: string; + size: number; +} & FidgetSettingsStyle; + +const top8Properties: FidgetProperties = { + fidgetName: "Top 8", + icon: 0x1f465, // 👥 + mobileIcon: , + mobileIconSelected: , + fields: [ + { + fieldName: "username", + displayName: "Farcaster Username", + default: "nounspacetom", + required: true, + inputSelector: (props) => ( + + + + ), + group: "settings", + }, + ...defaultStyleFields, + { + fieldName: "size", + displayName: "Scale", + required: false, + default: 0.6, + inputSelector: IFrameWidthSlider, + group: "style", + }, + ], + size: { + minHeight: 5, + maxHeight: 36, + minWidth: 4, + maxWidth: 36, + }, +}; + +const Top8: React.FC> = ({ + settings, +}) => { + const { + username = "nounspacetom", + size = 0.6, + background, + fidgetBorderColor, + fidgetBorderWidth, + fidgetShadow, + } = settings; + + const trimmedUsername = username?.trim() || "nounspacetom"; + const iframeUrl = `https://farcaster-top-8-frie-c060.bolt.host/${encodeURIComponent(trimmedUsername)}`; + + return ( +
+ +
+ ); + } + if (isLoading) { return (
@@ -107,4 +122,4 @@ const OpenGraphEmbed: React.FC = ({ url }) => { ); }; -export default OpenGraphEmbed; +export default OpenGraphEmbed; \ No newline at end of file diff --git a/src/fidgets/farcaster/components/Embeds/SpotifyEmbed.tsx b/src/fidgets/farcaster/components/Embeds/SpotifyEmbed.tsx new file mode 100644 index 000000000..0517ddf7b --- /dev/null +++ b/src/fidgets/farcaster/components/Embeds/SpotifyEmbed.tsx @@ -0,0 +1,29 @@ +import React from "react"; + +interface SpotifyEmbedProps { + url: string; +} + +const SpotifyEmbed: React.FC = ({ url }) => { + // Extracts the song ID from the link. + const match = url.match(/track\/([a-zA-Z0-9]+)/); + const trackId = match ? match[1] : null; + + if (!trackId) return null; + + return ( +