Skip to content

Commit

Permalink
Merge branch 'develop' into liquidity-threshould-changed-to-pool-price
Browse files Browse the repository at this point in the history
  • Loading branch information
benwolski authored Dec 27, 2024
2 parents 1aea979 + 564a679 commit b367e7c
Show file tree
Hide file tree
Showing 15 changed files with 548 additions and 452 deletions.
5 changes: 5 additions & 0 deletions src/ambient-utils/dataLayer/functions/getAuctionData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ export interface AuctionDataIF {
createdAt: number;
auctionLength: number;
filledClearingPriceInNativeTokenWei: string;
// @Ben: I'm making this optional for ease rn but I think it
// @Ben: ... should prolly be a non-optional property
createdBy?: `0x${string}`;

// user specific data received for account queries
userAddress?: string;
Expand All @@ -50,6 +53,8 @@ export interface AuctionDataIF {
qtyClaimedByUserInAuctionedTokenWei?: string | undefined;
qtyUnreturnedToUserInNativeTokenWei?: string | undefined;
qtyReturnedToUserInNativeTokenWei?: string | undefined;
nativeTokenCommitted?: string | undefined;
nativeTokenReward?: string | undefined;
}

// interface for auction status data used to generate auction details view
Expand Down
Loading

0 comments on commit b367e7c

Please sign in to comment.