@drift-labs/sdk 2.128.0-beta.7 → 2.128.0-beta.9
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/VERSION +1 -1
- package/lib/browser/accounts/webSocketDriftClientAccountSubscriber.js +3 -3
- package/lib/browser/constants/perpMarkets.js +6 -4
- package/lib/browser/constants/spotMarkets.js +3 -2
- package/lib/node/accounts/webSocketDriftClientAccountSubscriber.js +3 -3
- package/lib/node/constants/perpMarkets.d.ts.map +1 -1
- package/lib/node/constants/perpMarkets.js +6 -4
- package/lib/node/constants/spotMarkets.d.ts.map +1 -1
- package/lib/node/constants/spotMarkets.js +3 -2
- package/package.json +1 -1
- package/src/accounts/webSocketDriftClientAccountSubscriber.ts +3 -3
- package/src/constants/perpMarkets.ts +8 -4
- package/src/constants/spotMarkets.ts +4 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.128.0-beta.
|
|
1
|
+
2.128.0-beta.9
|
|
@@ -138,7 +138,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
138
138
|
}
|
|
139
139
|
async subscribeToPerpMarketAccount(marketIndex) {
|
|
140
140
|
const perpMarketPublicKey = await (0, pda_1.getPerpMarketPublicKey)(this.program.programId, marketIndex);
|
|
141
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
141
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('perpMarket', this.program, perpMarketPublicKey, undefined, this.resubOpts, this.commitment);
|
|
142
142
|
accountSubscriber.setData(this.initialPerpMarketAccountData.get(marketIndex));
|
|
143
143
|
await accountSubscriber.subscribe((data) => {
|
|
144
144
|
this.eventEmitter.emit('perpMarketAccountUpdate', data);
|
|
@@ -153,7 +153,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
153
153
|
}
|
|
154
154
|
async subscribeToSpotMarketAccount(marketIndex) {
|
|
155
155
|
const marketPublicKey = await (0, pda_1.getSpotMarketPublicKey)(this.program.programId, marketIndex);
|
|
156
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
156
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('spotMarket', this.program, marketPublicKey, undefined, this.resubOpts, this.commitment);
|
|
157
157
|
accountSubscriber.setData(this.initialSpotMarketAccountData.get(marketIndex));
|
|
158
158
|
await accountSubscriber.subscribe((data) => {
|
|
159
159
|
this.eventEmitter.emit('spotMarketAccountUpdate', data);
|
|
@@ -171,7 +171,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
171
171
|
async subscribeToOracle(oracleInfo) {
|
|
172
172
|
const oracleId = (0, oracleId_1.getOracleId)(oracleInfo.publicKey, oracleInfo.source);
|
|
173
173
|
const client = this.oracleClientCache.get(oracleInfo.source, this.program.provider.connection, this.program);
|
|
174
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
174
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('oracle', this.program, oracleInfo.publicKey, (buffer) => {
|
|
175
175
|
return client.getOraclePriceDataFromBuffer(buffer);
|
|
176
176
|
}, this.resubOpts, this.commitment);
|
|
177
177
|
const initialOraclePriceData = this.initialOraclePriceData.get(oracleId);
|
|
@@ -720,9 +720,10 @@ exports.MainnetPerpMarkets = [
|
|
|
720
720
|
symbol: 'CLOUD-PERP',
|
|
721
721
|
baseAssetSymbol: 'CLOUD',
|
|
722
722
|
marketIndex: 31,
|
|
723
|
-
oracle: new web3_js_1.PublicKey('
|
|
723
|
+
oracle: new web3_js_1.PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
724
724
|
launchTs: 1717597648000,
|
|
725
|
-
oracleSource: __1.OracleSource.
|
|
725
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
726
|
+
pythFeedId: '0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
726
727
|
},
|
|
727
728
|
{
|
|
728
729
|
fullName: 'IO',
|
|
@@ -1193,9 +1194,10 @@ exports.MainnetPerpMarkets = [
|
|
|
1193
1194
|
symbol: 'LAUNCHCOIN-PERP',
|
|
1194
1195
|
baseAssetSymbol: 'LAUNCHCOIN',
|
|
1195
1196
|
marketIndex: 74,
|
|
1196
|
-
oracle: new web3_js_1.PublicKey('
|
|
1197
|
+
oracle: new web3_js_1.PublicKey('6Dtdqcr6dEKYMRKCvdDa8mSf5qVFbQVDZHTi6WhU1Foj'),
|
|
1197
1198
|
launchTs: 1747318237000,
|
|
1198
|
-
oracleSource: __1.OracleSource.
|
|
1199
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
1200
|
+
pythFeedId: '0x6d74813ee17291d5be18a355fe4d43fd300d625caea6554d49f740e7d112141e',
|
|
1199
1201
|
},
|
|
1200
1202
|
{
|
|
1201
1203
|
fullName: 'PUMP',
|
|
@@ -377,8 +377,9 @@ exports.MainnetSpotMarkets = [
|
|
|
377
377
|
symbol: 'CLOUD',
|
|
378
378
|
marketIndex: 21,
|
|
379
379
|
poolId: 0,
|
|
380
|
-
oracle: new web3_js_1.PublicKey('
|
|
381
|
-
oracleSource: __1.OracleSource.
|
|
380
|
+
oracle: new web3_js_1.PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
381
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
382
|
+
pythFeedId: '0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
382
383
|
mint: new web3_js_1.PublicKey('CLoUDKc4Ane7HeQcPpE3YHnznRxhMimJ4MyaUqyHFzAu'),
|
|
383
384
|
precision: new __1.BN(10).pow(numericConstants_1.NINE),
|
|
384
385
|
precisionExp: numericConstants_1.NINE,
|
|
@@ -138,7 +138,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
138
138
|
}
|
|
139
139
|
async subscribeToPerpMarketAccount(marketIndex) {
|
|
140
140
|
const perpMarketPublicKey = await (0, pda_1.getPerpMarketPublicKey)(this.program.programId, marketIndex);
|
|
141
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
141
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('perpMarket', this.program, perpMarketPublicKey, undefined, this.resubOpts, this.commitment);
|
|
142
142
|
accountSubscriber.setData(this.initialPerpMarketAccountData.get(marketIndex));
|
|
143
143
|
await accountSubscriber.subscribe((data) => {
|
|
144
144
|
this.eventEmitter.emit('perpMarketAccountUpdate', data);
|
|
@@ -153,7 +153,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
153
153
|
}
|
|
154
154
|
async subscribeToSpotMarketAccount(marketIndex) {
|
|
155
155
|
const marketPublicKey = await (0, pda_1.getSpotMarketPublicKey)(this.program.programId, marketIndex);
|
|
156
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
156
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('spotMarket', this.program, marketPublicKey, undefined, this.resubOpts, this.commitment);
|
|
157
157
|
accountSubscriber.setData(this.initialSpotMarketAccountData.get(marketIndex));
|
|
158
158
|
await accountSubscriber.subscribe((data) => {
|
|
159
159
|
this.eventEmitter.emit('spotMarketAccountUpdate', data);
|
|
@@ -171,7 +171,7 @@ class WebSocketDriftClientAccountSubscriber {
|
|
|
171
171
|
async subscribeToOracle(oracleInfo) {
|
|
172
172
|
const oracleId = (0, oracleId_1.getOracleId)(oracleInfo.publicKey, oracleInfo.source);
|
|
173
173
|
const client = this.oracleClientCache.get(oracleInfo.source, this.program.provider.connection, this.program);
|
|
174
|
-
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber(
|
|
174
|
+
const accountSubscriber = new webSocketAccountSubscriber_1.WebSocketAccountSubscriber('oracle', this.program, oracleInfo.publicKey, (buffer) => {
|
|
175
175
|
return client.getOraclePriceDataFromBuffer(buffer);
|
|
176
176
|
}, this.resubOpts, this.commitment);
|
|
177
177
|
const initialOraclePriceData = this.initialOraclePriceData.get(oracleId);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"perpMarkets.d.ts","sourceRoot":"","sources":["../../../src/constants/perpMarkets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,MAAM,MAAM,gBAAgB,GAAG;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,SAAS,CAAC;IAClB,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAAgB,EA6W/C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"perpMarkets.d.ts","sourceRoot":"","sources":["../../../src/constants/perpMarkets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,MAAM,MAAM,gBAAgB,GAAG;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,SAAS,CAAC;IAClB,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAAgB,EA6W/C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EA45BhD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE;KAAG,GAAG,IAAI,QAAQ,GAAG,gBAAgB,EAAE;CAGhE,CAAC"}
|
|
@@ -720,9 +720,10 @@ exports.MainnetPerpMarkets = [
|
|
|
720
720
|
symbol: 'CLOUD-PERP',
|
|
721
721
|
baseAssetSymbol: 'CLOUD',
|
|
722
722
|
marketIndex: 31,
|
|
723
|
-
oracle: new web3_js_1.PublicKey('
|
|
723
|
+
oracle: new web3_js_1.PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
724
724
|
launchTs: 1717597648000,
|
|
725
|
-
oracleSource: __1.OracleSource.
|
|
725
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
726
|
+
pythFeedId: '0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
726
727
|
},
|
|
727
728
|
{
|
|
728
729
|
fullName: 'IO',
|
|
@@ -1193,9 +1194,10 @@ exports.MainnetPerpMarkets = [
|
|
|
1193
1194
|
symbol: 'LAUNCHCOIN-PERP',
|
|
1194
1195
|
baseAssetSymbol: 'LAUNCHCOIN',
|
|
1195
1196
|
marketIndex: 74,
|
|
1196
|
-
oracle: new web3_js_1.PublicKey('
|
|
1197
|
+
oracle: new web3_js_1.PublicKey('6Dtdqcr6dEKYMRKCvdDa8mSf5qVFbQVDZHTi6WhU1Foj'),
|
|
1197
1198
|
launchTs: 1747318237000,
|
|
1198
|
-
oracleSource: __1.OracleSource.
|
|
1199
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
1200
|
+
pythFeedId: '0x6d74813ee17291d5be18a355fe4d43fd300d625caea6554d49f740e7d112141e',
|
|
1199
1201
|
},
|
|
1200
1202
|
{
|
|
1201
1203
|
fullName: 'PUMP',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spotMarkets.d.ts","sourceRoot":"","sources":["../../../src/constants/spotMarkets.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AAYjD,MAAM,MAAM,gBAAgB,GAAG;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,SAAS,CAAC;IAClB,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,YAAY,CAAC;IAC3B,SAAS,EAAE,EAAE,CAAC;IACd,YAAY,EAAE,EAAE,CAAC;IACjB,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,gBAAgB,WAE5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAAgB,EA+F/C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"spotMarkets.d.ts","sourceRoot":"","sources":["../../../src/constants/spotMarkets.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AAYjD,MAAM,MAAM,gBAAgB,GAAG;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,SAAS,CAAC;IAClB,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,YAAY,CAAC;IAC3B,SAAS,EAAE,EAAE,CAAC;IACd,YAAY,EAAE,EAAE,CAAC;IACjB,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,gBAAgB,WAE5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,gBAAgB,EA+F/C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EAuwBhD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE;KAAG,GAAG,IAAI,QAAQ,GAAG,gBAAgB,EAAE;CAGhE,CAAC"}
|
|
@@ -377,8 +377,9 @@ exports.MainnetSpotMarkets = [
|
|
|
377
377
|
symbol: 'CLOUD',
|
|
378
378
|
marketIndex: 21,
|
|
379
379
|
poolId: 0,
|
|
380
|
-
oracle: new web3_js_1.PublicKey('
|
|
381
|
-
oracleSource: __1.OracleSource.
|
|
380
|
+
oracle: new web3_js_1.PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
381
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
382
|
+
pythFeedId: '0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
382
383
|
mint: new web3_js_1.PublicKey('CLoUDKc4Ane7HeQcPpE3YHnznRxhMimJ4MyaUqyHFzAu'),
|
|
383
384
|
precision: new __1.BN(10).pow(numericConstants_1.NINE),
|
|
384
385
|
precisionExp: numericConstants_1.NINE,
|
package/package.json
CHANGED
|
@@ -293,7 +293,7 @@ export class WebSocketDriftClientAccountSubscriber
|
|
|
293
293
|
marketIndex
|
|
294
294
|
);
|
|
295
295
|
const accountSubscriber = new WebSocketAccountSubscriber<PerpMarketAccount>(
|
|
296
|
-
|
|
296
|
+
'perpMarket',
|
|
297
297
|
this.program,
|
|
298
298
|
perpMarketPublicKey,
|
|
299
299
|
undefined,
|
|
@@ -326,7 +326,7 @@ export class WebSocketDriftClientAccountSubscriber
|
|
|
326
326
|
marketIndex
|
|
327
327
|
);
|
|
328
328
|
const accountSubscriber = new WebSocketAccountSubscriber<SpotMarketAccount>(
|
|
329
|
-
|
|
329
|
+
'spotMarket',
|
|
330
330
|
this.program,
|
|
331
331
|
marketPublicKey,
|
|
332
332
|
undefined,
|
|
@@ -362,7 +362,7 @@ export class WebSocketDriftClientAccountSubscriber
|
|
|
362
362
|
this.program
|
|
363
363
|
);
|
|
364
364
|
const accountSubscriber = new WebSocketAccountSubscriber<OraclePriceData>(
|
|
365
|
-
|
|
365
|
+
'oracle',
|
|
366
366
|
this.program,
|
|
367
367
|
oracleInfo.publicKey,
|
|
368
368
|
(buffer: Buffer) => {
|
|
@@ -790,9 +790,11 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
790
790
|
symbol: 'CLOUD-PERP',
|
|
791
791
|
baseAssetSymbol: 'CLOUD',
|
|
792
792
|
marketIndex: 31,
|
|
793
|
-
oracle: new PublicKey('
|
|
793
|
+
oracle: new PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
794
794
|
launchTs: 1717597648000,
|
|
795
|
-
oracleSource: OracleSource.
|
|
795
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
796
|
+
pythFeedId:
|
|
797
|
+
'0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
796
798
|
},
|
|
797
799
|
{
|
|
798
800
|
fullName: 'IO',
|
|
@@ -1287,9 +1289,11 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
1287
1289
|
symbol: 'LAUNCHCOIN-PERP',
|
|
1288
1290
|
baseAssetSymbol: 'LAUNCHCOIN',
|
|
1289
1291
|
marketIndex: 74,
|
|
1290
|
-
oracle: new PublicKey('
|
|
1292
|
+
oracle: new PublicKey('6Dtdqcr6dEKYMRKCvdDa8mSf5qVFbQVDZHTi6WhU1Foj'),
|
|
1291
1293
|
launchTs: 1747318237000,
|
|
1292
|
-
oracleSource: OracleSource.
|
|
1294
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
1295
|
+
pythFeedId:
|
|
1296
|
+
'0x6d74813ee17291d5be18a355fe4d43fd300d625caea6554d49f740e7d112141e',
|
|
1293
1297
|
},
|
|
1294
1298
|
{
|
|
1295
1299
|
fullName: 'PUMP',
|
|
@@ -463,8 +463,10 @@ export const MainnetSpotMarkets: SpotMarketConfig[] = [
|
|
|
463
463
|
symbol: 'CLOUD',
|
|
464
464
|
marketIndex: 21,
|
|
465
465
|
poolId: 0,
|
|
466
|
-
oracle: new PublicKey('
|
|
467
|
-
oracleSource: OracleSource.
|
|
466
|
+
oracle: new PublicKey('4EgPYJkEyNkoUcaMDbeokUiR4b1f3Hs3DK5S4NzqseR2'),
|
|
467
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
468
|
+
pythFeedId:
|
|
469
|
+
'0x7358313661dcd4f842a1423aa4f7a05f009001c9113201c719621d3f1aa80a73',
|
|
468
470
|
mint: new PublicKey('CLoUDKc4Ane7HeQcPpE3YHnznRxhMimJ4MyaUqyHFzAu'),
|
|
469
471
|
precision: new BN(10).pow(NINE),
|
|
470
472
|
precisionExp: NINE,
|