Skip to content

Commit

Permalink
feat: udpate
Browse files Browse the repository at this point in the history
  • Loading branch information
linstohu committed Oct 18, 2023
1 parent d45295a commit 558a21f
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 4 deletions.
15 changes: 15 additions & 0 deletions bybit/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Bybit

## About Bybit

Bybit is a cryptocurrency centralized exchange (CEX) that offers a professional platform featuring an ultra-fast matching engine, quality customer service and multilingual community support for crypto traders of all levels. Established in March 2018, Bybit currently serves more than 10 million users and institutions offering access to over 100 assets and contracts across Spot and crypto derivatives like Futures and Options, launchpad projects, earn products, an NFT Marketplace and more.

The platform offers the following products: Spot, Derivatives (USDT perpetuals, USDC perps, inverse perps, futures, USDC options, leveraged tokens), NFT marketplace, Bybit Earn, Buy Crypto and Options.

## Official Site

- homepage: https://www.bybit.com/

## API Documents

https://bybit-exchange.github.io/docs/v5/intro
7 changes: 4 additions & 3 deletions deribit/rest/private_req.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@ func (d *DeribitRestClient) checkAuth() error {
}

func (d *DeribitRestClient) genAuthHeaders() map[string]string {
ret := DefaultContentType
ret["Authorization"] = fmt.Sprintf("Bearer %s", d.auth.token)
return ret
return map[string]string{
"Content-Type": "application/json",
"Authorization": fmt.Sprintf("Bearer %s", d.auth.token),
}
}

func (d *DeribitRestClient) GetAccountSummary(ctx context.Context, param account.GetAccountSummaryParams) (*account.AccountSummary, error) {
Expand Down
5 changes: 4 additions & 1 deletion docs/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ NexAPI plans to integrate APIs from well-known cryptocurrency exchanges all arou
- [x] Binance
- [] Kraken
- [] KuCoin
- [] OKX
- [] Bybit
- [] OKX
- [] Bitfinex
- [] Gate.io
- [x] MEXC
- [x] Deribit
- [x] WOO X
15 changes: 15 additions & 0 deletions kraken/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Kraken

## About Kraken

Kraken is a US-based cryptocurrency exchange where users can buy, sell and trade various assets with relatively low commissions. Clients can also earn rewards through coin staking. The exchange has a leading level euro volume and liquidity and allows users to trade over 100 crypto assets and 7 fiat currencies, including USD, CAD, EUR, GBP, JPY, CHF and AUD, on-the-go with a web platform and mobile apps.

Founded in 2011, it was one of the first few crypto exchanges offering spot trading, derivatives and index products. Today, the company offers numerous products and services, including but not limited to: spot trading, margin trading, futures, indices, stakings, OTC and an upcoming non-fungible token (NFT) marketplace. The exchange serves over 8 million traders and institutional clients, and is backed by Digital Currency Group, Blockchain Capital, Tribe Capital, Hummingbird Ventures and more.

## Official Site

- homepage: https://www.kraken.com/

## API Documents

https://docs.kraken.com/
17 changes: 17 additions & 0 deletions kucoin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# KuCoin

## About KuCoin

KuCoin is a cryptocurrency exchange built with the mission to “facilitate the global free flow of digital value.” It claims to have an emphasis on intuitive design, simple registration process and high level of security. The platform supports futures trading, a built-in P2P exchange, the ability to purchase cryptocurrencies with a credit or debit card, and instant exchange services.

KuCoin was founded in 2017 by Michael, Eric, Top, Kent, John, Jack and Linda. The exchange officially launched in September 2017.

The company is international, headquartered in the Seychelles and offices in Hong Kong and Singapore, with more than 29 million users worldwide and a presence in over 200 countries.

## Official Site

- homepage: https://www.kucoin.com/

## API Documents

https://docs.kucoin.com/

0 comments on commit 558a21f

Please sign in to comment.