@injectivelabs/sdk-ts 1.17.2-alpha.5 → 1.17.2-alpha.7

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.
Files changed (1) hide show
  1. package/package.json +33 -34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@injectivelabs/sdk-ts",
3
- "version": "1.17.2-alpha.5",
3
+ "version": "1.17.2-alpha.7",
4
4
  "description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -302,52 +302,36 @@
302
302
  "files": [
303
303
  "dist"
304
304
  ],
305
- "scripts": {
306
- "fetch:ofac": "node --experimental-fetch ./../../etc/ofac.cjs",
307
- "build": "pnpm type-check && tsdown",
308
- "build:fast": "tsdown",
309
- "build:watch": "tsdown --watch",
310
- "clean": "shx rm -rf coverage *.log junit.xml .build-cache dist && shx mkdir -p dist",
311
- "type-check": "tsc --noEmit",
312
- "test": "vitest",
313
- "test:watch": "vitest --watch",
314
- "test:ci": "vitest run --coverage --reporter=verbose",
315
- "coverage": "vitest run --coverage",
316
- "coverage:show": "live-server coverage",
317
- "dev": "ts-node -r tsconfig-paths/register src/index.ts",
318
- "start": "node dist/index.js",
319
- "lint": "eslint . --ext .ts,.js"
320
- },
321
305
  "dependencies": {
322
- "@cosmjs/amino": "catalog:",
323
- "@cosmjs/proto-signing": "catalog:",
324
- "@cosmjs/stargate": "catalog:",
306
+ "@cosmjs/amino": "0.33.0",
307
+ "@cosmjs/proto-signing": "0.33.0",
308
+ "@cosmjs/stargate": "0.33.0",
325
309
  "@injectivelabs/abacus-proto-ts-v2": "1.17.3",
326
310
  "@injectivelabs/core-proto-ts-v2": "1.17.2",
327
- "@injectivelabs/exceptions": "1.17.2-alpha.5",
328
311
  "@injectivelabs/grpc-web": "^0.0.1",
329
312
  "@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
330
313
  "@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
331
314
  "@injectivelabs/indexer-proto-ts-v2": "1.17.4",
332
315
  "@injectivelabs/mito-proto-ts-v2": "1.17.2",
333
- "@injectivelabs/networks": "1.17.2-alpha.5",
334
316
  "@injectivelabs/olp-proto-ts-v2": "1.17.2",
335
- "@injectivelabs/ts-types": "1.17.2-alpha.5",
336
- "@injectivelabs/utils": "1.17.2-alpha.5",
337
- "@noble/curves": "catalog:",
338
- "@noble/hashes": "catalog:",
317
+ "@noble/curves": "^1.9.0",
318
+ "@noble/hashes": "^1.8.0",
339
319
  "@protobuf-ts/grpcweb-transport": "^2.11.1",
340
320
  "@protobuf-ts/runtime": "^2.11.1",
341
321
  "@protobuf-ts/runtime-rpc": "^2.11.1",
342
- "@scure/base": "catalog:",
343
- "axios": "catalog:",
322
+ "@scure/base": "^1.2.6",
323
+ "axios": "^1.13.2",
344
324
  "bip39": "^3.1.0",
345
325
  "cosmjs-types": "0.9.0",
346
- "ethers": "catalog:",
347
- "http-status-codes": "catalog:",
348
- "rxjs": "catalog:",
326
+ "ethers": "^6.16.0",
327
+ "http-status-codes": "^2.3.0",
328
+ "rxjs": "7.8.2",
349
329
  "snakecase-keys": "^5.4.1",
350
- "viem": "catalog:"
330
+ "viem": "^2.41.2",
331
+ "@injectivelabs/networks": "1.17.2-alpha.7",
332
+ "@injectivelabs/exceptions": "1.17.2-alpha.7",
333
+ "@injectivelabs/ts-types": "1.17.2-alpha.7",
334
+ "@injectivelabs/utils": "1.17.2-alpha.7"
351
335
  },
352
336
  "devDependencies": {
353
337
  "shx": "^0.3.4"
@@ -358,5 +342,20 @@
358
342
  "_moduleAliases": {
359
343
  "~sdk-ts": "dist"
360
344
  },
361
- "gitHead": "2c4676388410f2e4557b3ba2846c912f52c57224"
362
- }
345
+ "scripts": {
346
+ "fetch:ofac": "node --experimental-fetch ./../../etc/ofac.cjs",
347
+ "build": "pnpm type-check && tsdown",
348
+ "build:fast": "tsdown",
349
+ "build:watch": "tsdown --watch",
350
+ "clean": "shx rm -rf coverage *.log junit.xml .build-cache dist && shx mkdir -p dist",
351
+ "type-check": "tsc --noEmit",
352
+ "test": "vitest",
353
+ "test:watch": "vitest --watch",
354
+ "test:ci": "vitest run --coverage --reporter=verbose",
355
+ "coverage": "vitest run --coverage",
356
+ "coverage:show": "live-server coverage",
357
+ "dev": "ts-node -r tsconfig-paths/register src/index.ts",
358
+ "start": "node dist/index.js",
359
+ "lint": "eslint . --ext .ts,.js"
360
+ }
361
+ }