forked from GaloyMoney/blink
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprice-overrides.yaml
61 lines (61 loc) · 2.13 KB
/
price-overrides.yaml
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
quotes:
- { code: "USD", symbol: "$", name: "US Dollar", flag: "🇺🇸" }
- { code: "JMD", symbol: "J$", name: "Jamaican Dollar", flag: "🇯🇲" }
- { code: "EUR", symbol: "€", name: "Euro", flag: "🇪🇺" }
- { code: "GBP", symbol: "£", name: "British Pound", flag: "🇬🇧" }
- { code: "HTG", symbol: "G", name: "Haitian Gourde", flag: "🇭🇹" }
- { code: "XCD", symbol: "$", name: "East Caribbean Dollar", flag: "🇦🇬" }
- { code: "ANG", symbol: "ƒ", name: "Netherlands Antillean Guilder", flag: "🇨🇼" }
- { code: "BSD", symbol: "$", name: "Bahamian Dollar", flag: "🇧🇸" }
- { code: "BBD", symbol: "$", name: "Barbadian Dollar", flag: "🇧🇧" }
- { code: "BZD", symbol: "BZ$", name: "Belize Dollar", flag: "🇧🇿" }
- { code: "KYD", symbol: "$", name: "Cayman Islands Dollar", flag: "🇰🇾" }
- { code: "CUP", symbol: "$", name: "Cuban Peso", flag: "🇨🇺" }
- { code: "DOP", symbol: "RD$", name: "Dominican Peso", flag: "🇩🇴" }
- { code: "TTD", symbol: "TT$", name: "Trinidad and Tobago Dollar", flag: "🇹🇹" }
exchanges:
- name: "Ibex"
enabled: true
quoteAlias: "USD"
base: "BTC"
quote: "USD"
provider: "ibex"
cron: "*/15 * * * * *"
config:
cacheSeconds: 180
- name: "bitfinex2"
enabled: true
quoteAlias: "USD"
base: "BTC"
quote: "USD"
excludedQuotes: ["USD"]
provider: "ccxt"
cron: "*/15 * * * * *"
- name: "kraken"
enabled: true
quoteAlias: "USD"
base: "BTC"
quote: "USD"
excludedQuotes: ["USD"]
provider: "ccxt"
cron: "*/20 * * * * *"
- name: "bitstamp"
enabled: true
quoteAlias: "USD"
base: "BTC"
quote: "USD"
excludedQuotes: ["USD"]
provider: "ccxt"
cron: "*/15 * * * * *"
- name: "free-currency-rates-usd"
enabled: true
quoteAlias: "*"
base: "USD"
quote: "*"
excludedQuotes: ["USD"]
provider: "free-currency-rates"
cron: "*/5 * * * * *"
config:
baseUrl: "https://cdn.jsdelivr.net/npm/@fawazahmed0/currency-api@latest/v1/currencies"
fallbackUrl: "https://currency-api.pages.dev/v1/currencies"
cacheSeconds: 1800