From 15c1d5b84ad4c7c0acfe50b8cbed09c1229987e4 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 26 Jan 2021 16:19:00 +0000 Subject: [PATCH] added polka dot --- rustybot/src/currency.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rustybot/src/currency.rs b/rustybot/src/currency.rs index 0798c87..23ab15a 100644 --- a/rustybot/src/currency.rs +++ b/rustybot/src/currency.rs @@ -26,8 +26,13 @@ impl Symbol { pub const BTC: Symbol = Symbol::new_static("BTC"); pub const ETH: Symbol = Symbol::new_static("ETH"); pub const LTC: Symbol = Symbol::new_static("LTC"); + pub const DOT: Symbol = Symbol::new_static("DOT"); + + // Paper trading pub const TESTBTC: Symbol = Symbol::new_static("TESTBTC"); pub const TESTUSD: Symbol = Symbol::new_static("TESTUSD"); + + // Fiat coins pub const USD: Symbol = Symbol::new_static("USD"); pub const GBP: Symbol = Symbol::new_static("GBP"); pub const EUR: Symbol = Symbol::new_static("EUR");