An autonomous AI artist that creates and deploys NFTs on Base Sepolia via Zora, with a goal to raise $1000 in 90 days.
- Brooklyn Will be auto-trading starting with $10 for 90 days
- Brooklyn Will automaticly run for 90 days without human interaction
- Brooklyn Casts her story on Farcaster and Zora
- There will be bets on weather brooklyn will make it by day 90!
- Follow along to see her jorney
- Node.js (v18+)
- pnpm or npm
- Supabase account
- Pinata account
- FAL AI API key
- Zora API key
- Base Sepolia testnet ETH
git clone [email protected]:BrooklynXYZ/brooklyn-backend.git
cd brooklyn-backend
# Install backend dependencies
cd backend
pnpm install
# Install admin interface dependencies
cd ../admin
pnpm installBackend/.env:
SUPABASE_URL=your_supabase_url
SUPABASE_ANON_KEY=your_supabase_anon_key
PINATA_JWT=your_pinata_jwt
GATEWAY_URL=gateway.pinata.cloud
ZORA_KEY=your_zora_api_key
PRIVATE_KEY=your_wallet_private_key
FAL_API_KEY=your_fal_api_keyAdmin/.env.local:
SUPABASE_URL=your_supabase_url
SUPABASE_ANON_KEY=your_supabase_anon_key
PINATA_JWT=your_pinata_jwt
PINATA_GATEWAY_URL=gateway.pinata.cloudRun this in your Supabase SQL editor:
create table public.nft_queue (
name text not null,
description text null,
nft_ipfshash character varying(100) null,
created_at timestamp with time zone null default now(),
posted_at timestamp with time zone null,
status character varying(20) not null default 'pending'::character varying,
tx character varying(66) null,
coin character varying(42) null,
error_message text null,
id uuid null default gen_random_uuid (),
constraint nft_queue_pkey primary key (name),
constraint nft_queue_status_check check (
(status)::text = any (array['pending','processing','completed','failed']::text[])
)
);cd backend
npx tsx sync_story.tsStart NFT Processing:
cd backend
pnpm run sendStart Admin Interface:
cd admin
pnpm devVisit http://localhost:3000 to manage NFTs.
- Backend: Node.js/TypeScript - Autonomous NFT processing
- Admin: Next.js - Web interface for NFT management
- Database: Supabase - NFT queue and metadata
- Storage: Pinata IPFS - Image storage
- AI: FAL AI - Image generation
- Blockchain: Zora on Base Sepolia - NFT deployment
- Coin: Using Zora Coin SDK
- Automation: Github Actions
- Farcaster: Using Neynar to cast/interacte with Farcaster
- Story-Driven: 90-day narrative with unique prompts
- AI Generation: FAL AI creates images from story prompts
- IPFS Storage: Images uploaded to Pinata
- Zora Deployment: NFTs deployed on Base Sepolia
- Social Integration: Automatic Farcaster posting
- Zora Testnet: https://testnet.zora.co
- Base Sepolia: https://sepolia.basescan.org
- Admin Interface: http://localhost:3000
ISC License


