-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcurrency.go
67 lines (46 loc) · 1.67 KB
/
currency.go
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Package goincheck is client for Coincheck Exchange API
package goincheck
// Pair shows exchange pairs.
type Pair string
const (
// BtcJpy is pair of BTC(Bitcoin) and Japanese yen.
BtcJpy Pair = "btc_jpy"
// EthJpy is pair of ETH(Ethereum) and Japanese yen.
EthJpy Pair = "eth_jpy"
// EtcJpy is pair of ETC(Ethereum Classic) and Japanese yen.
EtcJpy Pair = "etc_jpy"
// DaoJpy is pair of DAO and Japanese yen.
DaoJpy Pair = "dao_jpy"
// LskJpy is pair of Lsk(Lisk) and Japanese yen.
LskJpy Pair = "lsk_jpy"
// FctJpy is pair of FCT(Factom) and Japanese yen.
FctJpy Pair = "fct_jpy"
// XmrJpy is pair of XMR(Manero) and Japanese yen.
XmrJpy Pair = "xmr_jpy"
// RepJpy is pair of REP(Augur) and Japanese yen.
RepJpy Pair = "rep_jpy"
// XrpJpy is pair of XRP(Ripple) and Japanese yen.
XrpJpy Pair = "xrp_jpy"
// ZecJpy is pair of ZEC(Zcash) and Japanese yen.
ZecJpy Pair = "zec_jpy"
// BchJpy is pair of BCH(Bitcoin Cash) and Japanese yen.
BchJpy Pair = "bch_jpy"
// EthBtc is pair of ETH(Ethereum) and BTC(Bitcoin).
EthBtc Pair = "eth_btc"
// EtcBtc is pair of ETC(Ethereum Classic) and BTC(Bitcoin).
EtcBtc Pair = "etc_btc"
// LskBtc is pair of LSK(Lisk) and BTC(Bitcoin).
LskBtc Pair = "lsk_btc"
// FctBtc is pair of FCT(Factom) and BTC(Bitcoin).
FctBtc Pair = "fct_btc"
// XmrBtc is pair of XMR(Monero) and BTC(Bitcoin).
XmrBtc Pair = "xmr_btc"
// RerBtc is pair of REP(Augur) and BTC(Bitcoin).
RerBtc Pair = "rep_btc"
// XrpBtc is pair of XRP(Ripple) and BTC(Bitcoin).
XrpBtc Pair = "xrp_btc"
// ZecBtc is pair of ZEC(Zcash) and BTC(Bitcoin).
ZecBtc Pair = "zec_btc"
// BchBtc is pair of BCH(Bitcoin Cash) and BTC(Bitcoin).
BchBtc Pair = "bch_btc"
)