Merge pull request #671 from gnosis/development

Fix #670
This commit is contained in:
Fernando 2020-03-19 11:32:18 -03:00 committed by GitHub
commit 8744dec10c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 13 deletions

View File

@ -1,6 +1,7 @@
// @flow // @flow
import { RateLimit } from 'async-sema' import { RateLimit } from 'async-sema'
import { ETHEREUM_NETWORK } from '~/logic/wallets/getWeb3'
import type { import type {
CollectibleMetadataSource, CollectibleMetadataSource,
CollectiblesInfo, CollectiblesInfo,
@ -15,11 +16,9 @@ import { OPENSEA_API_KEY } from '~/utils/constants'
class OpenSea implements CollectibleMetadataSource { class OpenSea implements CollectibleMetadataSource {
_rateLimit = async () => {} _rateLimit = async () => {}
_endpointsUrls: { [key: number]: string } = { _endpointsUrls: { [key: string]: string } = {
// $FlowFixMe [ETHEREUM_NETWORK.MAINNET]: 'https://api.opensea.io/api/v1',
1: 'https://api.opensea.io/api/v1', [ETHEREUM_NETWORK.RINKEBY]: 'https://rinkeby-api.opensea.io/api/v1',
// $FlowFixMe
4: 'https://rinkeby-api.opensea.io/api/v1',
} }
_fetch = async (url: string) => { _fetch = async (url: string) => {
@ -91,12 +90,12 @@ class OpenSea implements CollectibleMetadataSource {
* Fetches from OpenSea the list of collectibles, grouped by category, * Fetches from OpenSea the list of collectibles, grouped by category,
* for the provided Safe Address in the specified Network * for the provided Safe Address in the specified Network
* @param {string} safeAddress * @param {string} safeAddress
* @param {number} networkId * @param {string} network
* @returns {Promise<{ nftAssets: Map<string, NFTAsset>, nftTokens: Array<NFTToken> }>} * @returns {Promise<{ nftAssets: Map<string, NFTAsset>, nftTokens: Array<NFTToken> }>}
*/ */
async fetchAllUserCollectiblesByCategoryAsync(safeAddress: string, networkId: number) { async fetchAllUserCollectiblesByCategoryAsync(safeAddress: string, network: string) {
// eslint-disable-next-line no-underscore-dangle // eslint-disable-next-line no-underscore-dangle
const metadataSourceUrl = this._endpointsUrls[networkId] const metadataSourceUrl = this._endpointsUrls[network]
const url = `${metadataSourceUrl}/assets/?owner=${safeAddress}` const url = `${metadataSourceUrl}/assets/?owner=${safeAddress}`
// eslint-disable-next-line no-underscore-dangle // eslint-disable-next-line no-underscore-dangle
const assetsResponse = await this._fetch(url) const assetsResponse = await this._fetch(url)

View File

@ -1,16 +1,15 @@
// @flow // @flow
import type { Dispatch } from 'redux' import type { Dispatch } from 'redux'
import { getNetwork } from '~/config'
import { getConfiguredSource } from '~/logic/collectibles/sources' import { getConfiguredSource } from '~/logic/collectibles/sources'
import { addNftAssets, addNftTokens } from '~/logic/collectibles/store/actions/addCollectibles' import { addNftAssets, addNftTokens } from '~/logic/collectibles/store/actions/addCollectibles'
import { PROVIDER_REDUCER_ID } from '~/logic/wallets/store/reducer/provider'
import { safeParamAddressFromStateSelector } from '~/routes/safe/store/selectors' import { safeParamAddressFromStateSelector } from '~/routes/safe/store/selectors'
import type { GlobalState } from '~/store' import type { GlobalState } from '~/store'
const fetchCollectibles = () => async (dispatch: Dispatch<GlobalState>, getState) => { const fetchCollectibles = () => async (dispatch: Dispatch<GlobalState>, getState) => {
const state = getState() const network = getNetwork()
const { network } = state[PROVIDER_REDUCER_ID] const safeAddress = safeParamAddressFromStateSelector(getState()) || ''
const safeAddress = safeParamAddressFromStateSelector(state)
const source = getConfiguredSource() const source = getConfiguredSource()
const collectibles = await source.fetchAllUserCollectiblesByCategoryAsync(safeAddress, network) const collectibles = await source.fetchAllUserCollectiblesByCategoryAsync(safeAddress, network)

View File

@ -205,5 +205,5 @@ export type CollectiblesInfo = {
export interface CollectibleMetadataSource { export interface CollectibleMetadataSource {
constructor(options: { rps: number }): void; constructor(options: { rps: number }): void;
fetchAllUserCollectiblesByCategoryAsync(safeAddress: string, networkId: number): Promise<CollectiblesInfo>; fetchAllUserCollectiblesByCategoryAsync(safeAddress: string, network: string): Promise<CollectiblesInfo>;
} }