@injectivelabs/sdk-ts 1.15.41 → 1.15.42

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.
@@ -460,7 +460,7 @@ class IndexerGrpcExplorerTransformer {
460
460
  error_log: tx.errorLog,
461
461
  height: parseInt(tx.blockNumber, 10),
462
462
  tx_number: parseInt(tx.txNumber, 10),
463
- time: parseInt(tx.blockTimestamp, 10),
463
+ time: parseInt(tx.blockUnixTimestamp, 10),
464
464
  amount: getContractTransactionV2Amount(tx),
465
465
  logs: JSON.parse(Buffer.from(tx.logs).toString('utf8')),
466
466
  data: '/' + Buffer.from(tx.data).toString('utf8').split('/').pop(),
@@ -457,7 +457,7 @@ export class IndexerGrpcExplorerTransformer {
457
457
  error_log: tx.errorLog,
458
458
  height: parseInt(tx.blockNumber, 10),
459
459
  tx_number: parseInt(tx.txNumber, 10),
460
- time: parseInt(tx.blockTimestamp, 10),
460
+ time: parseInt(tx.blockUnixTimestamp, 10),
461
461
  amount: getContractTransactionV2Amount(tx),
462
462
  logs: JSON.parse(Buffer.from(tx.logs).toString('utf8')),
463
463
  data: '/' + Buffer.from(tx.data).toString('utf8').split('/').pop(),
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.15.41",
4
+ "version": "1.15.42",
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.15.0",
126
- "@injectivelabs/exceptions": "^1.15.38",
126
+ "@injectivelabs/exceptions": "^1.15.39",
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.15.39",
132
+ "@injectivelabs/networks": "^1.15.40",
133
133
  "@injectivelabs/olp-proto-ts": "1.13.4",
134
- "@injectivelabs/ts-types": "^1.15.39",
135
- "@injectivelabs/utils": "^1.15.39",
134
+ "@injectivelabs/ts-types": "^1.15.40",
135
+ "@injectivelabs/utils": "^1.15.40",
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": "df725078e865f07678eaad5084324929a8a75d41",
154
+ "gitHead": "6b81167d8775731ff14b887d403fbe33bd0ecdff",
155
155
  "typedoc": {
156
156
  "entryPoint": "./src/index.ts",
157
157
  "readmeFile": "./README.md",