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

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 +38 -33
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@injectivelabs/sdk-ts",
3
- "version": "1.17.2-alpha.4",
3
+ "version": "1.17.2-alpha.5",
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": {
7
7
  "name": "InjectiveLabs",
8
8
  "email": "admin@injectivelabs.org"
9
9
  },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/InjectiveLabs/injective-ts"
13
+ },
10
14
  "type": "module",
11
15
  "sideEffects": false,
12
16
  "exports": {
@@ -298,36 +302,52 @@
298
302
  "files": [
299
303
  "dist"
300
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
+ },
301
321
  "dependencies": {
302
- "@cosmjs/amino": "0.33.0",
303
- "@cosmjs/proto-signing": "0.33.0",
304
- "@cosmjs/stargate": "0.33.0",
322
+ "@cosmjs/amino": "catalog:",
323
+ "@cosmjs/proto-signing": "catalog:",
324
+ "@cosmjs/stargate": "catalog:",
305
325
  "@injectivelabs/abacus-proto-ts-v2": "1.17.3",
306
326
  "@injectivelabs/core-proto-ts-v2": "1.17.2",
327
+ "@injectivelabs/exceptions": "1.17.2-alpha.5",
307
328
  "@injectivelabs/grpc-web": "^0.0.1",
308
329
  "@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
309
330
  "@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
310
331
  "@injectivelabs/indexer-proto-ts-v2": "1.17.4",
311
332
  "@injectivelabs/mito-proto-ts-v2": "1.17.2",
333
+ "@injectivelabs/networks": "1.17.2-alpha.5",
312
334
  "@injectivelabs/olp-proto-ts-v2": "1.17.2",
313
- "@noble/curves": "^1.9.0",
314
- "@noble/hashes": "^1.8.0",
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:",
315
339
  "@protobuf-ts/grpcweb-transport": "^2.11.1",
316
340
  "@protobuf-ts/runtime": "^2.11.1",
317
341
  "@protobuf-ts/runtime-rpc": "^2.11.1",
318
- "@scure/base": "^1.2.6",
319
- "axios": "^1.13.2",
342
+ "@scure/base": "catalog:",
343
+ "axios": "catalog:",
320
344
  "bip39": "^3.1.0",
321
345
  "cosmjs-types": "0.9.0",
322
- "ethers": "^6.16.0",
323
- "http-status-codes": "^2.3.0",
324
- "rxjs": "7.8.2",
346
+ "ethers": "catalog:",
347
+ "http-status-codes": "catalog:",
348
+ "rxjs": "catalog:",
325
349
  "snakecase-keys": "^5.4.1",
326
- "viem": "^2.41.2",
327
- "@injectivelabs/exceptions": "1.17.2-alpha.4",
328
- "@injectivelabs/ts-types": "1.17.2-alpha.4",
329
- "@injectivelabs/networks": "1.17.2-alpha.4",
330
- "@injectivelabs/utils": "1.17.2-alpha.4"
350
+ "viem": "catalog:"
331
351
  },
332
352
  "devDependencies": {
333
353
  "shx": "^0.3.4"
@@ -338,20 +358,5 @@
338
358
  "_moduleAliases": {
339
359
  "~sdk-ts": "dist"
340
360
  },
341
- "scripts": {
342
- "fetch:ofac": "node --experimental-fetch ./../../etc/ofac.cjs",
343
- "build": "pnpm type-check && tsdown",
344
- "build:fast": "tsdown",
345
- "build:watch": "tsdown --watch",
346
- "clean": "shx rm -rf coverage *.log junit.xml .build-cache dist && shx mkdir -p dist",
347
- "type-check": "tsc --noEmit",
348
- "test": "vitest",
349
- "test:watch": "vitest --watch",
350
- "test:ci": "vitest run --coverage --reporter=verbose",
351
- "coverage": "vitest run --coverage",
352
- "coverage:show": "live-server coverage",
353
- "dev": "ts-node -r tsconfig-paths/register src/index.ts",
354
- "start": "node dist/index.js",
355
- "lint": "eslint . --ext .ts,.js"
356
- }
357
- }
361
+ "gitHead": "2c4676388410f2e4557b3ba2846c912f52c57224"
362
+ }