forked from MatheusGrijo/BotStableArbitrageBINANCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Key.cs
42 lines (26 loc) · 840 Bytes
/
Key.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Created by SharpDevelop.
* User: mifus_000
* Date: 01/01/2018
* Time: 22:31
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
public class Key
{
//public static string keyA = "5weVqc6rmmLnMu8UMAQTCQHZdTh17kNqvBQiucmVy6DU5kBiXpg1oZPLbLs28avh";
//public static string secretA = "EhAfgobChuRkggzzXGUC1Tg5ziGVYBPQFOy3zDsoa56w2oHG1t9XOhwy8JShMo7L";
public static string keyA = "icdK0l8g3IpRpGFG6g2C1W9tpkoEWqeozqSUWA8eBVW94SXG97le7Wlnu8UpQ3xB";
public static string secretA = "Q0XXt56UtwUHSfHTdKedsF3IiJ8IL0nD29G7nQ6io8FDHikUU7aXB0Q5j5sFYUVT";
public static string getKey()
{
return keyA;
}
public static string getSecret()
{
return secretA;
}
}