File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ import * as JsonDiff from "json-diff";
3434import { QueryPagination } from "src/common/entities/query.pagination" ;
3535import { StakeService } from "src/endpoints/stake/stake.service" ;
3636import { ApplicationMostUsed } from "src/endpoints/accounts/entities/application.most.used" ;
37+ import { NftType } from '../../common/indexer/entities/nft.type' ;
3738
3839@Injectable ( )
3940export class CacheWarmerService {
@@ -327,7 +328,13 @@ export class CacheWarmerService {
327328 continue ;
328329 }
329330
330- if ( ! [ TokenType . NonFungibleESDT , TokenType . SemiFungibleESDT ] . includes ( collection . type as TokenType ) ) {
331+ if ( ! [
332+ NftType . NonFungibleESDT ,
333+ NftType . SemiFungibleESDT ,
334+ NftType . NonFungibleESDTv2 ,
335+ NftType . DynamicNonFungibleESDT ,
336+ NftType . DynamicSemiFungibleESDT ,
337+ ] . includes ( collection . type as NftType ) ) {
331338 continue ;
332339 }
333340
You can’t perform that action at this time.
0 commit comments