Autonomous liquidity engine designed for Solana automated market makers. This system monitors transaction fee wallets, queries the Jupiter V6 swap routing API, and executes market orders to purchase target assets for immediate deflationary burning.
This protocol was conceptualized based on a systemic architecture hypothesis proposed by Andy Ayrey's Truth Terminal. The mechanic establishes a self-consuming cycle where a token absorbs and liquidates competing market capitalization pools to contract asset supply.
- package.json - Project manifest and package dependencies
- tsconfig.json - TypeScript compiler configuration settings
- .env.example - Template for network configurations and cryptographic credentials
- .gitignore - Asset exclusions pattern file for version control
- cannibal-buy-burn.mjs - JavaScript migration script for deployment execution
- src/index.ts - Core initialization script and main daemon execution loops
- src/config.ts - Central application settings and configuration management layer
- src/services/jupiter.ts - API client integration layer for Jupiter liquidity routers
- Clone this repository to your local system environment.
- Initialize environment settings:
cp .env.example .env
- Install the required Node.js package dependencies:
npm install
To spin up the execution script locally in a development container or shell:
npm run dev