Account Demolisher

Overview

How Account Demolisher is built, what runs where, and where to find the detail.

Account Demolisher is a Next.js application that closes Stellar accounts. It runs almost entirely in the browser: discovery, plan generation, simulation, the allow-list check, the safety gates, and signing all happen client-side.

The server exists for three narrow jobs, none of which involve your key.

What runs where

Runs in the browserRuns on the server
Reading the account from HorizonCo-signing the mediator forward
Discovering DeFi positions on chainHolding a multisig signing request in memory
Generating and validating the planProxying the Soroswap aggregator
Simulating every Soroban node
Enforcing the contract allow-list
Signing and submitting transactions

Position discovery has no server-side proxy and needs no API key. Blend, Soroswap, and FxDAO are read directly from their contracts. Aquarius is the one protocol read through a REST API, and its on-chain event scan runs alongside as a second source.

Start here

How it works

Protocol

Security and reference

Source

github.com/bytemaster333/account-demolisher, Apache 2.0.

On this page