fix: use opensea only as last resort collectibles provider
Fixes #13442
This commit is contained in:
parent
70ee70a19a
commit
9c89409c94
|
@ -129,20 +129,20 @@ func NewService(
|
|||
|
||||
accountOwnershipProviders := []thirdparty.CollectibleAccountOwnershipProvider{
|
||||
raribleClient,
|
||||
openseaV2Client,
|
||||
alchemyClient,
|
||||
openseaV2Client,
|
||||
}
|
||||
|
||||
collectibleDataProviders := []thirdparty.CollectibleDataProvider{
|
||||
raribleClient,
|
||||
openseaV2Client,
|
||||
alchemyClient,
|
||||
openseaV2Client,
|
||||
}
|
||||
|
||||
collectionDataProviders := []thirdparty.CollectionDataProvider{
|
||||
raribleClient,
|
||||
openseaV2Client,
|
||||
alchemyClient,
|
||||
openseaV2Client,
|
||||
}
|
||||
|
||||
collectiblesManager := collectibles.NewManager(db, rpcClient, communityManager, contractOwnershipProviders, accountOwnershipProviders, collectibleDataProviders, collectionDataProviders, mediaServer, feed)
|
||||
|
|
Loading…
Reference in New Issue