diff --git a/README.md b/README.md
index f452bc6..2daaede 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
## *_Telegram Client API library written 100% in C# and .NET_*
-This library allows you to connect to Telegram and control a user programmatically (or a bot, but [Telegram.Bot](https://github.com/TelegramBots/Telegram.Bot) is much easier for that).
+This library allows you to connect to Telegram and control a user programmatically (or a bot, but [WTelegramBot](https://www.nuget.org/packages/WTelegramBot) is much easier for that).
All the Telegram Client APIs (MTProto) are supported so you can do everything the user could do with a full Telegram GUI client.
This ReadMe is a **quick but important tutorial** to learn the fundamentals about this library. Please read it all.
diff --git a/src/TL.Schema.cs b/src/TL.Schema.cs
index 5c2a947..5f4c554 100644
--- a/src/TL.Schema.cs
+++ b/src/TL.Schema.cs
@@ -5301,6 +5301,12 @@ namespace TL
public Peer peer;
public Reaction reaction;
}
+ /// See
+ [TLDef(0x5C65D358)]
+ public sealed partial class UpdateBroadcastRevenueTransactions : Update
+ {
+ public BroadcastRevenueBalances balances;
+ }
/// Updates state. See
[TLDef(0xA56C2A3E)]
diff --git a/src/TL.Table.cs b/src/TL.Table.cs
index 84b9dee..16bbb22 100644
--- a/src/TL.Table.cs
+++ b/src/TL.Table.cs
@@ -6,7 +6,7 @@ namespace TL
{
public static partial class Layer
{
- public const int Version = 179; // fetched 01/05/2024 09:06:44
+ public const int Version = 179; // fetched 07/05/2024 13:21:04
internal const int SecretChats = 144;
internal const int MTProto2 = 73;
internal const uint VectorCtor = 0x1CB5C415;
@@ -406,6 +406,7 @@ namespace TL
[0x07DF587C] = typeof(UpdateBotEditBusinessMessage),
[0xA02A982E] = typeof(UpdateBotDeleteBusinessMessage),
[0x1824E40B] = typeof(UpdateNewStoryReaction),
+ [0x5C65D358] = typeof(UpdateBroadcastRevenueTransactions),
[0xA56C2A3E] = typeof(Updates_State),
[0x5D75A138] = typeof(Updates_DifferenceEmpty),
[0x00F49CA0] = typeof(Updates_Difference),