@bulletxyz/bullet-sdk 0.26.2-rc.5 → 0.26.2-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +37 -5
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.js +37 -5
- package/dist/node/index.js.map +2 -2
- package/dist/types/client.d.ts +4 -3
- package/dist/types/rollupTypes.d.ts +16 -2
- package/package.json +1 -1
package/dist/types/client.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Connection } from "./connection";
|
|
|
4
4
|
import { type Endpoints } from "./constants";
|
|
5
5
|
import { ExchangeConnection } from "./exchange";
|
|
6
6
|
import type { RuntimeCall } from "./rollupTypes";
|
|
7
|
-
import { type Address, type AssetName, type MarkPriceUpdateArgs, type MarketName, type Network, type OraclePriceUpdateArgs, type PlaceOrderArgs, type PlacePositionTpslArgs, type TokenId } from "./types";
|
|
7
|
+
import { type Address, type AssetId, type AssetName, type MarkPriceUpdateArgs, type MarketName, type Network, type OraclePriceUpdateArgs, type PlaceOrderArgs, type PlacePositionTpslArgs, type TokenId } from "./types";
|
|
8
8
|
import type { Wallet } from "./wallet";
|
|
9
9
|
export interface TransactionOpts {
|
|
10
10
|
maxPriorityFeeBps: number;
|
|
@@ -185,8 +185,9 @@ export declare class Client {
|
|
|
185
185
|
depositToUsdcPnlPool(amount: Decimal): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
186
186
|
depositToInsuranceFund(amount: Decimal): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
187
187
|
initAssetMetadata(asset_id: number, assetName: string, tokenId: TokenId, decimals: number, withdrawFee: Decimal): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
initSpotMarket(marketId: number, baseAssetId: number, quoteAssetId: AssetId, baseMinLotSize: Decimal, quoteMinLotSize: Decimal, maxOrdersPerSide: number, takerFeesTenthBps: number[], makerFeesTenthBps: number[], name: string): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
189
|
+
initPerpMarket(marketId: number, baseAssetId: number, name: string, minTickSize: Decimal, minLotSize: Decimal, maxOrdersPerSide: number, minInterestRateClamp: Decimal, maxInterestRateClamp: Decimal, minFundingRateClamp: Decimal, maxFundingRateClamp: Decimal, impactMargin: Decimal, interestRate: Decimal, initLeverageTableArgs: Map<Decimal, number>, takerFeesTenthBps: number[], makerFeesTenthBps: number[]): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
190
|
+
initBorrowLendPool(assetId: number, optimalUtilisationRate: Decimal, minBorrowRate: Decimal, maxBorrowRate: Decimal, optimalBorrowRate: Decimal, assetWeight: Decimal, initialLiabilityWeight: Decimal, maintenanceLiabilityWeight: Decimal, depositLimit: Decimal, borrowLimit: Decimal, liquidationTotalRewardRatio: Decimal, protocolRewardRatio: Decimal, liabilityLiquidationLimitRatio: Decimal, interestFeeTenthBps: number): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
190
191
|
updateBorrowLendMarket(asset: AssetName, optimalUtilisationRate: Decimal | null, minBorrowRate: Decimal | null, maxBorrowRate: Decimal | null, optimalBorrowRate: Decimal | null, assetWeight: Decimal | null, initialLiabilityWeight: Decimal | null, maintenanceLiabilityWeight: Decimal | null, depositLimit: Decimal | null, borrowLimit: Decimal | null, liquidationRewardRatio: Decimal | null, liabilityLiquidationLimitRatio: Decimal | null): Promise<TransactionResult<Transaction<RuntimeCall>>>;
|
|
191
192
|
}
|
|
192
193
|
export {};
|
|
@@ -186,6 +186,19 @@ type ExchangeCallMessage = {
|
|
|
186
186
|
withdraw_fee: number;
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
|
+
init_spot_market: {
|
|
190
|
+
args: {
|
|
191
|
+
market_id: MarketId;
|
|
192
|
+
base_asset_id: AssetId;
|
|
193
|
+
quote_asset_id: AssetId;
|
|
194
|
+
base_min_lot_size: number;
|
|
195
|
+
quote_min_lot_size: number;
|
|
196
|
+
max_orders_per_side: number;
|
|
197
|
+
taker_fees_tenth_bps: number[];
|
|
198
|
+
maker_fees_tenth_bps: number[];
|
|
199
|
+
name: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
189
202
|
init_perp_market: {
|
|
190
203
|
args: {
|
|
191
204
|
market_id: MarketId;
|
|
@@ -200,7 +213,7 @@ type ExchangeCallMessage = {
|
|
|
200
213
|
max_funding_rate_clamp: number;
|
|
201
214
|
impact_margin: number;
|
|
202
215
|
interest_rate: number;
|
|
203
|
-
init_leverage_table_args:
|
|
216
|
+
init_leverage_table_args: Map<number, number>;
|
|
204
217
|
taker_fees_tenth_bps: number[];
|
|
205
218
|
maker_fees_tenth_bps: number[];
|
|
206
219
|
};
|
|
@@ -217,7 +230,8 @@ type ExchangeCallMessage = {
|
|
|
217
230
|
maintenance_liability_weight: number;
|
|
218
231
|
deposit_limit: number;
|
|
219
232
|
borrow_limit: number;
|
|
220
|
-
|
|
233
|
+
liquidation_total_reward_ratio: number;
|
|
234
|
+
protocol_reward_ratio: number;
|
|
221
235
|
liability_liquidation_limit_ratio: number;
|
|
222
236
|
interest_fee_tenth_bps: number;
|
|
223
237
|
};
|