Skip to content

Commit

Permalink
run linter & refix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Imod7 committed Jan 23, 2024
1 parent d1cf284 commit 82488d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/services/blocks/BlocksService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

import type { ApiPromise } from '@polkadot/api';
import type { ApiDecoration } from '@polkadot/api/types';
import type { extractAuthor } from '@polkadot/api-derive/type/util';
import type { Compact, GenericCall, Option, Struct, Text, u32, Vec } from '@polkadot/types';
import { extractAuthor } from '@polkadot/api-derive/type/util';
import { Compact, GenericCall, Option, Struct, Text, u32, Vec } from '@polkadot/types';
import type { GenericExtrinsic } from '@polkadot/types/extrinsic';
import type {
AccountId32,
Expand All @@ -44,7 +44,7 @@ import { BadRequest, InternalServerError } from 'http-errors';
import LRU from 'lru-cache';

import { QueryFeeDetailsCache } from '../../chains-config/cache';
import type {
import {
IBlock,
IBlockRaw,
IExtrinsic,
Expand All @@ -54,7 +54,7 @@ import type {
isFrameMethod,
} from '../../types/responses';
import type { IOption } from '../../types/util';
import type { isPaysFee } from '../../types/util';
import { isPaysFee } from '../../types/util';
import { PromiseQueue } from '../../util/PromiseQueue';
import { AbstractService } from '../AbstractService';
import { XcmDecoder } from './XCMDecoder';
Expand Down
6 changes: 3 additions & 3 deletions src/test-helpers/registries/assetHubKusamaRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import type { Metadata } from '@polkadot/types';
import type { TypeRegistry } from '@polkadot/types';
import type { getSpecTypes } from '@polkadot/types-known';
import { Metadata } from '@polkadot/types';
import { TypeRegistry } from '@polkadot/types';
import { getSpecTypes } from '@polkadot/types-known';

import { assetHubKusamaV14 } from '../metadata/assetHubKusamaMetadata';
import { assetHubKusamaV1000000 } from '../metadata/assetHubKusamaMetadataV1000000';
Expand Down
6 changes: 3 additions & 3 deletions src/test-helpers/registries/polkadotRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import type { Metadata } from '@polkadot/types';
import type { TypeRegistry } from '@polkadot/types';
import type { getSpecTypes } from '@polkadot/types-known';
import { Metadata } from '@polkadot/types';
import { TypeRegistry } from '@polkadot/types';
import { getSpecTypes } from '@polkadot/types-known';

import { polkadotMetadataRpcV16 } from '../metadata/polkadotV16Metadata';
import { polkadotMetadataRpcV29 } from '../metadata/polkadotV29Metadata';
Expand Down

0 comments on commit 82488d8

Please sign in to comment.