Skip to content

Commit ecbb614

Browse files
committed
Merge branch 'release/4.6.1'
2 parents f320ab8 + 7a630ba commit ecbb614

59 files changed

Lines changed: 138 additions & 63 deletions

Some content is hidden

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# gate-api
22

33
Gate API v4
4-
- API version: 4.6.0
4+
- API version: 4.6.1
55

66
APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
77

@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>io.gate</groupId>
4242
<artifactId>gate-api</artifactId>
43-
<version>4.6.0</version>
43+
<version>4.6.1</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "io.gate:gate-api:4.6.0"
53+
compile "io.gate:gate-api:4.6.1"
5454
```
5555

5656
### Others
@@ -63,7 +63,7 @@ mvn clean package
6363

6464
Then manually install the following JARs:
6565

66-
* `target/gate-api-4.6.0.jar`
66+
* `target/gate-api-4.6.1.jar`
6767
* `target/lib/*.jar`
6868

6969
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'io.gate'
5-
version = '4.6.0'
5+
version = '4.6.1'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "io.gate",
44
name := "gate-api",
5-
version := "4.6.0",
5+
version := "4.6.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/FuturesTicker.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ Name | Type | Description | Notes
88
**last** | **String** | Last trading price | [optional]
99
**changePercentage** | **String** | Change percentage. | [optional]
1010
**totalSize** | **String** | Contract total size | [optional]
11+
**low24h** | **String** | Lowest trading price in recent 24h | [optional]
12+
**high24h** | **String** | Highest trading price in recent 24h | [optional]
1113
**volume24h** | **String** | Trade size in recent 24h | [optional]
1214
**volume24hBtc** | **String** | Trade volume in recent 24h in BTC | [optional]
1315
**volume24hUsd** | **String** | Trade volume in recent 24h in USD | [optional]
1416
**markPrice** | **String** | Recent mark price | [optional]
1517
**fundingRate** | **String** | Funding rate | [optional]
18+
**fundingRateIndicative** | **String** | Indicative Funding rate in next period | [optional]
1619
**indexPrice** | **String** | Index price | [optional]
1720
**quantoBaseRate** | **String** | Exchange rate of base currency and settlement currency in Quanto contract. Not existed in contract of other types | [optional]
1821

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>gate-api</artifactId>
66
<packaging>jar</packaging>
77
<name>gate-api</name>
8-
<version>4.6.0</version>
8+
<version>4.6.1</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>Java client for gateapi</description>
1111
<scm>

src/main/java/io/gate/gateapi/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Gate API v4
33
* APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
44
*
5-
* OpenAPI spec version: 4.6.0
5+
* OpenAPI spec version: 4.6.1
66
* Contact: support@mail.gate.io
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/io/gate/gateapi/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Gate API v4
33
* APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
44
*
5-
* OpenAPI spec version: 4.6.0
5+
* OpenAPI spec version: 4.6.1
66
* Contact: support@mail.gate.io
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -118,7 +118,7 @@ private void init() {
118118
json = new JSON();
119119

120120
// Set default User-Agent.
121-
setUserAgent("OpenAPI-Generator/4.6.0/java");
121+
setUserAgent("OpenAPI-Generator/4.6.1/java");
122122

123123
authentications = new HashMap<String, Authentication>();
124124
}

src/main/java/io/gate/gateapi/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Gate API v4
33
* APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
44
*
5-
* OpenAPI spec version: 4.6.0
5+
* OpenAPI spec version: 4.6.1
66
* Contact: support@mail.gate.io
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/io/gate/gateapi/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Gate API v4
33
* APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
44
*
5-
* OpenAPI spec version: 4.6.0
5+
* OpenAPI spec version: 4.6.1
66
* Contact: support@mail.gate.io
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/io/gate/gateapi/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Gate API v4
33
* APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf.
44
*
5-
* OpenAPI spec version: 4.6.0
5+
* OpenAPI spec version: 4.6.1
66
* Contact: support@mail.gate.io
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)