File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
v4-client-js/src/clients/modules Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ export class Get {
368368 * @description Get user leverage settings for a given subaccount
369369 * @returns User set leverage for all clob pairs
370370 */
371- async getUserLeverage (
371+ async getPerpetualMarketsLeverage (
372372 address : string ,
373373 subaccountNumber : number ,
374374 ) : Promise < ClobModule . QueryLeverageResponse > {
Original file line number Diff line number Diff line change @@ -629,13 +629,13 @@ export class Post {
629629 } ) ;
630630 }
631631
632- async updateLeverage (
632+ async updatePerpetualMarketsLeverage (
633633 subaccount : SubaccountInfo ,
634634 address : string ,
635635 entries : LeverageEntry [ ] ,
636636 broadcastMode ?: BroadcastMode ,
637637 ) : Promise < BroadcastTxAsyncResponse | BroadcastTxSyncResponse | IndexedTx > {
638- const msg = await this . updateLeverageMsg ( subaccount , address , entries ) ;
638+ const msg = await this . updatePerpetualMarketsLeverageMsg ( subaccount , address , entries ) ;
639639 return this . send (
640640 subaccount ,
641641 ( ) => Promise . resolve ( [ msg ] ) ,
@@ -646,7 +646,7 @@ export class Post {
646646 ) ;
647647 }
648648
649- async updateLeverageMsg (
649+ async updatePerpetualMarketsLeverageMsg (
650650 subaccount : SubaccountInfo ,
651651 address : string ,
652652 entries : LeverageEntry [ ] ,
You can’t perform that action at this time.
0 commit comments