TGViewer
Channel Public Channel
CCXT Announcements

CCXT Announcements

@ccxt_announcements

CryptoCurrency eXchange Trading Library Important Announcements
Subscribers
840
Photos
23
Videos
2
Links
117

Showing posts older than #122 · Back to latest

Older Posts 20 shown
Post #120
CCXT Announcements pinned «Hello, CCXT community! 👋 We're starting closed beta testing for a new product and would love to get your feedback. If you're interested in joining the first group of testers, take a minute to fill out this survey: 👉 https://ccxt.com/survey We'll be reaching…»
Post #119 801
Hello, CCXT community! 👋

We're starting closed beta testing for a new product and would love to get your feedback.

If you're interested in joining the first group of testers, take a minute to fill out this survey:

👉 https://ccxt.com/survey

We'll be reaching out to selected participants soon. Spots are limited, so we may not be able to invite everyone, but we really appreciate your interest and support!

Best regards,
The CCXT Team 👨‍💻
  • 🔥 10
  • ❤ 5
  • ⚡ 2
Post #118 679
Hello, CCXT community! 👋

We are happy to announce and integration of the Mudrex exchange in CCXT.

FIU-registered. Buy crypto with UPI and Trade spot & Futures at the lowest fees in India

This exchange is available in CCXT as of version 4.5.64. 🚀

Congrats, and welcome on board!
Yours, the CCXT Dev Team ✅
Mudrex Mudrex: Trade Bitcoin & Crypto on India's Best Crypto Exchange. Discover Mudrex, India’s best crypto trading app. FIU-registered, safe and secure. Buy crypto with UPI and Trade spot & Futures at the lowest fees in India.
  • 🔥 12
  • ❤ 5
  • 👍 2
Post #117 777
Hello CCXT Community 👋: ,

We've launched a completely new documentation website:

https://docs.ccxt.com/

Some highlights:
- Available in multiple languages
- Interactive playground for running CCXT examples directly in the browser
- Built-in AI assistant for questions and troubleshooting
- Reorganized and easier to navigate
- Structured to work better with modern AI coding tools

Check it out and let us know what you think

Best regards,
The CCXT Team ✅
  • ❤ 19
  • 🔥 17
Post #116 626
Hello, CCXT community! 👋
We are happy to announce the integration and partnership of the Extended exchange in CCXT as of version 4.5.57 🚀

**Extended replaces siloed markets with a unified margin system, enabling users to trade crypto and TradFi*

Usage is straightforward, just instantiate the Extended exchange as you would normally do with any other supported exchange and set apiKey and star key privateKey

exchange = ccxt.extended({
'apiKey': 'YYYYYYY'
'privateKey': 'XXXXXXX',
})


https://github.com/ccxt/ccxt/wiki/FAQ#how-to-use-the-extended-exchange-in-ccxt

*CCXT has joined the Extended Builder Codes program to help support the ongoing development and maintenance of the project, users trading on Extended via CCXT will incur an additional fee of 0.01%. Participation is entirely optional. *

Yours, the CCXT Dev Team ✅
extended.exchange Extended Exchange | One Margin for All Markets Extended replaces siloed markets with a unified margin system, enabling users to trade crypto and TradFi, use multiple assets as collateral, earn yield, and manage it all within a single account.
  • 👍 7
  • ❤ 3
Post #115 785
Hello, CCXT community! 👋

We're excited to announce the public release of the Java version of CCXT, starting from version 4.5.56 🎉

The API is designed to stay consistent with the other CCXT languages, while Java provides both synchronous and asynchronous versions of each unified method. For example:
- createOrder
- createOrderAsync

Java 21 or higher is required to build or consume the package

The package is available on Maven Central: https://central.sonatype.com/artifact/io.github.ccxt/ccxt

Install/Import

dependencies {
implementation("io.github.ccxt:ccxt:4.5.56")
}


Examples

        var exchange = new Binance();
exchange.apiKey = "your api key";
exchange.secret = "your secret";

var params = new HashMap<String, Object>();
// Sync Version
var order = exchange.createOrder("ETH/USDT", "market", "buy", 500.0, null, params);
// Async version
var orderAsync = exchange.createOrderAsync("ETH/USDT", "market", "buy", 500.0, null, params).get();


You can check some examples here: https://github.com/ccxt/ccxt/tree/master/java/examples

Thank you for using CCXT!

Yours, the CCXT Dev Team.
Maven Central Maven Central: io.github.ccxt:ccxt Discover ccxt in the io.github.ccxt namespace. Explore metadata, contributors, the Maven POM file, and more.
  • 👍 11
  • 🔥 6
  • ❤ 4
Post #114 711
Hello CCXT Community 👋 ,

We would like to inform you that, as of version v4.5.52, we’ve introduced important updates to the Aster integration in CCXT.
These changes simplify and improve usage but require updates to your existing setup.

As a result:
- authentication has been unified, only the L1 privateKey is required
- API upgraded to V3
- CCXT has joined the Aster Builder Codes program to help support the ongoing development and maintenance of the project, users trading on Aster via CCXT will incur an additional fee of 0.01% but participation is entirely optional.


Example:


exchange = ccxt.aster({
'privateKey': 'YOUR_L1_PRIVATE_KEY',
})



If you have any questions or require assistance, please do not hesitate to reach out to the CCXT team.

Thank you for your continued support.

Best regards,
The CCXT Team ✅
  • 👍 10
  • ❤ 4
Post #113 813
Hello CCXT Community 👋 ,

We would like to inform you that, as of version v4.5.50, we’ve introduced important updates to the Lighter integration in CCXT.
These changes simplify and improve usage but require updates to your existing setup (it's a breaking change).

As a result:
- authentication has been significantly simplified, only the L1 privateKey is now required
- apiKeyIndex, accountIndex values are now optional, if not available CCXT will generate them
- CCXT now uses the latest Lighter binaries, improving compatibility and performance, you can download them
- here https://github.com/ccxt/lighter-wasm
- or https://github.com/elliottech/lighter-python/tree/main/lighter/signers
- CCXT has joined the Lighter Builder Codes program to help support the ongoing development and maintenance of the project, users trading on Lighter via CCXT will incur an additional fee of 0.01% but participation is entirely optional.


Example:
lighter = ccxt.lighter({
'privateKey': 'YOUR_L1_PRIVATE_KEY',
})


Detailed instructions: https://github.com/ccxt/ccxt/wiki/FAQ#how-to-use-the-lighter-exchange-in-ccxt

If you have any questions or require assistance, please do not hesitate to reach out to the CCXT team.

Thank you for your continued support.

Best regards,
The CCXT Team ✅
GitHub GitHub - ccxt/lighter-wasm: Lighter Wasm/Binaries required for the CCXT integration Lighter Wasm/Binaries required for the CCXT integration - ccxt/lighter-wasm
  • ❤ 9
  • 👍 2
  • 🔥 1
Post #112 728
Hello, CCXT community! 👋

We are happy to announce and integration of the Weex exchange in CCXT.

WEEX exchange—trade Bitcoin, Ethereum & altcoins securely and easily, offering a 1000 BTC Protection Fund, fast token listings, and low-slippage trading.

This exchange is available in CCXT as of version 4.5.49. 🚀

Congrats, and welcome on board!
Yours, the CCXT Dev Team ✅
WEEX Sign Up, Login & Get Crypto Bonus | WEEX Register on WEEX Exchange today, enjoy your WEEX sign up bonus, and start trading WEEX coin with easy login and secure crypto trading platform access.
  • 👍 11
  • 💩 8
  • 🤮 4
  • 🤡 2
  • 🤣 2
  • 🔥 1
Post #111 795
Hello, CCXT community! 👋
We are happy to announce the integration and partnership of the Pacifica exchange in CCXT as of version 4.5.47 🚀

Pacifica is a next-generation hybrid perpetual exchange combining the best of CEX and DEX

Usage is straightforward, just instantiate the Pacifica exchange as you would normally do with any other supported exchange and set l1 privateKey and walletAddress of the wallet

exchange = ccxt.pacifica({
'walletAddress': 'YYYYYYY'
'privateKey': 'XXXXXXX',
})


CCXT has joined the Pacifica Builder Codes program to help support the ongoing development and maintenance of the project, users trading on Pacifica via CCXT will incur an additional fee of 0.01%. Participation is entirely optional.

Yours, the CCXT Dev Team ✅
Pacifica Pacifica | Decentralized Perpetual Exchange on Solana Trade perpetual futures with up to 50x leverage on Solana. Fast execution, deep liquidity, and low fees. The next generation of decentralized derivatives trading.
  • 👍 8
  • 🔥 3
Post #110 803
Hello CCXT Community 👋 ,

We would like to inform you that, as of version v4.4.45, the kucoin and kucoinfutures classes have been consolidated.

As a result:
- kucoin now supports both spot and perpetual/futures markets
- kucoinfutures remains available and continues to support perpetual/futures markets only

If you have any questions or require assistance, please do not hesitate to reach out to the CCXT team.

Thank you for your continued support.

Best regards,
The CCXT Team ✅
  • 👍 14
  • 🔥 6
  • ❤ 1
Post #109 854
Hello, CCXT community! 👋
We are happy to announce the integration and partnership of the GRVT exchange in CCXT as of version 4.5.44 🚀

From getting interest to growing what you've got, GRVT makes trading, investing, and earning more efficient. Your money, always working.

Usage is straightforward, just instantiate the GRVT exchange as you would normally do with any other supported exchange and set l1 privateKey of the wallet

exchange = ccxt.grvt({
'privateKey': 'XXXXXXX',
})

CCXT has joined the GRVT Builder Codes program to help support the ongoing development and maintenance of the project, users trading on GRVT via CCXT will incur an additional fee of 0.01%. Participation is entirely optional. If you prefer not to contribute via this fee, you can disable it at any time by setting exchange.options['builderFee'] = False

Yours, the CCXT Dev Team ✅
Grvt Grvt | Trade Crypto, Gold & Stocks 24/7. Trade & Earn Yield Trade gold, oil, stocks, and crypto perpetual futures, all while earning yield on your collateral. Fast, secure, non-custodial and private. Start on Grvt.
  • 👏 9
  • 👍 4
  • ❤ 2
Post #107 795
Hello, CCXT community! 👋

We are happy to announce and integration of the Lighter exchange in CCXT.

It works similarly to any other CCXT exchange, but it has some particularities that might be confusing for some users but we will explain it in detail.


Credentials requirements

Lighter requires the following :
- privateKey: the API key private key (hex) from Lighter’s API keys page, not the l1 privateKey (https://app.lighter.xyz/apikeys)
- apiKeyIndex in exchange.options: the index assigned to the API key you generated (typically 0–254) you can get it from the API Keys page as well
- accountIndex in exchange.options: — the Lighter internal account index (master account or sub-account). Each internal account has its own API key indices. You can checking by opening this link in the browser using your l1 address https://mainnet.zklighter.elliot.ai/api/v1/accountsByL1Address?l1_address=0xYOUR_ADDRESS_here

Example

lighter = ccxt.lighter({
'privateKey': 'XXXXXXX',
'options': {
'apiKeyIndex': 3,
'accountIndex': 715085
}
})


Dependencies requirements

Since the signing algorithms and structs are not supported natively in all languages CCXT is using the officially distributed binaries and interacting with them in order to do the signing process (via FFI/WASM), so depending on the language you need to provide a path for that binary.

Python/C#/PHP users:

- The binaries can be downloaded here: https://github.com/elliottech/lighter-python/tree/main/lighter/signers
- The path to the binary needs to be provided as libraryPath
- You need to choose the binary according to your OS/architecture (macos/linux/window and arm64 or amd64)

lighter = ccxt.lighter({
'options': {
'libraryPath': 'path/to/lighter-signer-linux-arm64.so',
}
})


Javascript/Typescript users

- CCXT is using the WASM binary built from the official package and it can be downloaded here https://github.com/ccxt/lighter-wasm or built from the source
- You also need to provide the path to exec_wasm.js, you can either download it from the same repo or check the path to your local file (assuming Go is installed)

lighter = ccxt.lighter({
'options': {
'libraryPath': '/user/cjg/Git/lighter-wasm/lighter.wasm',
'wasmExecPath': '/opt/homebrew/opt/go/libexec/lib/wasm/wasm_exec.js'
}
})


GO users

- Nothing is required, CCXT is consuming the official GO package you just need to provide the credentials


If you need help or encounter any difficulties during the process, the CCXT team is ready to assist you.

Detailed instructions: https://github.com/ccxt/ccxt/wiki/FAQ#how-to-use-the-lighter-exchange-in-ccxt

This exchange is available in CCXT as of version 4.5.41. 🚀

Congrats, and welcome on board!
Yours, the CCXT Dev Team ✅
app.lighter.xyz Lighter - Trade perpetuals with unmatched efficiency and security
  • 👍 10
  • ❤ 5
Post #106 797
Hello, CCXT community! 👋

New Unified ADL Methods Available!

We’re happy to share that CCXT version 4.5.40 now includes new unified Auto-Deleveraging (ADL) methods in the core CCXT library! These methods provide a consistent way to access ADL-related data across supported exchanges via the unified API.

These new unified methods are now part of the CCXT API:
fetchADLRank
fetchPositionADLRank
fetchPositionsADLRank


They make it easy to retrieve auto-deleverage rank information for one or multiple positions in a consistent way across exchanges.

At launch, these unified ADL methods are supported on Binance, Bybit, Kucoin, Bitmex, Htx, Phemex, Woo, Blofin and Delta.

Support for these ADL methods will continue to expand, more exchanges are being updated to expose this data through their unified CCXT interfaces in future releases.

Thank you for your continued support,
The CCXT Team. 🚀
  • 👍 11
  • ❤ 5
  • 🎉 2
Post #105 1.02K
Hello, CCXT community! 👋

We are happy to announce the integration of the Aster exchange in CCXT, the next-gen perp DEX for all traders.

Trade perpetuals on Aster, the top DEX with low fees, deep liquidity, multichain support, high leverage and yield.

This exchange is available in CCXT as of version 4.5.32.✅

Congrats, and welcome on board!
Yours, the CCXT Dev Team 🚀
Asterdex Aster - The next-gen perp DEX for all traders Trade perpetuals on Aster, the top DEX with low fees, deep liquidity, multichain support, high leverage and yield. Use Simple or Pro mode. Secure and non-custodial.
  • 👍 19
  • ❤ 4
Post #104 994
Hello, CCXT community! 👋

We are happy to announce and integration of the BYDFi exchange in CCXT.

BYDFi is a one-stop social trading platform for global investors

This exchange is available in CCXT as of version 4.5.30. ✅

Congrats, and welcome on board!
Yours, the CCXT Dev Team 🚀
BYDFi Invite & Earn Rewards | BYDFi Exclusive Mystery Box Invite friends to BYDFi and unlock exclusive rewards. New users get a mystery box worth up to $8,100 upon registration. Start trading, mining, and staking crypto with us today.
  • 👍 11
  • ❤ 2
Post #103 1.04K
Hello CCXT community 👋

We would like to inform Bybit users that CCXT has decided to change the endpoint used for placing independent stopLossPrice / takeProfitPrice orders.

Previously, these orders were placed using the trading-stop endpoint. After further analysis, we concluded that this endpoint does not align well with our unification standards and, since it does not return an orderId, it makes order tracking more difficult for users.

As a result, such orders will now be placed using the standard create-order endpoint.


    tp_order = await bybit.create_order(symbol, 'limit', 'sell', 50, 1.5, {"takeProfitPrice": 1.6}) # take profit order
sl_order = await bybit.create_order(symbol, 'limit', 'sell', 50, 0.24, {"stopLossPrice": 0.25}) # stop loss order


However, if you still want to use the previous endpoint (trading-stop) you can just provide tradingStopEndpoint: true in params and the behavior will remain unchanged

    tp_order = await bybit.create_order(symbol, 'limit', 'sell', 50, 1.5, {"takeProfitPrice": 1.6, "tradingStopEndpoint": true}) # take profit order
sl_order = await bybit.create_order(symbol, 'limit', 'sell', 50, 0.24, {"stopLossPrice": 0.25, "tradingStopEndpoint": true}) # stop loss order


- create-order: https://bybit-exchange.github.io/docs/v5/order/create-order
- trading-stop: https://bybit-exchange.github.io/docs/v5/position/trading-stop

This feature is available starting from CCXT v4.5.27.

As always, if you have any questions or need assistance, feel free to reach out to the CCXT team!

Thank you for your continued support,
The CCXT Team
bybit-exchange.github.io Place Order | Bybit API Documentation This endpoint supports to create the order for Spot, Margin trading, USDT perpetual, USDT futures, USDC perpetual, USDC futures, Inverse Futures and Options.
  • 🔥 11
  • ❤ 2
Post #102 711
Hello, CCXT community! 👋:

We are happy to announce and integration of the ZebPay exchange in CCXT.

India's one-stop shop to invest in bitcoin & altcoins.

This exchange is available in CCXT as of version 4.5.27. ✅

Congrats, and welcome on board!
Yours, the CCXT Dev Team 🚀
  • 👍 10
  • ❤ 5
  • 🔥 1
Older posts →
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →