Skip to content

Commit

Permalink
[Feature] Add support for missing currencies and product types (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
riberk authored and dougdellolio committed Aug 21, 2019
1 parent 272ebf6 commit 7211575
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CoinbasePro/Shared/Types/Currency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public enum Currency
XTZ,
ZEC,
ZIL,
ZRX
ZRX,
ALGO,
LINK,
}
}
12 changes: 12 additions & 0 deletions CoinbasePro/Shared/Types/ProductType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,17 @@ public enum ProductType
RepEur,
[EnumMember(Value = "REP-BTC")]
RepBtc,
[EnumMember(Value = "ALGO-USD")]
AlgoUsd,
[EnumMember(Value = "BAT-ETH")]
BatEth,
[EnumMember(Value = "ETH-DAI")]
EthDai,
[EnumMember(Value = "LINK-ETH")]
LinkEth,
[EnumMember(Value = "LINK-USD")]
LinkUsd,
[EnumMember(Value = "ZEC-BTC")]
ZecBtc,
}
}

0 comments on commit 7211575

Please sign in to comment.