Skip to content

Commit

Permalink
sdk: add insuranceFuel to getFuelBonus return type (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpipta committed Jul 15, 2024
1 parent 5114bc3 commit b7e0f98
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions sdk/src/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -886,11 +886,12 @@ export class User {
includeSettled = true,
includeUnsettled = true
): {
depositFuel;
borrowFuel;
positionFuel;
takerFuel;
makerFuel;
depositFuel: BN;
borrowFuel: BN;
positionFuel: BN;
takerFuel: BN;
makerFuel: BN;
insuranceFuel: BN;
} {
const userAccount: UserAccount = this.getUserAccount();

Expand Down

0 comments on commit b7e0f98

Please sign in to comment.