Skip to content

Commit

Permalink
Merge pull request #63 from blend-capital/fix-auction-data-interface
Browse files Browse the repository at this point in the history
Fix: AuctionData interface
  • Loading branch information
Ryang-21 authored Aug 8, 2024
2 parents dc1feac + 6967cb1 commit 92dfaf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blend-capital/blend-sdk",
"version": "1.3.0",
"version": "1.3.1",
"description": "Javascript SDK for the Blend Protocol",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/pool/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ function AuctionKeyToXDR(auctionKey?: AuctionKey): xdr.ScVal {
}

export interface AuctionData {
bid: Map<u32, i128>;
bid: Map<string, i128>;
block: u32;
lot: Map<u32, i128>;
lot: Map<string, i128>;
}

export type PoolDataKey =
Expand Down

0 comments on commit 92dfaf9

Please sign in to comment.