Big update introducing ghetto command interface, settings, database and howl.gg bet feed scraping

This commit is contained in:
barelyprofessional
2024-07-18 01:37:15 +10:00
parent 936bf743a5
commit d61a171e54
46 changed files with 2198 additions and 218 deletions

View File

@@ -0,0 +1,26 @@
namespace KfChatDotNetKickBot.Models;
public class PocketWatchModel
{
public required string Network { get; set; }
public required string Address { get; set; }
public required string Label { get; set; }
public required bool BypassGambaSeshPresenceDetection { get; set; }
public required int CheckIntervalSec { get; set; }
// Used internally to detect new transactions
public required DateTime LastChecked { get; set; } = DateTime.Now;
}
public class PocketWatchEventModel
{
public required string TransactionHash { get; set; }
public required DateTimeOffset Time { get; set; }
public required string Currency { get; set; }
public required string Effect { get; set; }
public required string Network { get; set; }
public required string Address { get; set; }
public required long Balance { get; set; }
public required float UsdRate { get; set; }
public required bool IsMempool { get; set; }
public required PocketWatchModel PocketWatch { get; set; }
}