Skip to content

Commit 3a6502c

Browse files
authored
Rename CryptoAPIs to CryptoExchangeAPIs 😬 (#52)
1 parent c049efe commit 3a6502c

File tree

203 files changed

+1043
-1041
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+1043
-1041
lines changed

‎CHANGELOG.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# CryptoAPIs.jl Changelog
1+
# CryptoExchangeAPIs.jl Changelog
22

3-
The latest version of this file can be found at the master branch of the [CryptoAPIs.jl repository](https://bhftbootcamp.github.io/CryptoAPIs.jl).
3+
The latest version of this file can be found at the master branch of the [CryptoExchangeAPIs.jl repository](https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl).

‎Project.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name = "CryptoAPIs"
1+
name = "CryptoExchangeAPIs"
22
uuid = "5e3d4798-c815-4641-85e1-deed530626d3"
3-
version = "0.27.0"
3+
version = "0.28.0"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

‎README.md‎

Lines changed: 47 additions & 47 deletions
Large diffs are not rendered by default.

‎docs/Project.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
CryptoAPIs = "5e3d4798-c815-4641-85e1-deed530626d3"
3+
CryptoExchangeAPIs = "5e3d4798-c815-4641-85e1-deed530626d3"

‎docs/make.jl‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
using CryptoAPIs
1+
using CryptoExchangeAPIs
22
using Documenter
33

4-
DocMeta.setdocmeta!(CryptoAPIs, :DocTestSetup, :(using CryptoAPIs); recursive = true)
4+
DocMeta.setdocmeta!(CryptoExchangeAPIs, :DocTestSetup, :(using CryptoExchangeAPIs); recursive = true)
55

66
makedocs(;
7-
modules = [CryptoAPIs],
8-
sitename = "CryptoAPIs.jl",
7+
modules = [CryptoExchangeAPIs],
8+
sitename = "CryptoExchangeAPIs.jl",
99
format = Documenter.HTML(;
10-
repolink = "https://github.com/bhftbootcamp/CryptoAPIs.jl",
11-
canonical = "https://bhftbootcamp.github.io/CryptoAPIs.jl",
10+
repolink = "https://github.com/bhftbootcamp/CryptoExchangeAPIs.jl",
11+
canonical = "https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl",
1212
edit_link = "master",
1313
assets = String["assets/favicon.ico"],
1414
sidebar_sitename = true,
@@ -39,7 +39,7 @@ makedocs(;
3939
)
4040

4141
deploydocs(;
42-
repo = "github.com/bhftbootcamp/CryptoAPIs.jl",
42+
repo = "github.com/bhftbootcamp/CryptoExchangeAPIs.jl",
4343
devbranch = "master",
4444
push_preview = true,
4545
)
-10.5 KB
Loading

‎docs/src/index.md‎

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
![terminal](assets/terminal.gif)
22

3-
# CryptoAPIs.jl
3+
# CryptoExchangeAPIs.jl
44

5-
CryptoAPIs is a library written in Julia that combines API wrappers from various exchanges, simplifying access to market 💹 data.
5+
CryptoExchangeAPIs is a library written in Julia that combines API wrappers from various exchanges, simplifying access to market 💹 data.
66

77
## Installation
88
If you haven't installed our [local registry](https://github.com/bhftbootcamp/Green) yet, do that first:
99
```
1010
] registry add https://github.com/bhftbootcamp/Green.git
1111
```
1212

13-
Then, to install CryptoAPIs, simply use the Julia package manager:
13+
Then, to install CryptoExchangeAPIs, simply use the Julia package manager:
1414
```
15-
] add CryptoAPIs
15+
] add CryptoExchangeAPIs
1616
```
1717

1818
## Supported Exchange APIs
@@ -31,134 +31,134 @@ Then, to install CryptoAPIs, simply use the Julia package manager:
3131
<td><img src="assets/aevo.png" alt="Aevo Logo" width="20" height="20"></td>
3232
<td><a href="https://www.aevo.xyz/">Aevo</a></td>
3333
<td><a href="https://api-docs.aevo.xyz/reference/overview">Futures</a></td>
34-
<td><a href="src/Aevo/Futures">CryptoAPIs.Aevo.Futures</a></td>
35-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Aevo/#Futures">Futures</a></td>
34+
<td><a href="src/Aevo/Futures">CryptoExchangeAPIs.Aevo.Futures</a></td>
35+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Aevo/#Futures">Futures</a></td>
3636
</tr>
3737
<tr>
3838
<td><img src="assets/binance.png" alt="Binance Logo" width="20" height="20"></td>
3939
<td><a href="https://www.binance.com/en/trade">Binance</a></td>
4040
<td><a href="https://binance-docs.github.io/apidocs/spot/en/">Spot</a></td>
41-
<td><a href="src/Binance/Spot">CryptoAPIs.Binance.Spot</a></td>
42-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Binance/#Spot">Spot</a></td>
41+
<td><a href="src/Binance/Spot">CryptoExchangeAPIs.Binance.Spot</a></td>
42+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Binance/#Spot">Spot</a></td>
4343
</tr>
4444
<tr>
4545
<td><img src="assets/binance.png" alt="Binance Logo" width="20" height="20"></td>
4646
<td><a href="https://www.binance.com/futures">Binance</a></td>
4747
<td><a href="https://binance-docs.github.io/apidocs/futures/en/#change-log">USD-M Futures</a></td>
48-
<td><a href="src/Binance/USDMFutures">CryptoAPIs.Binance.USDMFutures</a></td>
49-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Binance/#USDMFutures">USD-M Futures</a></td>
48+
<td><a href="src/Binance/USDMFutures">CryptoExchangeAPIs.Binance.USDMFutures</a></td>
49+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Binance/#USDMFutures">USD-M Futures</a></td>
5050
</tr>
5151
<tr>
5252
<td><img src="assets/binance.png" alt="Binance Logo" width="20" height="20"></td>
5353
<td><a href="https://www.binance.com/delivery">Binance</a></td>
5454
<td><a href="https://binance-docs.github.io/apidocs/delivery/en/">Coin-M Futures</a></td>
55-
<td><a href="src/Binance/CoinMFutures">CryptoAPIs.Binance.CoinMFutures</a></td>
56-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Binance/#CoinMFutures">Coin-M Futures</a></td>
55+
<td><a href="src/Binance/CoinMFutures">CryptoExchangeAPIs.Binance.CoinMFutures</a></td>
56+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Binance/#CoinMFutures">Coin-M Futures</a></td>
5757
</tr>
5858
<tr>
5959
<td><img src="assets/bitfinex.png" alt="Bitfinex Logo" width="20" height="20"></td>
6060
<td><a href="https://www.bitfinex.com/">Bitfinex</a></td>
6161
<td><a href="https://docs.bitfinex.com/docs/introduction">Spot</a></td>
62-
<td><a href="src/Bitfinex/Spot">CryptoAPIs.Bitfinex.Spot</a></td>
63-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Bitfinex/#Spot">Spot</a></td>
62+
<td><a href="src/Bitfinex/Spot">CryptoExchangeAPIs.Bitfinex.Spot</a></td>
63+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Bitfinex/#Spot">Spot</a></td>
6464
</tr>
6565
<tr>
6666
<td><img src="assets/bithumb.png" alt="Bithumb Logo" width="20" height="20"></td>
6767
<td><a href="https://m.bithumb.com/">Bithumb</a></td>
6868
<td><a href="https://apidocs.bithumb.com/">Spot</a></td>
69-
<td><a href="src/Bithumb/Spot">CryptoAPIs.Bithumb.Spot</a></td>
70-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Bithumb/#Spot">Spot</a></td>
69+
<td><a href="src/Bithumb/Spot">CryptoExchangeAPIs.Bithumb.Spot</a></td>
70+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Bithumb/#Spot">Spot</a></td>
7171
</tr>
7272
<tr>
7373
<td><img src="assets/bybit.png" alt="Bybit Logo" width="20" height="20"></td>
7474
<td><a href="https://www.bybit.com/en/trade/spot/BTC/USDT">Bybit</a></td>
7575
<td><a href="https://bybit-exchange.github.io/docs/">Spot</a></td>
76-
<td><a href="src/Bybit/Spot">CryptoAPIs.Bybit.Spot</a></td>
77-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Bybit/#Spot">Spot</a></td>
76+
<td><a href="src/Bybit/Spot">CryptoExchangeAPIs.Bybit.Spot</a></td>
77+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Bybit/#Spot">Spot</a></td>
7878
</tr>
7979
<tr>
8080
<td><img src="assets/coinbase.png" alt="Coinbase Logo" width="20" height="20"></td>
8181
<td><a href="https://www.coinbase.com/">Coinbase Exchange</a></td>
8282
<td><a href="https://docs.cloud.coinbase.com/exchange/reference/">Spot</a></td>
83-
<td><a href="src/Coinbase/Spot">CryptoAPIs.Coinbase.Spot</a></td>
84-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Coinbase/#Spot">Spot</a></td>
83+
<td><a href="src/Coinbase/Spot">CryptoExchangeAPIs.Coinbase.Spot</a></td>
84+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Coinbase/#Spot">Spot</a></td>
8585
</tr>
8686
<tr>
8787
<td><img src="assets/cryptocom.png" alt="Cryptocom Logo" width="20" height="20"></td>
8888
<td><a href="https://crypto.com/">Cryptocom</a></td>
8989
<td><a href="https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#introduction">Spot</a></td>
90-
<td><a href="src/Cryptocom/Spot">CryptoAPIs.Cryptocom.Spot</a></td>
91-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Cryptocom/#Spot">Spot</a></td>
90+
<td><a href="src/Cryptocom/Spot">CryptoExchangeAPIs.Cryptocom.Spot</a></td>
91+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Cryptocom/#Spot">Spot</a></td>
9292
</tr>
9393
<tr>
9494
<td><img src="assets/deribit.png" alt="Deribit Logo" width="20" height="20"></td>
9595
<td><a href="https://www.deribit.com/">Deribit</a></td>
9696
<td><a href="https://docs.deribit.com/">Common</a></td>
97-
<td><a href="src/Deribit/Common">CryptoAPIs.Deribit.Common</a></td>
98-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Deribit/#Common">Common</a></td>
97+
<td><a href="src/Deribit/Common">CryptoExchangeAPIs.Deribit.Common</a></td>
98+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Deribit/#Common">Common</a></td>
9999
</tr>
100100
<tr>
101101
<td><img src="assets/gateio.png" alt="Gateio Logo" width="20" height="20"></td>
102102
<td><a href="https://www.gate.io/">Gate.io</a></td>
103103
<td><a href="https://www.gate.io/docs/developers/apiv4/">Spot</a></td>
104-
<td><a href="src/Gateio/Spot">CryptoAPIs.Gateio.Spot</a></td>
105-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Gateio/#Spot">Spot</a></td>
104+
<td><a href="src/Gateio/Spot">CryptoExchangeAPIs.Gateio.Spot</a></td>
105+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Gateio/#Spot">Spot</a></td>
106106
</tr>
107107
<tr>
108108
<td><img src="assets/gateio.png" alt="Gateio Logo" width="20" height="20"></td>
109109
<td><a href="https://www.gate.io/">Gate.io</a></td>
110110
<td><a href="https://www.gate.io/docs/developers/apiv4/">Futures</a></td>
111-
<td><a href="src/Gateio/Futures">CryptoAPIs.Gateio.Futures</a></td>
112-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Gateio/#Futures">Futures</a></td>
111+
<td><a href="src/Gateio/Futures">CryptoExchangeAPIs.Gateio.Futures</a></td>
112+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Gateio/#Futures">Futures</a></td>
113113
</tr>
114114
<tr>
115115
<td><img src="assets/huobi.png" alt="Huobi Logo" width="20" height="20"></td>
116116
<td><a href="https://www.htx.com/">Huobi</a></td>
117117
<td><a href="https://www.htx.com/en-us/opend/newApiPages">Spot</a></td>
118-
<td><a href="src/Huobi/Futures">CryptoAPIs.Huobi.Spot</a></td>
119-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Huobi/#Spot">Spot</a></td>
118+
<td><a href="src/Huobi/Futures">CryptoExchangeAPIs.Huobi.Spot</a></td>
119+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Huobi/#Spot">Spot</a></td>
120120
</tr>
121121
<tr>
122122
<td><img src="assets/kraken.png" alt="Kraken Logo" width="20" height="20"></td>
123123
<td><a href="https://www.kraken.com/">Kraken</a></td>
124124
<td><a href="https://docs.kraken.com/rest/">Spot</a></td>
125-
<td><a href="src/Kraken/Spot">CryptoAPIs.Kraken.Spot</a></td>
126-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Kraken/#Spot">Spot</a></td>
125+
<td><a href="src/Kraken/Spot">CryptoExchangeAPIs.Kraken.Spot</a></td>
126+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Kraken/#Spot">Spot</a></td>
127127
</tr>
128128
<tr>
129129
<td><img src="assets/kucoin.png" alt="Kucoin Logo" width="20" height="20"></td>
130130
<td><a href="https://www.kucoin.com/">Kucoin</a></td>
131131
<td><a href="https://www.kucoin.com/docs/beginners/introduction">Spot</a></td>
132-
<td><a href="src/Kucoin/Spot">CryptoAPIs.Kucoin.Spot</a></td>
133-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Kucoin/#Spot">Spot</a></td>
132+
<td><a href="src/Kucoin/Spot">CryptoExchangeAPIs.Kucoin.Spot</a></td>
133+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Kucoin/#Spot">Spot</a></td>
134134
</tr>
135135
<tr>
136136
<td><img src="assets/kucoin.png" alt="Kucoin Logo" width="20" height="20"></td>
137137
<td><a href="https://www.kucoin.com/">Kucoin</a></td>
138138
<td><a href="https://www.kucoin.com/docs/beginners/introduction">Futures</a></td>
139-
<td><a href="src/Kucoin/Futures">CryptoAPIs.Kucoin.Futures</a></td>
140-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Kucoin/#Futures">Futures</a></td>
139+
<td><a href="src/Kucoin/Futures">CryptoExchangeAPIs.Kucoin.Futures</a></td>
140+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Kucoin/#Futures">Futures</a></td>
141141
</tr>
142142
<tr>
143143
<td><img src="assets/okex.png" alt="Okex Logo" width="20" height="20"></td>
144144
<td><a href="https://www.okx.com/">Okex</a></td>
145145
<td><a href="https://www.okx.com/docs-v5/en/">Spot</a></td>
146-
<td><a href="src/Okex/Spot">CryptoAPIs.Okex.Spot</a></td>
147-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Okex/#Spot">Spot</a></td>
146+
<td><a href="src/Okex/Spot">CryptoExchangeAPIs.Okex.Spot</a></td>
147+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Okex/#Spot">Spot</a></td>
148148
</tr>
149149
<tr>
150150
<td><img src="assets/poloniex.png" alt="Poloniex Logo" width="20" height="20"></td>
151151
<td><a href="https://poloniex.com/">Poloniex</a></td>
152152
<td><a href="https://api-docs.poloniex.com/spot">Spot</a></td>
153-
<td><a href="src/Poloniex/Spot">CryptoAPIs.Poloniex.Spot</a></td>
154-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Poloniex/#Spot">Spot</a></td>
153+
<td><a href="src/Poloniex/Spot">CryptoExchangeAPIs.Poloniex.Spot</a></td>
154+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Poloniex/#Spot">Spot</a></td>
155155
</tr>
156156
<tr>
157157
<td><img src="assets/upbit.png" alt="Upbit Logo" width="20" height="20"></td>
158158
<td><a href="https://upbit.com/">Upbit</a></td>
159159
<td><a href="https://global-docs.upbit.com/">Spot</a></td>
160-
<td><a href="src/Upbit/Spot">CryptoAPIs.Upbit.Spot</a></td>
161-
<td><a href="https://bhftbootcamp.github.io/CryptoAPIs.jl/stable/pages/Upbit/#Spot">Spot</a></td>
160+
<td><a href="src/Upbit/Spot">CryptoExchangeAPIs.Upbit.Spot</a></td>
161+
<td><a href="https://bhftbootcamp.github.io/CryptoExchangeAPIs.jl/stable/pages/Upbit/#Spot">Spot</a></td>
162162
</tr>
163163
</table>
164164
</body>

‎docs/src/pages/Aevo.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Aevo
22

33
```@docs
4-
CryptoAPIs.Aevo.AevoClient
5-
CryptoAPIs.Aevo.AevoAPIError
4+
CryptoExchangeAPIs.Aevo.AevoClient
5+
CryptoExchangeAPIs.Aevo.AevoAPIError
66
```
77

88
## Futures
99

1010
```@docs
11-
CryptoAPIs.Aevo.Futures.public_client
11+
CryptoExchangeAPIs.Aevo.Futures.public_client
1212
```
1313

1414
```@docs
15-
CryptoAPIs.Aevo.Futures.funding_rate
16-
CryptoAPIs.Aevo.Futures.product_stats
15+
CryptoExchangeAPIs.Aevo.Futures.funding_rate
16+
CryptoExchangeAPIs.Aevo.Futures.product_stats
1717
```

0 commit comments

Comments
 (0)