From abb1eaf6c7b16882880c0a26158f67f6e08b5224 Mon Sep 17 00:00:00 2001 From: Bartosz Solka Date: Thu, 8 Feb 2024 11:09:23 +0100 Subject: [PATCH] reorganized imports Signed-off-by: Bartosz Solka --- src/HederaNFTSDK.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/HederaNFTSDK.ts b/src/HederaNFTSDK.ts index 6470137..256488b 100644 --- a/src/HederaNFTSDK.ts +++ b/src/HederaNFTSDK.ts @@ -1,13 +1,13 @@ -import { Client, LedgerId, NftId, PrivateKey } from '@hashgraph/sdk'; -import { CreateCollectionKeysType } from './types/createCollection'; +import { Client, NftId, PrivateKey } from '@hashgraph/sdk'; +import { NetworkName } from '@hashgraph/sdk/lib/client/Client'; import { createCollectionFunction } from './functions/createCollection'; -import { logIn } from './functions/logIn'; import { createJsonMetadataFromCSV } from './functions/createJsonMetadataFromCSV'; +import { increaseNFTSupply } from './functions/increaseNFTSupply'; +import { logIn } from './functions/logIn'; import { mintSharedMetadataFunction } from './functions/mintSharedMetadataFunction'; import { mintUniqueMetadataFunction } from './functions/mintUniqueMetadataFunction'; +import { CreateCollectionKeysType } from './types/createCollection'; import { JsonMetadataFromCSVInterface } from './types/jsonMetadataFromCSV'; -import { increaseNFTSupply } from './functions/increaseNFTSupply'; -import { NetworkName } from '@hashgraph/sdk/lib/client/Client'; export class HederaNFTSDK { accountId: string;