├── 01-wallets-monitor ├── README.md ├── README_CN.md └── wallets-monitor │ ├── .env.example │ ├── eslint.config.mjs │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── pages │ └── api │ │ └── route.js │ ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ ├── schema.sql │ ├── scripts │ ├── heliusSetup.js │ └── run.js │ └── src │ ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── page.module.css │ ├── strategy │ ├── index.js │ └── messageTemplate.js │ └── utils │ ├── aiSummary.js │ ├── dexscreener.js │ ├── solPrice.js │ ├── swapProcessor.js │ ├── telegram.js │ ├── tweetApi.js │ ├── txParser.js │ └── txsAnalyzer.js ├── README.md ├── README_CN.md └── img ├── 01banner.png └── 01screenshot.png /01-wallets-monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/README.md -------------------------------------------------------------------------------- /01-wallets-monitor/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/README_CN.md -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/.env.example -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/eslint.config.mjs -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/jsconfig.json -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/next.config.mjs -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/package-lock.json -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/package.json -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/pages/api/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/pages/api/route.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/public/file.svg -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/public/globe.svg -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/public/next.svg -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/public/vercel.svg -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/public/window.svg -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/schema.sql -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/scripts/heliusSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/scripts/heliusSetup.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/scripts/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/scripts/run.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/app/favicon.ico -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/app/globals.css -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/app/layout.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/app/page.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/app/page.module.css -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/strategy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/strategy/index.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/strategy/messageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/strategy/messageTemplate.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/aiSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/aiSummary.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/dexscreener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/dexscreener.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/solPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/solPrice.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/swapProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/swapProcessor.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/telegram.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/tweetApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/tweetApi.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/txParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/txParser.js -------------------------------------------------------------------------------- /01-wallets-monitor/wallets-monitor/src/utils/txsAnalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/01-wallets-monitor/wallets-monitor/src/utils/txsAnalyzer.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/README_CN.md -------------------------------------------------------------------------------- /img/01banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/img/01banner.png -------------------------------------------------------------------------------- /img/01screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantVela/build-your-onchain-agent/HEAD/img/01screenshot.png --------------------------------------------------------------------------------