From 0eddc3fba63486622dd8e8cc4d7b867f2a6a086b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=96ner?= Date: Wed, 9 Oct 2024 15:29:28 +0300 Subject: [PATCH] Update Program.cs --- OKX.Api.Examples/Program.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/OKX.Api.Examples/Program.cs b/OKX.Api.Examples/Program.cs index 6baf0363..85216c2e 100644 --- a/OKX.Api.Examples/Program.cs +++ b/OKX.Api.Examples/Program.cs @@ -3,19 +3,6 @@ internal class Program { static async Task Main(string[] args) - { - var ws = new OKXWebSocketApiClient(); - ws.SetApiCredentials("ab69cb97-05fb-430f-b880-49940796f86e", "BCD93B0F1C9BCB9C2BE3AD3E2BE53DCE", "bo1144167AZ*"); - - await ws.Account.SubscribeToAccountUpdatesAsync(data => - { - Console.WriteLine($"Account Balance: {data}"); - }, "BTC", 100); - - Console.WriteLine("Press any key to exit..."); - Console.ReadKey(); - } - static async Task Main2(string[] args) { #region Rest Api Client Examples var api = new OkxRestApiClient();