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/.nvmrc b/.nvmrc index 05f04686d..d135defb2 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v22.11.0 \ No newline at end of file +22.12.0 \ No newline at end of file diff --git a/README.md b/README.md index 3888e407b..30134e626 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,50 @@ a protocol for decentralized social apps: https://www.farcaster.xyz On Mac OS, for example: ```bash brew install supabase/tap/supabase + ``` + + Install Docker Desktop on macOS: + ```bash + brew install --cask docker + open /Applications/Docker.app + ``` + Wait for Docker Desktop to finish initializing before continuing. On Linux: - install docker - install supabase - npx supabase init + + First, install Homebrew (if not already installed): + ```bash + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + ``` + Follow the instructions in your terminal to add Homebrew to your PATH. + Generally, you'll need to run these commands (replace `.bashrc` with your shell configuration file if different): + + ```bash + (echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> ~/.bashrc + eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" + ``` + + You may also need to install some dependencies first (Debian/Ubuntu): + ```bash + sudo apt-get install build-essential procps curl file git + ``` + + Then install Supabase: + ```bash + brew install supabase/tap/supabase + ``` + + Install Docker (Debian/Ubuntu): + ```bash + sudo apt-get update + sudo apt-get install -y docker.io docker-compose-plugin + sudo systemctl enable --now docker + sudo usermod -aG docker "$USER" + ``` + Log out/in (or restart your shell) so the new group membership takes effect. + For other distros, follow the [official Docker Engine docs](https://docs.docker.com/engine/install/). + + Make sure Docker is installed and running before continuing. 4. Install dependencies ```bash yarn install @@ -47,13 +86,29 @@ a protocol for decentralized social apps: https://www.farcaster.xyz ``` The script will attempt to start Supabase automatically if Docker is running; otherwise it will skip this step. -9. Run the test suite +9. **Seed the local database** + After Supabase is running and migrations are applied, seed the database: + ```bash + # Run migrations and seed SQL (if not already done) + supabase db reset + + # Seed community configs and navPage spaces + yarn seed + ``` + + This will: + - Upload Nouns assets to ImgBB (if `NEXT_PUBLIC_IMGBB_API_KEY` is set) + - Create navPage space registrations + - Seed community configs (nouns, example, clanker) + - Upload navPage space configs to Supabase Storage + +10. Run the test suite ```bash yarn test ``` -9. cp .env.development.local .env.local -10. yarn build +11. cp .env.development.local .env.local +12. yarn build ## Contributing and making Fidgets 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/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..d6a164e03 --- /dev/null +++ b/docs/DOCUMENTATION_OVERVIEW.md @@ -0,0 +1,127 @@ +# 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 +│ ├── CONFIGURATION/ # Configuration system +│ │ └── ARCHITECTURE_OVERVIEW.md # Database-backed configuration system +│ └── 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 + +### 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/CONFIGURATION/ARCHITECTURE_OVERVIEW.md** - Database-backed configuration system +- **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..832c72b97 --- /dev/null +++ b/docs/GETTING_STARTED.md @@ -0,0 +1,336 @@ +# Getting Started + +This guide walks you through setting up Nounspace for local development, including database setup and seeding. + +## Prerequisites + +- **Node.js** v22.11.0 or later +- **yarn** package manager +- **Git** +- **Docker** (for local Supabase instance) +- **Supabase CLI** (install with `brew install supabase/tap/supabase` or `npm install -g supabase`) + +## Step 1: Clone and Install + +```bash +# Clone the repository +git clone https://github.com/nounspace/nounspace.ts.git +cd nounspace.ts + +# Install dependencies +yarn install +``` + +## Step 2: Start Local Supabase + +Start the local Supabase instance (this will start Docker containers): + +```bash +supabase start +``` + +This will: +- Start PostgreSQL database +- Start Supabase API server +- Start Supabase Studio (admin UI) +- Display connection credentials + +**Note:** The first time you run `supabase start`, it will download Docker images and may take a few minutes. + +### Access Local Supabase + +After starting, you'll see output like: + +``` +API URL: http://localhost:54321 +GraphQL URL: http://localhost:54321/graphql/v1 +DB URL: postgresql://postgres:postgres@localhost:54322/postgres +Studio URL: http://localhost:54323 +anon key: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +service_role key: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +``` + +- **Supabase Studio**: http://localhost:54323 (admin UI) +- **API URL**: http://localhost:54321 + +## Step 3: Environment Variables + +Create a `.env.local` file in the root directory: + +```bash +cp .env.example .env.local +``` + +### Required Environment Variables + +Configure the following in `.env.local` using the credentials from `supabase start`: + +```bash +# Supabase Local (Required - use values from `supabase start` output) +NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321 +NEXT_PUBLIC_SUPABASE_ANON_KEY=your-local-anon-key +SUPABASE_SERVICE_ROLE_KEY=your-local-service-role-key + +# Authentication (Required) +NEXT_PUBLIC_PRIVY_APP_ID=your-privy-app-id + +# Farcaster (Required) +NEXT_PUBLIC_NEYNAR_API_KEY=your-neynar-api-key + +# Community Override (Optional - for local testing) +NEXT_PUBLIC_TEST_COMMUNITY=nouns + +# ImgBB (Optional - only needed for asset uploads during seeding) +NEXT_PUBLIC_IMGBB_API_KEY=your-imgbb-api-key +``` + +### Getting Local Supabase Credentials + +After running `supabase start`, the credentials are displayed in the terminal output. You can also get them anytime with: + +```bash +supabase status +``` + +Copy the `anon key` and `service_role key` to your `.env.local` file. + +## Step 4: Run Migrations + +With the local Supabase instance running, apply database migrations: + +```bash +# Apply all migrations +supabase db reset +``` + +This will: +1. Reset the database (clears all data) +2. Run all migrations in `supabase/migrations/` +3. Run the seed SQL from `supabase/seed.sql` + +**Note:** `supabase db reset` is safe for local development - it resets your local database and applies all migrations and seeds. + +Alternatively, if you want to apply migrations without resetting: + +```bash +# Apply migrations only (without reset) +supabase migration up +``` + +## Step 5: Seed the Database + +After migrations are complete, seed the database with community configs and navigation pages: + +```bash +# Full seeding (uploads assets, seeds configs, uploads navPage spaces) +yarn seed + +# Or use tsx directly +tsx scripts/seed.ts +``` + +### Seeding Options + +```bash +# Check if database is already seeded +yarn seed:check +# or +tsx scripts/seed.ts --check + +# Skip asset upload (use existing URLs) +tsx scripts/seed.ts --skip-assets +``` + +### What the Seed Script Does + +1. **Uploads Nouns assets to ImgBB** (if `NEXT_PUBLIC_IMGBB_API_KEY` is set) +2. **Creates storage buckets** (if needed) +3. **Creates navPage space registrations** (home, explore pages) +4. **Seeds community configs** (nouns, example, clanker) +5. **Uploads navPage space configs** to Supabase Storage + +## Step 6: Start Development Server + +```bash +yarn dev +``` + +The app will be available at `http://localhost:3000` + +### Testing Different Communities + +By default, the app loads the community specified in `NEXT_PUBLIC_TEST_COMMUNITY` (or defaults to `nouns`). + +To test a different community: + +```bash +# Test 'example' community +NEXT_PUBLIC_TEST_COMMUNITY=example yarn dev + +# Test 'clanker' community +NEXT_PUBLIC_TEST_COMMUNITY=clanker yarn dev +``` + +Or use localhost subdomains: + +```bash +# Visit example.localhost:3000 (requires /etc/hosts setup) +# Or use a tool like localhost.run for subdomain support +``` + +## Step 7: Verify Setup + +1. **Check seeding status:** + ```bash + yarn seed:check + ``` + +2. **Visit the app:** + - Open `http://localhost:3000` + - You should see the Nouns community homepage + +3. **Check navigation:** + - Home page should load (`/home`) + - Explore page should load (`/explore`) + - No 404 errors + +## Common Issues + +### "Community ID is required for runtime config loading" + +**Solution:** Set `NEXT_PUBLIC_TEST_COMMUNITY` in your `.env.local`: +```bash +NEXT_PUBLIC_TEST_COMMUNITY=nouns +``` + +### "Failed to load config from database" + +**Possible causes:** +1. Local Supabase not running - Run `supabase start` +2. Database not seeded - Run `yarn seed` +3. Wrong Supabase credentials - Verify in `.env.local` (should use local values from `supabase start`) +4. Migrations not run - Run `supabase db reset` + +**Solution:** +```bash +# Check if seeded +yarn seed:check + +# Re-seed if needed +yarn seed +``` + +### Navigation pages return 404 + +**Solution:** Ensure navPage spaces are uploaded: +```bash +# Re-run seeding (will skip existing data) +yarn seed +``` + +### Build errors about missing config + +**Solution:** The app requires a seeded database. Ensure: +1. Migrations are run +2. Database is seeded (`yarn seed`) +3. `NEXT_PUBLIC_TEST_COMMUNITY` is set + +## Project Structure + +``` +src/ +├── app/ # Next.js App Router +│ ├── (spaces)/ # Space-related routes +│ ├── [navSlug]/ # Dynamic navigation pages (home, explore, etc.) +│ ├── api/ # API routes +│ ├── 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 `yarn lint` +3. **Check types** with `yarn check-types` +4. **Test changes** with `yarn test` +5. **Create a PR** following the [Contributing](CONTRIBUTING.md) guidelines + +## Managing Local Supabase + +```bash +# Start Supabase +supabase start + +# Check status +supabase status + +# Stop Supabase +supabase stop + +# Reset database (clears data, runs migrations + seed.sql) +supabase db reset + +# View logs +supabase logs +``` + +## Quick Reference + +```bash +# Setup (one-time) +yarn install +cp .env.example .env.local +supabase start # Start local Supabase (Docker) +# Copy credentials from supabase start output to .env.local +supabase db reset # Run migrations and seed SQL +yarn seed # Seed community configs and navPage spaces + +# Development (daily) +supabase start # Start Supabase if not running +yarn dev + +# Check seeding +yarn seed:check + +# Re-seed (if needed) +yarn seed + +# Stop Supabase (when done) +supabase stop +``` + +## 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 +- Check [Configuration System](SYSTEMS/CONFIGURATION/ARCHITECTURE_OVERVIEW.md) for how configs work +- Review [Project Structure](PROJECT_STRUCTURE.md) to understand the codebase 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..d7f59c98f --- /dev/null +++ b/src/config/clanker/index.ts @@ -0,0 +1,10 @@ +// Export individual config pieces (used by seed scripts and page configs) +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 { clankerNavigation } from './clanker.navigation'; +export { clankerUI } from './clanker.ui'; diff --git a/src/config/createExplorePageConfig.ts b/src/config/createExplorePageConfig.ts new file mode 100644 index 000000000..34bdd0df0 --- /dev/null +++ b/src/config/createExplorePageConfig.ts @@ -0,0 +1,262 @@ +import DEFAULT_THEME from "@/common/lib/theme/defaultTheme"; +import type { + NavPageConfig, + 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): NavPageConfig => { + 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..dde68adcb --- /dev/null +++ b/src/config/example/example.brand.ts @@ -0,0 +1,5 @@ +export const exampleBrand = { + displayName: "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..49b358b67 --- /dev/null +++ b/src/config/example/example.community.ts @@ -0,0 +1,35 @@ +import type { + CommunityConfig, + CommunityErc20Token, + CommunityNftToken, +} from "../systemConfig"; + +export const exampleCommunity = { + type: 'example', + urls: { + website: 'https://example.com', + discord: 'https://discord.gg/example', + }, + social: { + farcaster: 'example', + }, + governance: {}, + tokens: { + erc20Tokens: [ + { + address: '0x1234567890123456789012345678901234567890', + symbol: '$EXAMPLE', + decimals: 18, + network: 'mainnet', + }, + ] satisfies CommunityErc20Token[], + nftTokens: [ + { + address: '0x1234567890123456789012345678901234567890', + symbol: 'Example NFT', + type: 'erc721', + network: 'eth', + }, + ] satisfies CommunityNftToken[], + }, +} 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..2b4627489 --- /dev/null +++ b/src/config/example/index.ts @@ -0,0 +1,9 @@ +// Export individual config pieces (used by seed scripts and page configs) +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'; +export { exampleUI } from './example.ui'; diff --git a/src/config/index.ts b/src/config/index.ts new file mode 100644 index 000000000..304789531 --- /dev/null +++ b/src/config/index.ts @@ -0,0 +1,130 @@ +import { + SystemConfig, + type CommunityErc20Token, + type CommunityNftToken, + type CommunityTokenNetwork, + type CommunityTokensConfig, +} from './systemConfig'; +import { + ConfigLoadContext, + DEFAULT_COMMUNITY_ID, + getCommunityConfigForDomain, + loadSystemConfigById, +} from './loaders'; + +/** + * Load system configuration from database (SERVER-ONLY) + * + * This function can only be called from Server Components or Server Actions. + * For client components, pass systemConfig as a prop from a parent Server Component. + * + * All communities use runtime loading from Supabase. + * + * @param context Optional context (communityId, domain) - if not provided, + * will be inferred from headers/domain + * @returns The loaded system configuration (always async) + */ +export async function loadSystemConfig(context?: ConfigLoadContext): Promise { + // Priority 1: Explicit communityId provided + if (context?.communityId) { + try { + return await loadSystemConfigById(context.communityId); + } catch (error) { + // Don't fall back to default - throw informative error + const errorMessage = error instanceof Error ? error.message : String(error); + throw new Error( + `❌ Failed to load config for explicit communityId "${context.communityId}". ` + + `Error: ${errorMessage}. ` + + `No automatic fallback to default. ` + + `Check: Does a record exist in community_configs with community_id="${context.communityId}" and is_published=true?` + ); + } + } + + // Priority 2: Resolve from domain + let domain: string | undefined = context?.domain; + + if (!domain) { + // Read host header directly (no middleware needed) + try { + const { headers } = await import('next/headers'); + const headersList = await headers(); + const host = headersList.get('host') || headersList.get('x-forwarded-host'); + + if (host) { + // Import normalizeDomain to normalize the host + const { normalizeDomain } = await import('./loaders/registry'); + domain = normalizeDomain(host); + } + } catch (error) { + // Not in request context (static generation/build time) + // This should not happen if layout is set to dynamic + domain = undefined; + console.error(`[Config] Failed to read headers (not in request context):`, error); + } + } + + if (domain) { + const resolution = await getCommunityConfigForDomain(domain); + if (resolution) { + return resolution.config; + } + // Domain provided but config not found - fall back to default + console.error( + `[Config] Community config not found for domain: "${domain}", falling back to default: "${DEFAULT_COMMUNITY_ID}"` + ); + return await loadSystemConfigById(DEFAULT_COMMUNITY_ID); + } + + // Priority 3: Development override + if (process.env.NODE_ENV === 'development' && process.env.NEXT_PUBLIC_TEST_COMMUNITY) { + const devCommunityId = process.env.NEXT_PUBLIC_TEST_COMMUNITY; + if (process.env.NODE_ENV === 'development') { + console.log(`✅ Loading config for community: ${devCommunityId} (dev override)`); + } + return await loadSystemConfigById(devCommunityId); + } + + // No domain or communityId provided - fall back to default + // This should not happen at runtime if host header is available + // If this happens during build, the layout should be set to dynamic + console.error( + `[Config] No domain or communityId provided, falling back to default: "${DEFAULT_COMMUNITY_ID}"` + ); + return await loadSystemConfigById(DEFAULT_COMMUNITY_ID); +} + +// Export SystemConfig type (configs are now database-backed, no static exports) +export type { + SystemConfig, + CommunityErc20Token, + CommunityNftToken, + CommunityTokenNetwork, + CommunityTokensConfig, +}; + +// Space creators - re-export directly from Nouns implementations +import { + createInitialProfileSpaceConfigForFid as nounsCreateInitialProfileSpaceConfigForFid, + createInitialChannelSpaceConfig as nounsCreateInitialChannelSpaceConfig, + createInitialTokenSpaceConfigForAddress as nounsCreateInitialTokenSpaceConfigForAddress, + createInitalProposalSpaceConfigForProposalId as nounsCreateInitalProposalSpaceConfigForProposalId, + INITIAL_HOMEBASE_CONFIG as nounsINITIAL_HOMEBASE_CONFIG +} from './nouns/index'; + +export const createInitialProfileSpaceConfigForFid = nounsCreateInitialProfileSpaceConfigForFid; +export const createInitialChannelSpaceConfig = nounsCreateInitialChannelSpaceConfig; +export const createInitialTokenSpaceConfigForAddress = nounsCreateInitialTokenSpaceConfigForAddress; +export const createInitalProposalSpaceConfigForProposalId = nounsCreateInitalProposalSpaceConfigForProposalId; +export const INITIAL_HOMEBASE_CONFIG = nounsINITIAL_HOMEBASE_CONFIG; + +/** + * Create initial homebase config with user-specific data (e.g., wallet address) + * Note: Nouns implementation doesn't use userAddress, but kept for API compatibility + */ +export function createInitialHomebaseConfig(userAddress?: string) { + 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/loaders/index.ts b/src/config/loaders/index.ts new file mode 100644 index 000000000..63c36356d --- /dev/null +++ b/src/config/loaders/index.ts @@ -0,0 +1,19 @@ +/** + * Configuration loader system + * + * This module provides an interface for loading community configurations + * from the database at runtime. + * + * Usage: + * ```typescript + * import { loadSystemConfig } from '@/config'; + * const config = await loadSystemConfig(); + * ``` + * + * All communities use runtime loading from Supabase. + */ + +export * from './types'; +export * from './registry'; +export * from './runtimeLoader'; +export { getCommunityConfigForDomain, loadSystemConfigById, DEFAULT_COMMUNITY_ID } from './registry'; diff --git a/src/config/loaders/registry.ts b/src/config/loaders/registry.ts new file mode 100644 index 000000000..847a988d2 --- /dev/null +++ b/src/config/loaders/registry.ts @@ -0,0 +1,262 @@ +import { createSupabaseServerClient } from '@/common/data/database/supabase/clients/server'; +import { Database } from '@/supabase/database'; +import { SystemConfig } from '../systemConfig'; +import { themes } from '../shared/themes'; + +export const DEFAULT_COMMUNITY_ID = 'nounspace.com'; + +/** + * Special domain mappings + * + * Maps specific domains to community IDs, overriding normal domain resolution. + * Useful for staging environments, special domains, etc. + * + * Examples: + * - staging.nounspace.com -> nounspace.com + */ +const DOMAIN_TO_COMMUNITY_MAP: Record = { + 'staging.nounspace.com': DEFAULT_COMMUNITY_ID, +}; + +type CommunityConfigRow = Database['public']['Tables']['community_configs']['Row']; + +/** + * Cache entry for SystemConfig lookups. + * + * Keeps a short-lived in-memory cache to reduce Supabase round-trips when the + * same community is requested repeatedly (e.g., during navigation or asset loads). + * Caches the final SystemConfig (transformed and ready to use). + */ +type SystemConfigCacheEntry = { + expiresAt: number; + value: SystemConfig | null; +}; + +const SYSTEM_CONFIG_CACHE = new Map(); +const SYSTEM_CONFIG_CACHE_TTL_MS = 60_000; + +/** + * Resolve community ID from domain. + * Simple priority: special mapping → domain as-is + * Throws error if domain cannot be resolved (no default fallback). + */ +function resolveCommunityIdFromDomain(domain: string): string { + const normalizedDomain = normalizeDomain(domain); + + if (!normalizedDomain) { + throw new Error( + `❌ Cannot resolve community ID: domain "${domain}" normalized to empty string. ` + + `Domain must be a valid, non-empty value.` + ); + } + + // Priority 1: Special domain mappings (from DOMAIN_TO_COMMUNITY_MAP) + if (normalizedDomain in DOMAIN_TO_COMMUNITY_MAP) { + return DOMAIN_TO_COMMUNITY_MAP[normalizedDomain]; + } + + // Priority 3: Domain as community ID (e.g., example.nounspace.com → example.nounspace.com) + return normalizedDomain; +} + +/** + * Normalize an incoming domain/host value for consistent resolution. + * + * - Lowercases the domain + * - Strips any port numbers + * - Removes a leading `www.` prefix when present + */ +export function normalizeDomain(domain: string): string { + if (!domain) return ''; + + const host = domain.split(':')[0]?.trim().toLowerCase() ?? ''; + if (!host) return ''; + + return host.startsWith('www.') ? host.slice(4) : host; +} + + +/** + * Transform a database row to SystemConfig format. + * This replaces the RPC function transformation, done in application code. + */ +function transformRowToSystemConfig(row: CommunityConfigRow): SystemConfig { + return { + brand: row.brand_config as unknown as SystemConfig['brand'], + assets: row.assets_config as unknown as SystemConfig['assets'], + community: row.community_config as unknown as SystemConfig['community'], + fidgets: row.fidgets_config as unknown as SystemConfig['fidgets'], + navigation: (row.navigation_config ?? null) as unknown as SystemConfig['navigation'], + ui: (row.ui_config ?? null) as unknown as SystemConfig['ui'], + theme: themes, // Themes come from shared file, not database + }; +} + +/** + * Attempt to read a cached SystemConfig entry if it has not expired. + */ +function readSystemConfigCache(communityId: string): SystemConfig | null | undefined { + const entry = SYSTEM_CONFIG_CACHE.get(communityId); + if (!entry) return undefined; + + if (entry.expiresAt > Date.now()) { + return entry.value; + } + + SYSTEM_CONFIG_CACHE.delete(communityId); + return undefined; +} + +/** + * Store a SystemConfig value in the cache with a short TTL. + */ +function writeSystemConfigCache(communityId: string, value: SystemConfig | null) { + SYSTEM_CONFIG_CACHE.set(communityId, { + expiresAt: Date.now() + SYSTEM_CONFIG_CACHE_TTL_MS, + value, + }); +} + + +/** + * Fetch the SystemConfig for a given domain. + * + * Resolution priority: + * 1) Special domain mappings (DOMAIN_TO_COMMUNITY_MAP) + * 2) Domain as community_id (e.g., example.nounspace.com → community_id=example.nounspace.com) + * 3) Default fallback (nounspace.com) + * + * A short-lived in-memory cache is used to avoid repeated Supabase lookups for the same + * community during navigation bursts. Returns the final SystemConfig (transformed and ready to use). + */ +export async function getCommunityConfigForDomain( + domain: string +): Promise<{ communityId: string; config: SystemConfig } | null> { + // Resolve community ID from domain (throws if cannot resolve) + let communityId: string; + try { + communityId = resolveCommunityIdFromDomain(domain); + } catch (error) { + const errorMessage = error instanceof Error ? error.message : String(error); + console.error(`[Config] Failed to resolve community ID from domain "${domain}": ${errorMessage}`); + return null; + } + + // Check cache first + const cached = readSystemConfigCache(communityId); + if (cached) { + return { communityId, config: cached }; + } + + // Load config from database + const primaryConfig = await loadCommunityConfigFromDatabase(communityId); + if (primaryConfig) { + return { communityId, config: primaryConfig }; + } + + // Config not found - return null (caller will handle fallback) + return null; +} + +/** + * Core function to load a community config from the database. + * Returns null if not found, throws on validation errors. + * This is the single source of truth for database queries. + */ +async function loadCommunityConfigFromDatabase(communityId: string): Promise { + // Check cache first + const cached = readSystemConfigCache(communityId); + if (cached !== undefined) { + return cached; + } + + // Query Supabase + const supabase = createSupabaseServerClient(); + + const { data, error } = await supabase + .from('community_configs') + .select('*') + .eq('community_id', communityId) + .eq('is_published', true) + .order('updated_at', { ascending: false }) + .limit(1) + .maybeSingle(); + + if (error) { + // PGRST116 = no rows returned (legitimate not found) + const isNotFoundError = error.code === 'PGRST116'; + + if (isNotFoundError) { + // Legitimate "not found" - return null + return null; + } else { + // Transient/unknown error - return null to allow retries + console.error( + `❌ Failed to fetch community config (transient error) for communityId: "${communityId}". ` + + `Error code: ${error.code}, Message: ${error.message}. ` + + `This may be a network issue or database problem. Will retry on next request.`, + { communityId, error: error.message, code: error.code } + ); + return null; + } + } + + if (!data) { + // No data returned but no error - legitimate not found + return null; + } + + // Validate config structure - check all required fields + const requiredFields = ['brand_config', 'assets_config', 'community_config', 'fidgets_config'] as const; + const missingFields: string[] = []; + + for (const field of requiredFields) { + if (!data[field]) { + missingFields.push(field); + } + } + + if (missingFields.length > 0) { + // Invalid config structure - throw error (this is a data integrity issue) + throw new Error( + `❌ Invalid config structure for communityId: "${communityId}". ` + + `Missing required fields: ${missingFields.join(', ')}. ` + + `All community configs must have brand_config, assets_config, community_config, and fidgets_config. ` + + `Ensure database is seeded correctly or update the record.` + ); + } + + // Transform to SystemConfig + const systemConfig = transformRowToSystemConfig(data); + + // Cache the result + writeSystemConfigCache(communityId, systemConfig); + + return systemConfig; +} + +/** + * Load SystemConfig by community ID (when ID is already known). + * Throws an error if config is not found (use when config must exist). + */ +export async function loadSystemConfigById( + communityId: string +): Promise { + // Check cache first + const cached = readSystemConfigCache(communityId); + if (cached) { + return cached; + } + + const config = await loadCommunityConfigFromDatabase(communityId); + + if (!config) { + throw new Error( + `❌ Failed to load config from database for community: "${communityId}". ` + + `Check: Does a record exist in community_configs with community_id="${communityId}" and is_published=true?` + ); + } + + return config; +} + diff --git a/src/config/loaders/runtimeLoader.ts b/src/config/loaders/runtimeLoader.ts new file mode 100644 index 000000000..89d76b3e7 --- /dev/null +++ b/src/config/loaders/runtimeLoader.ts @@ -0,0 +1,24 @@ +import { ConfigLoader, ConfigLoadContext } from './types'; +import { SystemConfig } from '../systemConfig'; +import { loadSystemConfigById } from './registry'; + +/** + * Runtime config loader + * + * Simplified loader that uses the unified cache and loadSystemConfigById function. + * This eliminates the redundant RPC query since we now transform rows in application code. + */ +export class RuntimeConfigLoader implements ConfigLoader { + async load(context: ConfigLoadContext): Promise { + if (!context.communityId) { + throw new Error( + `❌ Community ID is required for runtime config loading. ` + + `Provide communityId in the load context.` + ); + } + + // Use the unified loadSystemConfigById which handles caching and transformation + return await loadSystemConfigById(context.communityId); + } +} + diff --git a/src/config/loaders/types.ts b/src/config/loaders/types.ts new file mode 100644 index 000000000..b38174422 --- /dev/null +++ b/src/config/loaders/types.ts @@ -0,0 +1,26 @@ +import { SystemConfig } from '../systemConfig'; + +/** + * Context for loading configuration + */ +export interface ConfigLoadContext { + /** Community ID (e.g., 'nouns', 'example') */ + communityId?: string; + /** Domain/hostname (e.g., 'nounspace.com', 'example.nounspace.com') */ + domain?: string; + /** Whether we're in a server-side context */ + isServer?: boolean; +} + +/** + * Interface for config loaders + */ +export interface ConfigLoader { + /** + * Load the system configuration + * @param context Context for loading (community, domain, etc.) + * @returns The loaded system configuration + */ + load(context: ConfigLoadContext): Promise; +} + 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..c4c9d3ac6 --- /dev/null +++ b/src/config/nouns/index.ts @@ -0,0 +1,17 @@ +// Export individual config pieces (used by seed scripts and page configs) +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 { nounsNavigation } from './nouns.navigation'; +export { nounsUI } from './nouns.ui'; + +// Export the initial space creators (used at runtime) +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/constants/initialChannelSpace.ts b/src/config/nouns/initialSpaces/initialChannelSpace.ts similarity index 94% rename from src/constants/initialChannelSpace.ts rename to src/config/nouns/initialSpaces/initialChannelSpace.ts index c30304239..3980bab28 100644 --- a/src/constants/initialChannelSpace.ts +++ b/src/config/nouns/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/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/constants/initialProposalSpace.ts b/src/config/nouns/initialSpaces/initialProposalSpace.ts similarity index 94% rename from src/constants/initialProposalSpace.ts rename to src/config/nouns/initialSpaces/initialProposalSpace.ts index 22853f051..38a507aa5 100644 --- a/src/constants/initialProposalSpace.ts +++ b/src/config/nouns/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 = ( @@ -61,22 +61,23 @@ export const createInitalProposalSpaceConfigForProposalId = ( fidgetType: "iframe", id: "iframe:1afc071b-ce6b-4527-9419-f2e057a9fb0a", }, - "iframe:ffb3cd56-3203-4b94-b842-adab9a7eabc9": { + "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9": { config: { editable: true, data: {}, settings: { - url: `https://chat-fidget.vercel.app/?room=prop%20${proposalId}%20chat&owner=${proposerAddress}`, - showOnMobile: true, - customMobileDisplayName: "Chat", background: "var(--user-theme-fidget-background)", - fidgetBorderWidth: "var(--user-theme-fidget-border-width)", + 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: "iframe", - id: "iframe:ffb3cd56-3203-4b94-b842-adab9a7eabc9", + fidgetType: "Chat", + id: "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9", }, }; @@ -132,7 +133,7 @@ export const createInitalProposalSpaceConfigForProposalId = ( h: 4, x: 4, y: 6, - i: "iframe:ffb3cd56-3203-4b94-b842-adab9a7eabc9", + i: "Chat:ffb3cd56-3203-4b94-b842-adab9a7eabc9", minW: 2, maxW: 36, minH: 2, 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/constants/initialTokenSpace.ts b/src/config/nouns/initialSpaces/initialTokenSpace.ts similarity index 98% rename from src/constants/initialTokenSpace.ts rename to src/config/nouns/initialSpaces/initialTokenSpace.ts index ed43d0db9..eaa096789 100644 --- a/src/constants/initialTokenSpace.ts +++ b/src/config/nouns/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"; @@ -14,6 +14,7 @@ export const createInitialTokenSpaceConfigForAddress = ( symbol: string, isClankerToken: boolean, network: EtherScanChainName = "base", + ownerAddress?: Address, ): Omit => { const config = cloneDeep(INITIAL_SPACE_CONFIG_EMPTY); @@ -152,6 +153,7 @@ export const createInitialTokenSpaceConfigForAddress = ( fidgetBorderWidth: "var(--user-theme-fidget-border-width)", fidgetShadow: "var(--user-theme-fidget-shadow)", roomName: address, + roomOwnerAddress: ownerAddress ?? "", }, }, fidgetType: "Chat", 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..a67540dc7 --- /dev/null +++ b/src/config/nouns/nouns.brand.ts @@ -0,0 +1,5 @@ +export const nounsBrand = { + displayName: "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..bffc76458 --- /dev/null +++ b/src/config/nouns/nouns.community.ts @@ -0,0 +1,35 @@ +import type { + CommunityConfig, + CommunityErc20Token, + CommunityNftToken, +} from "../systemConfig"; + +export const nounsCommunity = { + type: 'nouns', + urls: { + website: 'https://nouns.com', + discord: 'https://discord.gg/nouns', + }, + social: { + farcaster: 'nouns', + }, + governance: {}, + tokens: { + erc20Tokens: [ + { + address: '0x48C6740BcF807d6C47C864FaEEA15Ed4dA3910Ab', + symbol: '$SPACE', + decimals: 18, + network: 'base', + }, + ] satisfies CommunityErc20Token[], + nftTokens: [ + { + address: '0x9C8fF314C9Bc7F6e59A9d9225Fb22946427eDC03', + symbol: 'Nouns', + type: 'erc721', + network: 'eth', + }, + ] satisfies CommunityNftToken[], + }, +} 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/shared/themes.ts b/src/config/shared/themes.ts new file mode 100644 index 000000000..4c49f9df1 --- /dev/null +++ b/src/config/shared/themes.ts @@ -0,0 +1,12 @@ +// Shared theme definitions used across all communities +// Themes are stored here instead of in individual community configs or the database + +import { ThemeConfig } from '../systemConfig'; +import { nounsTheme } from '../nouns/nouns.theme'; + +// Export themes - all communities use the same theme definitions +export const themes: ThemeConfig = nounsTheme; + +// Also export as default for convenience +export default themes; + diff --git a/src/config/systemConfig.ts b/src/config/systemConfig.ts new file mode 100644 index 000000000..bf754498b --- /dev/null +++ b/src/config/systemConfig.ts @@ -0,0 +1,212 @@ +// This file contains only the SystemConfig interface +// Individual configurations are imported from their respective folders + +export type CommunityTokenNetwork = "mainnet" | "base" | "polygon" | "eth"; + +export interface CommunityErc20Token { + address: string; + name?: string; + symbol: string; + decimals: number; + network?: CommunityTokenNetwork; +} + +export interface CommunityNftToken { + address: string; + name?: 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; + navigation?: NavigationConfig; + ui?: UIConfig; + adminIdentityPublicKeys?: string[]; // identityPublicKey values of users who can edit nav pages +} + +export interface UIConfig { + url?: string; + fontColor?: string; + castButtonFontColor?: string; + backgroundColor?: string; + primaryColor: string; + primaryHoverColor: string; + primaryActiveColor: string; + castButton: { + backgroundColor: string; + hoverColor: string; + activeColor: string; + }; +} + +export interface BrandConfig { + displayName: 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 interface CommunityConfig { + type: string; + urls: { + website: string; + discord: string; + }; + social?: { + farcaster?: string; + }; + governance?: { + snapshotSpace?: string; + nounishGov?: string; + }; + tokens?: CommunityTokensConfig; +} + +export interface FidgetConfig { + enabled: string[]; + disabled: string[]; +} + +export interface NavPageConfig { + defaultTab: string; + tabOrder: string[]; + tabs: { + [key: string]: TabConfig; + }; + layout: { + defaultLayoutFidget: string; + gridSpacing: number; + theme: { + background: string; + fidgetBackground: string; + font: string; + fontColor: string; + }; + }; +} + +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; + spaceId?: string; // Optional reference to Space for page content (navPage type) +} + +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..6ba4bc135 100644 --- a/src/constants/metadata.ts +++ b/src/constants/metadata.ts @@ -1,32 +1,54 @@ import { WEBSITE_URL } from "@/constants/app"; +import { loadSystemConfig } from "@/config"; -export const defaultFrame = { - version: "next", - imageUrl: `${WEBSITE_URL}/images/nounspace_og_low.png`, - button: { - title: "Open Space", - action: { - type: "launch_frame", - url: WEBSITE_URL, - name: "Nouns", - splashImageUrl: `${WEBSITE_URL}/images/nounspace_logo.png`, - splashBackgroundColor: "#FFFFFF", - } +// Lazy-load config for module-level constants +// These are used in contexts where async isn't possible, so we cache after first load +let cachedConfig: Awaited> | null = null; + +async function getConfig() { + if (cachedConfig) { + return cachedConfig; } + cachedConfig = await loadSystemConfig(); + return cachedConfig; +} + +// Config loading is always async (from database) +// Usage: const frame = await getDefaultFrame(); +export async function getDefaultFrame() { + const config = await getConfig(); + return { + version: "next", + imageUrl: `${WEBSITE_URL}${config.assets.logos.og}`, + button: { + title: config.brand.displayName, + action: { + type: "launch_frame", + url: WEBSITE_URL, + 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_BUTTON_TITLE: 'Open Space', - APP_DESCRIPTION: 'The social hub for Nouns', - APP_SPLASH_IMAGE: 'https://www.nounspace.com/images/icon-192x192.png', - 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', -} \ No newline at end of file +export async function getMetadata() { + const config = await getConfig(); + return { + APP_NAME: config.brand.displayName, + APP_ICON: `${WEBSITE_URL}${config.assets.logos.icon}`, + APP_SUBTITLE: config.brand.description, + APP_BUTTON_TITLE: 'Open Space', + 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: `${WEBSITE_URL}${config.assets.logos.splash}`, + APP_TAGLINE: config.brand.description, + APP_OG_TITLE: config.brand.displayName, + APP_OG_DESCRIPTION: config.brand.description, + APP_OG_IMAGE: `${WEBSITE_URL}${config.assets.logos.og}`, + }; +} 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..fe240919b 100644 --- a/src/constants/nogs.ts +++ b/src/constants/nogs.ts @@ -1 +1,13 @@ -export const NOGS_CONTRACT_ADDR = "0xD094D5D45c06c1581f5f429462eE7cCe72215616"; +const DEFAULT_NOGS_CONTRACT_ADDR = + process.env.NEXT_PUBLIC_NOGS_CONTRACT_ADDR || + process.env.NOGS_CONTRACT_ADDR || + "0xD094D5D45c06c1581f5f429462eE7cCe72215616"; + +// Export as async function - callers must await +export async function getNogsContractAddr(): Promise { + return DEFAULT_NOGS_CONTRACT_ADDR; +} + +// Legacy export for backward compatibility (will be a Promise) +// Migrate to getNogsContractAddr() instead +export const NOGS_CONTRACT_ADDR: Promise = Promise.resolve(DEFAULT_NOGS_CONTRACT_ADDR); diff --git a/src/constants/spaceToken.ts b/src/constants/spaceToken.ts index 2e4d770d0..32d55677f 100644 --- a/src/constants/spaceToken.ts +++ b/src/constants/spaceToken.ts @@ -1 +1,22 @@ -export const SPACE_CONTRACT_ADDR = "0x48c6740bcf807d6c47c864faeea15ed4da3910ab"; +import type { Address } from "viem"; +import { isAddress } from "viem"; + +const DEFAULT_SPACE_CONTRACT_ADDR = + (process.env.NEXT_PUBLIC_SPACE_CONTRACT_ADDR || + process.env.SPACE_CONTRACT_ADDR || + "0x48C6740BcF807d6C47C864FaEEA15Ed4dA3910Ab") as Address; + +// Export as async function - callers must await +export async function getSpaceContractAddr(): Promise
{ + if (!isAddress(DEFAULT_SPACE_CONTRACT_ADDR)) { + throw new Error( + "Invalid default SPACE contract address configured. Expected a checksummed 0x-prefixed address.", + ); + } + + return DEFAULT_SPACE_CONTRACT_ADDR; +} + +// Legacy export for backward compatibility (will be a Promise) +// Migrate to getSpaceContractAddr() instead +export const SPACE_CONTRACT_ADDR: Promise
= getSpaceContractAddr(); diff --git a/src/constants/themes.ts b/src/constants/themes.ts index 43622fc21..b721c93f0 100644 --- a/src/constants/themes.ts +++ b/src/constants/themes.ts @@ -9,197 +9,73 @@ import { retro, nounish, } from "./animatedBackgroundsHtml"; +import { themes } from "@/config/shared/themes"; +// Use themes from shared file (not from config, since themes are shared across communities) +// Convert configuration themes to the expected format export const THEMES = [ + themes.default, { - id: "default", - name: "Default", + ...themes.gradientAndWave, 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", - properties: { - font: "Lato", - fontColor: "#FFFFFF", - headingsFont: "Lato", - headingsFontColor: "#FFFFFF", - background: "rgba(101,0,94,1)", + ...themes.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", + ...themes.colorBlobs, properties: { - font: "Quicksand", - fontColor: "#000000", - headingsFont: "Roboto", - headingsFontColor: "#000000", - background: "#fbe9e0", + ...themes.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", + ...themes.floatingShapes, properties: { - font: "Anek Latin", - fontColor: "#FFFFFF", - headingsFont: "Anek Latin", - headingsFontColor: "#FFFFFF", - background: "#4e54c8", + ...themes.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", + ...themes.imageParallax, properties: { - font: "Inter", - fontColor: "#FFFFFF", - headingsFont: "Poppins", - headingsFontColor: "#FFFFFF", - background: "#000000", + ...themes.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", + ...themes.shootingStar, properties: { - font: "Trispace", - fontColor: "#FDF6B2", - headingsFont: "Goldman", - headingsFontColor: "#FACA15", - background: "#000000", + ...themes.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", + ...themes.squareGrid, properties: { - font: "Inter", - fontColor: "#FFFFFF", - headingsFont: "Oswald", - headingsFontColor: "#FFFFFF", - background: "#4A1D96", + ...themes.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", + ...themes.tesseractPattern, properties: { - font: "Exo", - fontColor: "#000000", - headingsFont: "Work Sans", - headingsFontColor: "#000000", - background: "#FFFFFF", + ...themes.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", + ...themes.retro, properties: { - font: "IBM Plex Mono", - fontColor: "#333333", - headingsFont: "IBM Plex Mono", - headingsFontColor: "#000000", - background: "#ffffff", + ...themes.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", + ...themes.nounish, properties: { - font: "Londrina Solid", - fontColor: "#333333", - headingsFont: "Work Sans", - headingsFontColor: "#000000", - background: "#ffffff", + ...themes.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/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 ( +