Skip to content

Commit

Permalink
Update static assets and symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
sonvister committed Feb 26, 2018
1 parent 1f12466 commit 65527f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Binance/Asset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class Asset : IComparable<Asset>, IEquatable<Asset>
/// <summary>
/// When the assets were last updated.
/// </summary>
public static readonly long LastUpdateAt = 1519515879017;
public static readonly long LastUpdateAt = 1519606189091;

public static readonly Asset ADA = new Asset("ADA", 8);
public static readonly Asset ADX = new Asset("ADX", 8);
Expand Down
2 changes: 1 addition & 1 deletion src/Binance/Symbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public sealed class Symbol : IComparable<Symbol>, IEquatable<Symbol>
/// <summary>
/// When the symbols (currency pairs) were last updated.
/// </summary>
public static readonly long LastUpdateAt = 1519515879017;
public static readonly long LastUpdateAt = 1519606189091;

// BTC
public static readonly Symbol ADA_BTC = new Symbol(SymbolStatus.Trading, Asset.ADA, Asset.BTC, (1.00000000m, 90000000.00000000m, 1.00000000m), (0.00000001m, 100000.00000000m, 0.00000001m), 0.00100000m, true, new List<OrderType> {OrderType.Limit,OrderType.LimitMaker,OrderType.Market,OrderType.StopLossLimit,OrderType.TakeProfitLimit});
Expand Down

0 comments on commit 65527f3

Please sign in to comment.