diff --git a/v4-client-js/package-lock.json b/v4-client-js/package-lock.json index deeca1c3..cee1d025 100644 --- a/v4-client-js/package-lock.json +++ b/v4-client-js/package-lock.json @@ -1,12 +1,12 @@ { "name": "@dydxprotocol/v4-client-js", - "version": "1.2.1", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@dydxprotocol/v4-client-js", - "version": "1.2.1", + "version": "1.3.0", "license": "AGPL-3.0", "dependencies": { "@cosmjs/amino": "^0.32.1", diff --git a/v4-client-js/package.json b/v4-client-js/package.json index d41f5464..753e51ce 100644 --- a/v4-client-js/package.json +++ b/v4-client-js/package.json @@ -1,6 +1,6 @@ { "name": "@dydxprotocol/v4-client-js", - "version": "1.2.1", + "version": "1.3.0", "description": "General client library for the new dYdX system (v4 decentralized)", "main": "build/src/index.js", "scripts": { diff --git a/v4-client-js/src/clients/modules/get.ts b/v4-client-js/src/clients/modules/get.ts index e7bc784f..a5c5ae3e 100644 --- a/v4-client-js/src/clients/modules/get.ts +++ b/v4-client-js/src/clients/modules/get.ts @@ -7,7 +7,6 @@ import { TxExtension, QueryAbciResponse, createProtobufRpcClient, - QueryClient, } from '@cosmjs/stargate'; import * as AuthModule from 'cosmjs-types/cosmos/auth/v1beta1/query'; import * as BankModule from 'cosmjs-types/cosmos/bank/v1beta1/query'; @@ -15,6 +14,8 @@ import { Any } from 'cosmjs-types/google/protobuf/any'; import Long from 'long'; import protobuf from 'protobufjs'; +import { slinky } from '../../codegen'; +import { MarketMapResponse } from '../../codegen/slinky/marketmap/v1/query'; import { PAGE_REQUEST } from '../constants'; import { UnexpectedClientError } from '../lib/errors'; import { @@ -33,8 +34,6 @@ import { SubaccountsModule, } from './proto-includes'; import { TendermintClient } from './tendermintClient'; -import { slinky } from '../../codegen'; -import { MarketMapResponse } from '../../codegen/slinky/marketmap/v1/query'; // Required for encoding and decoding queries that are of type Long. // Must be done once but since the individal modules should be usable without