10 |
{estate.size.toLocaleString()} LAND
11 |
12 |
13 | )
14 | }
15 |
16 | export default EstateTags
17 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Marketplace
2 |
3 | Decentraland's Marketplace
4 |
5 | ## Frontend
6 |
7 | It can be found under [/webapp](https://github.com/decentraland/marketplace/tree/master/webapp).
8 |
9 | ## Backend
10 |
11 | It can be found under [/indexer](https://github.com/decentraland/marketplace/tree/master/indexer).
12 |
13 | ## Copyright & License
14 |
15 | This repository is protected with a standard Apache 2 license. See the terms and conditions in the [LICENSE](https://github.com/decentraland/marketplace/blob/master/LICENSE) file.
16 |
--------------------------------------------------------------------------------
/indexer/src/data/wearables/binance_us_collection.ts:
--------------------------------------------------------------------------------
1 | import { Wearable } from './Wearable'
2 |
3 | export let binance_us_collection: Wearable[] = [
4 | new Wearable(
5 | 'binance_us_hat',
6 | 'Binance US Hat',
7 | 'Binance US Hat',
8 | 'hat',
9 | 'uncommon',
10 | ['BaseMale', 'BaseFemale']
11 | ),
12 | new Wearable(
13 | 'binance_us_upper_body',
14 | 'Binance US Hoodie',
15 | 'Binance US Hoodie',
16 | 'upper_body',
17 | 'uncommon',
18 | ['BaseMale', 'BaseFemale']
19 | )
20 | ]
21 |
22 |
--------------------------------------------------------------------------------
/webapp/src/components/AssetPage/ItemDetail/ItemDetail.container.ts:
--------------------------------------------------------------------------------
1 | import { connect } from 'react-redux'
2 |
3 | import { RootState } from '../../../modules/reducer'
4 | import { getWallet } from '../../../modules/wallet/selectors'
5 | import { MapStateProps } from './ItemDetail.types'
6 | import ItemDetail from './ItemDetail'
7 |
8 | const mapState = (state: RootState): MapStateProps => ({
9 | wallet: getWallet(state)
10 | })
11 |
12 | const mapDispatch = () => ({})
13 |
14 | export default connect(mapState, mapDispatch)(ItemDetail)
15 |
--------------------------------------------------------------------------------
/webapp/src/components/AssetProviderPage/AssetProviderPage.types.ts:
--------------------------------------------------------------------------------
1 | import { Order } from '@dcl/schemas'
2 | import { Asset, AssetType } from '../../modules/asset/types'
3 |
4 | export type Props