├── .gitignore ├── .vscode └── launch.json ├── README.md ├── config.example.json ├── ecosystem.config.js ├── license.txt ├── package.json ├── prisma ├── migrations │ ├── 20231224075924_ │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── src ├── chain-specific │ └── osmosis │ │ └── osmosis-1.assetlist.json ├── config.ts ├── db.ts ├── helpers.ts ├── index.ts ├── integrations │ ├── coingecko.ts │ ├── icns.ts │ ├── telegram.ts │ ├── tokens.ts │ └── validators.ts ├── messages │ ├── index.ts │ ├── msgBeginRedelegate.ts │ ├── msgCreatePosition.ts │ ├── msgDelegate.ts │ ├── msgExec.ts │ ├── msgExecuteContract.ts │ ├── msgJoinExitPool.ts │ ├── msgSend.ts │ ├── msgSwapExactAmount.ts │ ├── msgUndelegate.ts │ └── msgWithdrawPosition.ts └── types.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/config.example.json -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20231224075924_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/prisma/migrations/20231224075924_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/chain-specific/osmosis/osmosis-1.assetlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/chain-specific/osmosis/osmosis-1.assetlist.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/db.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/integrations/coingecko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/integrations/coingecko.ts -------------------------------------------------------------------------------- /src/integrations/icns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/integrations/icns.ts -------------------------------------------------------------------------------- /src/integrations/telegram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/integrations/telegram.ts -------------------------------------------------------------------------------- /src/integrations/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/integrations/tokens.ts -------------------------------------------------------------------------------- /src/integrations/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/integrations/validators.ts -------------------------------------------------------------------------------- /src/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/index.ts -------------------------------------------------------------------------------- /src/messages/msgBeginRedelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgBeginRedelegate.ts -------------------------------------------------------------------------------- /src/messages/msgCreatePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgCreatePosition.ts -------------------------------------------------------------------------------- /src/messages/msgDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgDelegate.ts -------------------------------------------------------------------------------- /src/messages/msgExec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgExec.ts -------------------------------------------------------------------------------- /src/messages/msgExecuteContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgExecuteContract.ts -------------------------------------------------------------------------------- /src/messages/msgJoinExitPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgJoinExitPool.ts -------------------------------------------------------------------------------- /src/messages/msgSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgSend.ts -------------------------------------------------------------------------------- /src/messages/msgSwapExactAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgSwapExactAmount.ts -------------------------------------------------------------------------------- /src/messages/msgUndelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgUndelegate.ts -------------------------------------------------------------------------------- /src/messages/msgWithdrawPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/messages/msgWithdrawPosition.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seleniumforest/catsbot/HEAD/yarn.lock --------------------------------------------------------------------------------