├── .env.template ├── .gitignore ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── data ├── collections.json └── marketplaces.json ├── environment.d.ts ├── nodemon.json ├── package.json ├── src ├── app.ts ├── contracts │ └── marketplace.ts ├── external │ ├── discord.ts │ └── twitter.ts ├── model │ ├── collection.ts │ ├── marketplace.ts │ ├── nft.ts │ └── transaction.ts └── utils │ ├── cache.ts │ ├── chainapi.ts │ ├── constants.ts │ ├── errorhandling.ts │ ├── stxprice.ts │ └── transformations.ts └── tsconfig.json /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | .DS_Store 4 | build/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/README.md -------------------------------------------------------------------------------- /data/collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/data/collections.json -------------------------------------------------------------------------------- /data/marketplaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/data/marketplaces.json -------------------------------------------------------------------------------- /environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/environment.d.ts -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/contracts/marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/contracts/marketplace.ts -------------------------------------------------------------------------------- /src/external/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/external/discord.ts -------------------------------------------------------------------------------- /src/external/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/external/twitter.ts -------------------------------------------------------------------------------- /src/model/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/model/collection.ts -------------------------------------------------------------------------------- /src/model/marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/model/marketplace.ts -------------------------------------------------------------------------------- /src/model/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/model/nft.ts -------------------------------------------------------------------------------- /src/model/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/model/transaction.ts -------------------------------------------------------------------------------- /src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/cache.ts -------------------------------------------------------------------------------- /src/utils/chainapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/chainapi.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/errorhandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/errorhandling.ts -------------------------------------------------------------------------------- /src/utils/stxprice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/stxprice.ts -------------------------------------------------------------------------------- /src/utils/transformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/src/utils/transformations.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakes-git/StacksNFTBot/HEAD/tsconfig.json --------------------------------------------------------------------------------