Skip to content

Commit

Permalink
added Unbonding property to the KrakenAllocatedAmount object (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasMichal authored Jun 26, 2024
1 parent d4c5a5a commit 353a4fc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Kraken.Net/Kraken.Net.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Kraken.Net/Objects/Models/KrakenAllocationsCursorPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,16 @@ public record KrakenAllocation
public record KrakenAllocatedAmount
{
/// <summary>
/// Bonding allocaitions
/// Bonding allocations
/// </summary>
[JsonProperty("bonding")]
public KrakenBondingAwarded Bonding { get; set; } = null!;
/// <summary>
/// Unbonding allocations
/// </summary>
[JsonProperty("unbonding")]
public KrakenBondingAwarded Unbonding { get; set; } = null!;
/// <summary>
/// Total allocations
/// </summary>
[JsonProperty("total")]
Expand Down

0 comments on commit 353a4fc

Please sign in to comment.