Skip to content

Commit

Permalink
Merge pull request #52 from binance/rc-v4.1.0
Browse files Browse the repository at this point in the history
Release v4.1.0
  • Loading branch information
alplabin authored Jun 18, 2024
2 parents 89c1b63 + a312e7b commit 75a2394
Show file tree
Hide file tree
Showing 122 changed files with 194 additions and 3,599 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ body:
description: "What version of .NET are you running?"
options:
- .NET Core 3.1.x
- .NET Framework 5.0.x
- .NET Framework 6.0.x
- .NET Framework 7.0.x
- .NET Framework 8.0.x
- Other (specify in environment)
validations:
required: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
operating-system: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET on 6.0.x, 7.0.x
- name: Setup .NET on 6.0.x, 7.0.x, 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,62 @@
# Changelog

## 4.1.0 - 2024-06-18
### Added
- New endpoints for Margin:
- `POST /sapi/v1/margin/borrow-repay`: Margin account borrow/repay
- `GET /sapi/v1/margin/borrow-repay`: Query borrow/repay records in Margin account

### Updated
- Updated dependencies versions:
- `Microsoft.Extensions.Logging` to `8.0.0`
- `Microsoft.Extensions.Logging.Console` to `8.0.0`
- `Microsoft.Extensions.Logging.Abstractions` to `8.0.1`
- `BouncyCastle.Cryptograph` to `2.3.1`
- Margin:
- `GET /sapi/v1/margin/transfer`: add parameter `isolatedSymbol`
- `GET /sapi/v1/margin/allAssets`: add parameter `asset`
- `GET /sapi/v1/margin/allPairs`: add parameter `symbol`
- `GET /sapi/v1/margin/isolated/allPairs`: add parameter `symbol`

### Removed
- Bswap
- `GET /sapi/v1/bswap/pools`
- `GET /sapi/v1/bswap/liquidity`
- `POST /sapi/v1/bswap/liquidityAdd`
- `POST /sapi/v1/bswap/liquidityRemove`
- `GET /sapi/v1/bswap/liquidityOps`
- `GET /sapi/v1/bswap/quote`
- `POST /sapi/v1/bswap/swap`
- `GET /sapi/v1/bswap/swap`
- `GET /sapi/v1/bswap/poolConfigure`
- `GET /sapi/v1/bswap/addLiquidityPreview`
- `GET /sapi/v1/bswap/removeLiquidityPreview`
- `GET /sapi/v1/bswap/unclaimedRewards`
- `POST /sapi/v1/bswap/claimRewards`
- `GET /sapi/v1/bswap/claimedHistory`

- Margin
- `GET /sapi/v1/margin/isolated/pair`
- `POST /sapi/v1/margin/isolated/transfer`
- `GET /sapi/v1/margin/isolated/transfer`
- `GET /sapi/v1/margin/asset`
- `POST /sapi/v1/margin/loan`
- `GET /sapi/v1/margin/dribblet`
- `GET /sapi/v1/margin/loan`
- `GET /sapi/v1/margin/pair`
- `POST /sapi/v1/margin/repay`
- `GET /sapi/v1/margin/repay`
- `POST /sapi/v1/margin/transfer`

- Staking
- `GET /sapi/v1/staking/productList`
- `POST /sapi/v1/staking/purchase`
- `POST /sapi/v1/staking/redeem`
- `GET /sapi/v1/staking/position`
- `GET /sapi/v1/staking/stakingRecord`
- `POST /sapi/v1/staking/setAutoStaking`
- `GET /sapi/v1/staking/personalLeftQuota`

## 4.0.1 - 2023-10-04

### Updated
Expand Down
33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/AddLiquidityPreview_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/AddLiquidity_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/ClaimRewards_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/GetClaimedHistory_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/GetLiquidityInformationOfAPool_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/GetLiquidityOperationRecord_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/GetSwapHistory_Example.cs

This file was deleted.

33 changes: 0 additions & 33 deletions Examples/CSharp/BSwap/GetUnclaimedRewardsRecord_Example.cs

This file was deleted.

Loading

0 comments on commit 75a2394

Please sign in to comment.