@bulletxyz/bullet-sdk 0.25.4-rc.1 → 0.25.4-rc.2
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 +20 -16
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.js +20 -16
- package/dist/node/index.js.map +2 -2
- package/dist/types/rollupTypes.d.ts +20 -16
- package/package.json +1 -1
|
@@ -150,24 +150,28 @@ type ExchangeCallMessage = {
|
|
|
150
150
|
usdc_amount: number;
|
|
151
151
|
};
|
|
152
152
|
init_asset_metadata: {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
153
|
+
args: {
|
|
154
|
+
asset_id: AssetId;
|
|
155
|
+
asset_name: string;
|
|
156
|
+
token_id: TokenId;
|
|
157
|
+
decimals: number;
|
|
158
|
+
};
|
|
157
159
|
};
|
|
158
160
|
init_borrow_lend_market: {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
161
|
+
args: {
|
|
162
|
+
asset_id: AssetId;
|
|
163
|
+
optimal_utilisation_rate: number;
|
|
164
|
+
min_borrow_rate: number;
|
|
165
|
+
max_borrow_rate: number;
|
|
166
|
+
optimal_borrow_rate: number;
|
|
167
|
+
asset_weight: number;
|
|
168
|
+
initial_liability_weight: number;
|
|
169
|
+
maintenance_liability_weight: number;
|
|
170
|
+
deposit_limit: number;
|
|
171
|
+
borrow_limit: number;
|
|
172
|
+
liquidation_reward_ratio: number;
|
|
173
|
+
liability_liquidation_limit_ratio: number;
|
|
174
|
+
};
|
|
171
175
|
};
|
|
172
176
|
};
|
|
173
177
|
export type RuntimeCall = ExactlyOne<{
|