Solana NFT bot is a helpful bot for your Solana NFT projects.
This project is proudly sponsored by milktoast.world: An NFT project that aims to spread happiness and cheer.
If you find this project useful, please support us by give Milktoast a shoutout on twitter!
- Notify discord channel on each purchase in marketplaces.
- Support major marketplaces
- Docker >= v20.10
- If you're new to Docker, we recommend going through their get started page to gain a basic understanding of Docker before moving forward.
- A Solana RPC node/server - This is needed so the bot know where to call to fetch solana transactions. Here are some potential routes to get a node:
If you're new to docker, before starting I recommend
Run the following command with your own secrets replaced with your own configuration:
docker run --name nftbot -d -p 4000:4000 -e SOLANA_RPC=YOURRPCURL -e DISCORD_BOT_TOKEN=YOURDISCORDTOKEN -e SUBSCRIPTION_DISCORD_CHANNEL_ID=YOURCHANNELID -e SUBSCRIPTION_MINT_ADDRESS=YOURMINTADDRESS milktoastlab/solananftbot
Note: The command above is tested in linux/unix env only. You may have a different experience in Windows. Please check the documentation on how to run docker command in windows if you need any help.
View logs
docker logs ntfbot
To make sure the bot is working properly, use /test-sale-tx endpoint
curl "http://localhost:4000/test-sale-tx?signature={sale_transaction_signature}&channelId={discord_channel_id}"
In case of DiscordAPIError: Missing Access error, check if the bot has been invited to the channel. Go to the channel, click "Add members or roles" and add your bot account as a member.
Alternatively, you can run it using docker-compose:
Update .env
with your secret and run
docker-compose up -d bot
See here for more details on environment variables
View logs
docker-compose logs bot
- Node >= 16.6
- Yarn
yarn install
Follow the instructions here
yarn dev
Here are a list of environments you need to configure before running the NFT bot.
# RPC node url
SOLANA_RPC=
# Discord bot secret
DISCORD_BOT_TOKEN=
# The discord channel to notify
SUBSCRIPTION_DISCORD_CHANNEL_ID=
# Mint address to watch for sales
SUBSCRIPTION_MINT_ADDRESS=
https://github.com/milktoastlab/SolanaNFTBot/blob/main/.env
This is your discord bot secret. If you don't have a discord bot yet, you can create one following the instructions here: https://discordpy.readthedocs.io/en/stable/discord.html
Make sure your bot has the required permissions:
- View channels
- Read/Send messages
- Send messages
- Embed links
This is the ID of the discord channel you want to send notifications to. You will need to enable developer mode have access the channel IDs. Here are the instructions: https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-
This is the address that you want the Solana NFT bot to watch for notifications. It needs to be one of the creator addresses:
Note: Avoid personal addresses because it could detect unwanted sales.
SolanaNFTBot aim to support as many marketplaces are possible. Here is the instruction on how you can add support to other marketplaces.
Use src/lib/marketplaces/solsea.ts
as example
Use src/lib/marketplaces/solsea.test.ts
as example
src/lib/marketplaces/marketplaces.ts