Skip to content

Commit 415ff0e

Browse files
committed
[Feature] Add trading/currency support for AAVE, BNT, SNX
1 parent 7ed7afa commit 415ff0e

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CoinbasePro/Shared/Types/Currency.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ public enum Currency
4646
CGLD,
4747
WBTC,
4848
NU,
49-
FIL
49+
FIL,
50+
AAVE,
51+
BNT,
52+
SNX
5053
}
5154
}

CoinbasePro/Shared/Types/ProductType.cs

+25-1
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,30 @@ public enum ProductType
231231
[EnumMember(Value = "FIL-GBP")]
232232
FilGbp,
233233
[EnumMember(Value = "FIL-BTC")]
234-
FilBtc
234+
FilBtc,
235+
[EnumMember(Value = "AAVE-USD")]
236+
AaveUsd,
237+
[EnumMember(Value = "AAVE-BTC")]
238+
AaveBtc,
239+
[EnumMember(Value = "AAVE-EUR")]
240+
AaveEur,
241+
[EnumMember(Value = "AAVE-GBP")]
242+
AaveGbp,
243+
[EnumMember(Value = "BNT-USD")]
244+
BntUsd,
245+
[EnumMember(Value = "BNT-BTC")]
246+
BntBtc,
247+
[EnumMember(Value = "BNT-EUR")]
248+
BntEur,
249+
[EnumMember(Value = "BNT-GBP")]
250+
BntGbp,
251+
[EnumMember(Value = "SNX-USD")]
252+
SnxUsd,
253+
[EnumMember(Value = "SNX-BTC")]
254+
SnxBtc,
255+
[EnumMember(Value = "SNX-EUR")]
256+
SnxEur,
257+
[EnumMember(Value = "SNX-GBP")]
258+
SnxGbp
235259
}
236260
}

0 commit comments

Comments
 (0)