Skip to content

Commit a6773bf

Browse files
authored
Merge pull request #230 from binance/generate_products_04052026
Generate products 04/05/2026
2 parents 5b88b35 + 0bc7878 commit a6773bf

268 files changed

Lines changed: 17227 additions & 1679 deletions

File tree

Some content is hidden

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

MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For Spot (Spot package):
3737
<dependency>
3838
<groupId>io.github.binance</groupId>
3939
<artifactId>binance-spot</artifactId>
40-
<version>10.0.0</version>
40+
<version>10.1.1</version>
4141
</dependency>
4242
```
4343

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Each connector is published as a separate maven dependency. For example:
5454
<dependency>
5555
<groupId>io.github.binance</groupId>
5656
<artifactId>binance-spot</artifactId>
57-
<version>10.0.0</version>
57+
<version>10.1.1</version>
5858
</dependency>
5959
```
6060

clients/algo/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## 1.2.2 - 2026-04-30
4+
45
- Update `binance/common` module to version `2.4.2`.
56

67
## 1.2.1 - 2025-08-07

clients/alpha/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## 1.0.1 - 2026-04-30
4+
45
- Update `binance/common` module to version `2.4.2`.
56

67
## 1.0.0 - 2026-01-20

clients/c2c/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
# Changelog
22

3+
## 3.0.0 - 2026-05-04
4+
5+
### Changed (1)
6+
7+
- Modified response for `getC2CTradeHistory()` (`GET /sapi/v1/c2c/orderMatch/listUserOrderHistory`):
8+
- property `unitPrice` added
9+
- property `payMethodName` added
10+
- property `fiatSymbol` added
11+
- property `fiat` added
12+
- property `commission` added
13+
- property `takerCommissionRate` added
14+
- property `orderStatus` added
15+
- property `takerAmount` added
16+
- property `additionalKycVerify` added
17+
- property `counterPartNickName` added
18+
- property `createTime` added
19+
- property `advNo` added
20+
- property `asset` added
21+
- property `totalPrice` added
22+
- property `tradeType` added
23+
- property `takerCommission` added
24+
- property `amount` added
25+
- property `orderNumber` added
26+
- property `code` deleted
27+
- property `data` deleted
28+
- property `message` deleted
29+
- property `success` deleted
30+
- property `total` deleted
31+
332
## 2.0.1 - 2026-04-30
33+
434
- Update `binance/common` module to version `2.4.2`.
535

636
## 2.0.0 - 2025-12-16

clients/c2c/docs/GetC2CTradeHistoryResponse.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,24 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**code** | **String** | | [optional] |
11-
|**message** | **String** | | [optional] |
12-
|**data** | [**List&lt;GetC2CTradeHistoryResponseDataInner&gt;**](GetC2CTradeHistoryResponseDataInner.md) | | [optional] |
13-
|**total** | **Long** | | [optional] |
14-
|**success** | **Boolean** | | [optional] |
10+
|**orderNumber** | **String** | | [optional] |
11+
|**advNo** | **String** | | [optional] |
12+
|**tradeType** | **String** | | [optional] |
13+
|**asset** | **String** | | [optional] |
14+
|**fiat** | **String** | | [optional] |
15+
|**fiatSymbol** | **String** | | [optional] |
16+
|**amount** | **String** | | [optional] |
17+
|**totalPrice** | **String** | | [optional] |
18+
|**unitPrice** | **String** | | [optional] |
19+
|**orderStatus** | **String** | | [optional] |
20+
|**createTime** | **Long** | | [optional] |
21+
|**commission** | **String** | | [optional] |
22+
|**takerCommissionRate** | **String** | | [optional] |
23+
|**takerCommission** | **String** | | [optional] |
24+
|**takerAmount** | **String** | | [optional] |
25+
|**counterPartNickName** | **String** | | [optional] |
26+
|**payMethodName** | **String** | | [optional] |
27+
|**additionalKycVerify** | **Long** | | [optional] |
1528

1629

1730

clients/c2c/docs/GetC2CTradeHistoryResponseDataInner.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

clients/c2c/docs/rest-api/migration-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ With the transition to a modularized structure, the Binance Connector has been s
2222
<dependency>
2323
<groupId>io.github.binance</groupId>
2424
<artifactId>binance-c2c</artifactId>
25-
<version>2.0.0</version>
25+
<version>3.0.0</version>
2626
</dependency>
2727
```
2828

@@ -91,7 +91,7 @@ by:
9191
<dependency>
9292
<groupId>io.github.binance</groupId>
9393
<artifactId>binance-c2c</artifactId>
94-
<version>2.0.0</version>
94+
<version>3.0.0</version>
9595
</dependency>
9696
```
9797

clients/c2c/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>binance-c2c</artifactId>
77
<name>c2c</name>
8-
<version>2.0.1</version>
8+
<version>3.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<parent>

clients/c2c/src/main/java/com/binance/connector/client/c2c/rest/JSON.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,6 @@ private static Class getClassByDiscriminator(
111111
gsonBuilder.registerTypeAdapterFactory(
112112
new com.binance.connector.client.c2c.rest.model.GetC2CTradeHistoryResponse
113113
.CustomTypeAdapterFactory());
114-
gsonBuilder.registerTypeAdapterFactory(
115-
new com.binance.connector.client.c2c.rest.model.GetC2CTradeHistoryResponseDataInner
116-
.CustomTypeAdapterFactory());
117114
gson = gsonBuilder.create();
118115
}
119116

0 commit comments

Comments
 (0)