Skip to content

Commit

Permalink
Add contract address and URL properties to BinanceUserAsset model (#1474
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nils2525 authored Feb 4, 2025
1 parent 3ec09e5 commit 94686a8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Binance.Net/Binance.Net.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19162,6 +19162,16 @@
Name
</summary>
</member>
<member name="P:Binance.Net.Objects.Models.Spot.BinanceNetwork.ContractAddress">
<summary>
Contract address
</summary>
</member>
<member name="P:Binance.Net.Objects.Models.Spot.BinanceNetwork.ContractAddressUrl">
<summary>
Contract address URL
</summary>
</member>
<member name="P:Binance.Net.Objects.Models.Spot.BinanceNetwork.Network">
<summary>
Network
Expand Down
10 changes: 10 additions & 0 deletions Binance.Net/Objects/Models/Spot/BinanceUserAsset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,16 @@ public record BinanceNetwork
[JsonPropertyName("name")]
public string Name { get; set; } = string.Empty;
/// <summary>
/// Contract address
/// </summary>
[JsonPropertyName("contractAddress")]
public string ContractAddress { get; set; } = string.Empty;
/// <summary>
/// Contract address URL
/// </summary>
[JsonPropertyName("contractAddressUrl")]
public string ContractAddressUrl { get; set; } = string.Empty;
/// <summary>
/// Network
/// </summary>
[JsonPropertyName("network")]
Expand Down

0 comments on commit 94686a8

Please sign in to comment.