@injectivelabs/sdk-ts 1.16.5 → 1.16.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.
@@ -203,6 +203,7 @@ class IndexerGrpcDerivativeTransformer {
203
203
  oracleQuote: market.oracleQuote,
204
204
  oracleType: market.oracleType,
205
205
  oracleScaleFactor: market.oracleScaleFactor,
206
+ reduceMarginRatio: market.reduceMarginRatio,
206
207
  initialMarginRatio: market.initialMarginRatio,
207
208
  maintenanceMarginRatio: market.maintenanceMarginRatio,
208
209
  isPerpetual: market.isPerpetual,
@@ -54,6 +54,7 @@ export interface BaseDerivativeMarket {
54
54
  minNotional: number;
55
55
  }
56
56
  export interface PerpetualMarket extends BaseDerivativeMarket {
57
+ reduceMarginRatio: string;
57
58
  initialMarginRatio: string;
58
59
  maintenanceMarginRatio: string;
59
60
  isPerpetual: boolean;
@@ -200,6 +200,7 @@ export class IndexerGrpcDerivativeTransformer {
200
200
  oracleQuote: market.oracleQuote,
201
201
  oracleType: market.oracleType,
202
202
  oracleScaleFactor: market.oracleScaleFactor,
203
+ reduceMarginRatio: market.reduceMarginRatio,
203
204
  initialMarginRatio: market.initialMarginRatio,
204
205
  maintenanceMarginRatio: market.maintenanceMarginRatio,
205
206
  isPerpetual: market.isPerpetual,
@@ -54,6 +54,7 @@ export interface BaseDerivativeMarket {
54
54
  minNotional: number;
55
55
  }
56
56
  export interface PerpetualMarket extends BaseDerivativeMarket {
57
+ reduceMarginRatio: string;
57
58
  initialMarginRatio: string;
58
59
  maintenanceMarginRatio: string;
59
60
  isPerpetual: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/sdk-ts",
3
3
  "description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
4
- "version": "1.16.5",
4
+ "version": "1.16.6",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",
7
7
  "author": {
@@ -123,16 +123,16 @@
123
123
  "@cosmjs/stargate": "^0.33.0",
124
124
  "@injectivelabs/abacus-proto-ts": "1.14.0",
125
125
  "@injectivelabs/core-proto-ts": "1.16.1",
126
- "@injectivelabs/exceptions": "^1.16.5",
126
+ "@injectivelabs/exceptions": "^1.16.6",
127
127
  "@injectivelabs/grpc-web": "^0.0.1",
128
128
  "@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
129
129
  "@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
130
130
  "@injectivelabs/indexer-proto-ts": "1.13.14",
131
131
  "@injectivelabs/mito-proto-ts": "1.13.2",
132
- "@injectivelabs/networks": "^1.16.5",
132
+ "@injectivelabs/networks": "^1.16.6",
133
133
  "@injectivelabs/olp-proto-ts": "1.13.4",
134
- "@injectivelabs/ts-types": "^1.16.5",
135
- "@injectivelabs/utils": "^1.16.5",
134
+ "@injectivelabs/ts-types": "^1.16.6",
135
+ "@injectivelabs/utils": "^1.16.6",
136
136
  "@metamask/eth-sig-util": "^8.2.0",
137
137
  "@noble/curves": "^1.8.1",
138
138
  "@noble/hashes": "^1.7.1",
@@ -151,7 +151,7 @@
151
151
  "shx": "^0.3.4",
152
152
  "snakecase-keys": "^5.4.1"
153
153
  },
154
- "gitHead": "59378cbaf7f09e97bd0c8c157fd03abdd0ea35d5",
154
+ "gitHead": "41794b09a1047a01dbb1d0e0a473a2f26305752d",
155
155
  "typedoc": {
156
156
  "entryPoint": "./src/index.ts",
157
157
  "readmeFile": "./README.md",