SShortSingh.
Back to feed

Developer Builds Real-Time Whale Tracker for Polymarket Using Public API

0
·1 views

A developer built WhaleTrack, a tool that tracks the largest traders on Polymarket, the prediction market platform that recently surpassed $3.6 billion in trading volume. The app uses Polymarket's public leaderboard API to identify the top 10 traders by profit and loss, then monitors their recent activity every 60 seconds. It alerts users with a banner notification when any tracked wallet places a trade exceeding $5,000 within the last 10 minutes. Built over a single weekend using vanilla JavaScript and a Vercel serverless backend, the project attracted over 129 users in its first few days with no paid promotion. The developer plans to add email and push alerts, more whale wallets, and direct links to matching markets on Polymarket.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds Searchable HTTP Status Reference With Spring Boot Code Snippets

A developer has published a single-file, dependency-free web tool called HTTP Status Explorer that pairs every HTTP status code with the idiomatic Spring Boot snippet for returning it. The tool lets users search by code, name, or meaning, and filter by class, addressing a common mid-development question about which Spring mechanism to use. It also clarifies frequently confused code pairs such as 401 vs 403, 400 vs 422, and 301/302 vs 307/308 with practical guidance. Each entry explains when to use ResponseEntity, @ResponseStatus, ResponseStatusException, or framework-handled defaults. The project is available as a live demo on GitHub Pages and its source code is publicly hosted on GitHub.

0
ProgrammingDEV Community ·

ContextStream Aims to Give AI Dev Assistants Persistent Project Memory

A new AI development tool called ContextStream is designed to address a common frustration among software developers: having to re-explain their project context at the start of every AI session. Most current AI coding assistants lack persistent memory, requiring developers to repeatedly provide background on their decisions and codebase. ContextStream seeks to change this by retaining a continuous understanding of a project's history, past decisions, and lessons learned across sessions. The tool's developers claim this approach leads to faster decision-making, fewer repeated questions, and reduced time spent onboarding the assistant. The platform positions itself not merely as a utility but as a long-term collaborative teammate that grows alongside a project.

0
ProgrammingDEV Community ·

HTB Sorcery CTF: Rust Macro Flaw Enables Neo4j Cypher Injection Chain

A Hack The Box challenge called Sorcery demonstrates a multi-stage attack chain exploiting three CVEs across a Rust web app, Neo4j graph database, and Gitea instance. The first vulnerability involves a JWT authentication bypass where the server mistakenly uses its own public RSA key as an HMAC secret, allowing attackers to forge admin session tokens using publicly available key data. A second flaw in the code-search endpoint directly concatenates user input into Cypher queries, enabling injection attacks that can leak password hashes or trigger outbound network calls via Neo4j's APOC procedures. The third and most notable bug originates in a custom Rust derive macro that auto-generates Cypher query fragments from struct fields, where a subtle typo in the macro's AST traversal introduces an unsanitized field identifier into database queries. Together, the chain illustrates how a low-severity macro authoring mistake can escalate into full database compromise without ever directly accessing the Neo4j port.

0
ProgrammingDEV Community ·

ContextStream Aims to Give AI Coding Assistants Persistent Project Memory

A tool called ContextStream is being developed to address the loss of project context between AI-assisted coding sessions. Developers frequently lose time re-explaining decisions, correcting repeated suggestions, and hunting for notes that should be readily accessible. ContextStream stores project decisions, documentation, lessons, and plans, allowing AI assistants to resume work with full context rather than starting from scratch. The tool is designed to surface relevant context at the right moment during debugging, planning, or reviewing, rather than simply acting as passive storage. Its core goal is to reduce repeated work and improve continuity across coding sessions for individual developers and teams.

Developer Builds Real-Time Whale Tracker for Polymarket Using Public API · ShortSingh