v1.1.51
1. [Revert] "Hide all chats" changes
2. [Fix] reorder pinned chat when hide all chats is enabled
Unread counters should be fixed now.
1. [Revert] "Hide all chats" changes
2. [Fix] reorder pinned chat when hide all chats is enabled
Unread counters should be fixed now.
[Update] Alert bot now also supports Kalshi markets!
https://v.redd.it/q1m7v3btxh3e1
Submitted November 27, 2024 at 09:05PM by SeaEstablishment1367
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1djek/update_alert_bot_now_also_supports_kalshi_markets/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/q1m7v3btxh3e1
Submitted November 27, 2024 at 09:05PM by SeaEstablishment1367
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1djek/update_alert_bot_now_also_supports_kalshi_markets/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Reddit
From the Kalshi community on Reddit: [Update] Alert bot now also supports Kalshi markets!
Explore this post and more from the Kalshi community
How to import on Telegram previously esporre chats
Hello, i rally need to import on Telegram a few chats i have previously exported from it (both in JSON and HTML) and possibile includono photos/videos/audio exc...Pls can you help me....?
Submitted November 28, 2024 at 01:23AM by Actual_Guard_1515
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1jadr/how_to_import_on_telegram_previously_esporre_chats/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hello, i rally need to import on Telegram a few chats i have previously exported from it (both in JSON and HTML) and possibile includono photos/videos/audio exc...Pls can you help me....?
Submitted November 28, 2024 at 01:23AM by Actual_Guard_1515
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1jadr/how_to_import_on_telegram_previously_esporre_chats/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
1644 groups and channels related to child abuse banned on November, 27.
Total this month: 47873
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 47873
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
122 terrorist bots and channels banned on November, 27.
Total this month: 15702
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 15702
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Freefaker
Anyne knows if freefaker is alive anywhere? Was the best bot
Submitted November 28, 2024 at 01:52PM by Logical_Chemistry148
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1vah3/freefaker/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Anyne knows if freefaker is alive anywhere? Was the best bot
Submitted November 28, 2024 at 01:52PM by Logical_Chemistry148
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h1vah3/freefaker/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
getting the same error I have give all necessary permission to bot but still
import loggingimport requestsimport asynciofrom telegram.error import TelegramErrorfrom typing import Finalfrom telegram import Updatefrom telegram import InlineKeyboardButton, InlineKeyboardMarkup, InputFilefrom telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes,CallbackQueryHandler,Updater,CallbackContext, CallbackContext, CallbackQueryHandlerlogging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',level=logging.INFO)logger = logging.getLogger(__name__)Token: Final = '7591235439:AAHGOmxO5QoCm-UwJdLtPEaciqAWBHdHBTA'url = f'https://api.telegram.org/bot{Token}/deleteWebhook'response = requests.get(url)print(response.json())GROUP_LINK = 'https://t.me/internalgrp' # Replace with your group's linkTARGET_GROUP_CHAT_ID = GROUP_LINK.split('/')[-1] # Extract username from the link# If the group is private, prefix with -100TARGET_GROUP_CHAT_ID = f"-100{TARGET_GROUP_CHAT_ID}" # Only if necessaryprint(TARGET_GROUP_CHAT_ID) # Output the group chat IDBotUserName: Final = '@CaesiumAirdopBot'# Commandsasync def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE): print("Starting command...") chat_id = update.effective_chat.id logger.info(f"Chat ID: {chat_id}") # Log the chat ID video_url = 'https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4' # Sample video URL caption = ("Welcome to participate in our airdrop! 🎉n" "n⬇️ <b>Please complete the tasks below to earn $50 worth of $CSM tokens.</b>n" "nℹ️ <b>About Caesium ($CSM):</b>n" "Caesium ($CSM) is a digital cryptocurrency built on the Binance Smart Chain. It offers fast, secure, and low-fee transactions and is designed to enable decentralised finance (DeFi) solutions and provide a seamless wallet experience.n" "nThe airdrop will end on [insert date] and every valid participant will be rewarded.n" "🗒 <b>Our Airdrop Rules:</b>n" "🔘 Follow our Telegram Channeln" "🔘 Join our Telegram Groupn" "🔘 Join the Alpha Returns Telegram Group: Alphareturnsn" "🔘 Follow us on Twittern" "🔘 Download the Caesium Wallet and complete KYC verification: Caesium Walletn" "🔘 Submit your Caesium Wallet Address.n" "🔘 Refer your friends and submit your sponsor coden" "n<b>Additional Tasks to Earn more</b>n" "n 🔘 Download Alpha Returns from the App Store or Google Play:n" "n • <a href='https://apps.apple.com/in/app/alpha-returns/id6479646239'>Apple Store</a>n" " • <a href='https://play.google.com/store/apps/details?id=com.caesiumlab.alphareturns&hl=en_IN'>Google Play</a>n" "nIf you have any questions, please ask in our Telegram Group." ) # Create keyboard buttons keyboard = [[InlineKeyboardButton("Join AirDrop", callback_data='join_airdrop')]] # Callback button reply_markup = InlineKeyboardMarkup(keyboard) # Create InlineKeyboardMarkup # Send the message with buttons await context.bot.send_video(chat_id, video=video_url, caption=caption, parse_mode='HTML', reply_markup=reply_markup) #Define the tasksTASKS = [ f"Task 1: Thank you for joining the AirDrop! 🎉nPlease follow the instructions to complete your participation.nnPlease join the target group to complete the task: {GROUP_LINK}", "Task 2: Follow us on Twitter: Caesium Twitter, retweet the pinned post & tag 3 friendsnnThen submit your Twitter username:nExample: @username", f"Task 3: Download the <b>Caesium Wallet complete the process of sign-up</b>, and complete KYC verification:nnSubmit your Caesium Wallet Address to confirm your participation.nn • [Caesium Wallet](https://caesiumwallet.app)", "Task 4:Complete your KYC to the Caesium Wallet to confirm your participation.nn **Submit the screenshot**", …
import loggingimport requestsimport asynciofrom telegram.error import TelegramErrorfrom typing import Finalfrom telegram import Updatefrom telegram import InlineKeyboardButton, InlineKeyboardMarkup, InputFilefrom telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes,CallbackQueryHandler,Updater,CallbackContext, CallbackContext, CallbackQueryHandlerlogging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',level=logging.INFO)logger = logging.getLogger(__name__)Token: Final = '7591235439:AAHGOmxO5QoCm-UwJdLtPEaciqAWBHdHBTA'url = f'https://api.telegram.org/bot{Token}/deleteWebhook'response = requests.get(url)print(response.json())GROUP_LINK = 'https://t.me/internalgrp' # Replace with your group's linkTARGET_GROUP_CHAT_ID = GROUP_LINK.split('/')[-1] # Extract username from the link# If the group is private, prefix with -100TARGET_GROUP_CHAT_ID = f"-100{TARGET_GROUP_CHAT_ID}" # Only if necessaryprint(TARGET_GROUP_CHAT_ID) # Output the group chat IDBotUserName: Final = '@CaesiumAirdopBot'# Commandsasync def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE): print("Starting command...") chat_id = update.effective_chat.id logger.info(f"Chat ID: {chat_id}") # Log the chat ID video_url = 'https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4' # Sample video URL caption = ("Welcome to participate in our airdrop! 🎉n" "n⬇️ <b>Please complete the tasks below to earn $50 worth of $CSM tokens.</b>n" "nℹ️ <b>About Caesium ($CSM):</b>n" "Caesium ($CSM) is a digital cryptocurrency built on the Binance Smart Chain. It offers fast, secure, and low-fee transactions and is designed to enable decentralised finance (DeFi) solutions and provide a seamless wallet experience.n" "nThe airdrop will end on [insert date] and every valid participant will be rewarded.n" "🗒 <b>Our Airdrop Rules:</b>n" "🔘 Follow our Telegram Channeln" "🔘 Join our Telegram Groupn" "🔘 Join the Alpha Returns Telegram Group: Alphareturnsn" "🔘 Follow us on Twittern" "🔘 Download the Caesium Wallet and complete KYC verification: Caesium Walletn" "🔘 Submit your Caesium Wallet Address.n" "🔘 Refer your friends and submit your sponsor coden" "n<b>Additional Tasks to Earn more</b>n" "n 🔘 Download Alpha Returns from the App Store or Google Play:n" "n • <a href='https://apps.apple.com/in/app/alpha-returns/id6479646239'>Apple Store</a>n" " • <a href='https://play.google.com/store/apps/details?id=com.caesiumlab.alphareturns&hl=en_IN'>Google Play</a>n" "nIf you have any questions, please ask in our Telegram Group." ) # Create keyboard buttons keyboard = [[InlineKeyboardButton("Join AirDrop", callback_data='join_airdrop')]] # Callback button reply_markup = InlineKeyboardMarkup(keyboard) # Create InlineKeyboardMarkup # Send the message with buttons await context.bot.send_video(chat_id, video=video_url, caption=caption, parse_mode='HTML', reply_markup=reply_markup) #Define the tasksTASKS = [ f"Task 1: Thank you for joining the AirDrop! 🎉nPlease follow the instructions to complete your participation.nnPlease join the target group to complete the task: {GROUP_LINK}", "Task 2: Follow us on Twitter: Caesium Twitter, retweet the pinned post & tag 3 friendsnnThen submit your Twitter username:nExample: @username", f"Task 3: Download the <b>Caesium Wallet complete the process of sign-up</b>, and complete KYC verification:nnSubmit your Caesium Wallet Address to confirm your participation.nn • [Caesium Wallet](https://caesiumwallet.app)", "Task 4:Complete your KYC to the Caesium Wallet to confirm your participation.nn **Submit the screenshot**", …
Forwarded from Telegram Tips
This media is not supported in your browser
VIEW IN TELEGRAM
Mini Apps: Gifts from Apps. Mini apps can use Telegram Stars on their balance to send gifts to users – for notable achievements and milestones.
Forwarded from Tips de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Mini apps: regalos de apps. Las mini apps pueden usar estrellas de Telegram de su saldo para enviar regalos a los usuarios, por alcanzar logros importantes e hitos.
This media is not supported in your browser
VIEW IN TELEGRAM
🆕 Profile Notes
📝 Keep track of important details with Profile Notes. This handy feature allows you to create personalized notes and reminders for any of your Telegram contacts.
💡 Add custom details, key insights, or helpful prompts to each contact's profile, so you never forget what matters most during your conversations.
🔐 Your notes are visible only to you and are stored exclusively on the device where you create them.
Time To Personalize Profiles With A Note!
More Features Here!
📝 Keep track of important details with Profile Notes. This handy feature allows you to create personalized notes and reminders for any of your Telegram contacts.
💡 Add custom details, key insights, or helpful prompts to each contact's profile, so you never forget what matters most during your conversations.
🔐 Your notes are visible only to you and are stored exclusively on the device where you create them.
Time To Personalize Profiles With A Note!
More Features Here!
Forwarded from Suggerimenti di Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Mini app: regali dalle app. Le mini app possono usare le Stelle di Telegram dal loro saldo per inviare regali agli utenti, per celebrare risultati e traguardi degni di nota.
https://nubybot.com/6852568202 free reface/DN bot
No text found
Submitted November 28, 2024 at 09:48PM by NvanityXv
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h25duf/httpsnubybotcom6852568202_free_refacedn_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
No text found
Submitted November 28, 2024 at 09:48PM by NvanityXv
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h25duf/httpsnubybotcom6852568202_free_refacedn_bot/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Looking for a telegram bot that tracks and notifies also SELL ORDERS. Tg is filled with buybots but I'm yet to find a sellbot for Solana tokens
Hey!Been setting up different buybots, but never se the option to setup sell bots, obviously they exist to create and keep up hype and tracking. Is there any bot that allows me to track sells also? Any other app outside telegram is usually slow with tracking.
Submitted November 29, 2024 at 08:53AM by Torkkiss
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h2gtg7/looking_for_a_telegram_bot_that_tracks_and/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hey!Been setting up different buybots, but never se the option to setup sell bots, obviously they exist to create and keep up hype and tracking. Is there any bot that allows me to track sells also? Any other app outside telegram is usually slow with tracking.
Submitted November 29, 2024 at 08:53AM by Torkkiss
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1h2gtg7/looking_for_a_telegram_bot_that_tracks_and/Backup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
142 terrorist bots and channels banned on November, 28.
Total this month: 15844
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
Total this month: 15844
Report terrorist content using the in-app 'Report' button or to abuse@telegram.org.
1766 groups and channels related to child abuse banned on November, 28.
Total this month: 49639
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Total this month: 49639
Report child abuse using the in-app 'Report' button or to stopCA@telegram.org.
Forwarded from Telegram Tips
This media is not supported in your browser
VIEW IN TELEGRAM
Mini Apps: Setting Emoji Status. Premium users can set an emoji status inside mini apps – or give apps permission to automatically change their status.
Mini apps can also integrate APIs from other services – updating your status when you're in a game🎮 or watching a movie 🍿 .
Similarly, location permissions can be used to instantly change your status from at work💼 to on vacation 🧳 .
Mini apps can also integrate APIs from other services – updating your status when you're in a game
Similarly, location permissions can be used to instantly change your status from at work
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Tips de Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Mini apps: establecer estados de emojis. Los usuarios de Premium pueden establecer un estado de emoji dentro de mini apps o pueden darle permiso a las apps para cambiar automáticamente su estado.
Las mini apps también pueden integrar la API de otros servicios, para actualizar tu estado cuando estás jugando🎮 o viendo una película 🍿 .
De manera similar, los permisos de ubicación pueden ser usados para cambiar al instante tu estado cuando estás en el trabajo💼 o de vacaciones 🧳 .
Las mini apps también pueden integrar la API de otros servicios, para actualizar tu estado cuando estás jugando
De manera similar, los permisos de ubicación pueden ser usados para cambiar al instante tu estado cuando estás en el trabajo
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Dicas do Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Etiqueta de Última Edição. Mensagens editadas exibem uma etiqueta de data e hora, indicando quando foram alteradas.
Em chats privados e grupos pequenos, recibos detalhados de leitura também são exibidos.
Em chats privados e grupos pequenos, recibos detalhados de leitura também são exibidos.