Skip to content

Commit

Permalink
feat: primary sales (decentraland#372)
Browse files Browse the repository at this point in the history
* feat: added item module

* feat: support items and nfts on many components

* feat: Add box component (decentraland#369)

* ci: fix stg env

* chore: Update rollbar and ignore it only in dev (decentraland#366)

* Update rollbar and ignore it only in dev

* Use enabled

* fix: correctly parse and format big values

* Add box component

* Use CSS color from variables

Co-authored-by: Juan Cazala <[email protected]>
Co-authored-by: Nicolás Santángelo <[email protected]>

* feat: Add Lands tab as first tab (decentraland#373)

* ci: fix stg env

* chore: Update rollbar and ignore it only in dev (decentraland#366)

* Update rollbar and ignore it only in dev

* Use enabled

* fix: correctly parse and format big values

* First steps into adding land as a nav section

* Modify the NFT Sidebar section to show only what's needed

* Add lands page

* Add internationalization

Co-authored-by: Juan Cazala <[email protected]>
Co-authored-by: Nicolás Santángelo <[email protected]>

* chore: rename component

* feat: ditch non-fullscreen map

* fix: pass isMap property down to NFTFilters, in case no query param is present

* feat: added missing sections

* feat: wire result type and sidebar

* feat: wire remaining filters

* feat: make default in browse page to be items

* fix: add type to key

* feat: item detail page (decentraland#376)

* feat: add asset type. introduce ItemDetail. make item provider. generalize components

* feat: use BaseAPI everywhere. fetch Item. update reducer

* feat: item detail page

* fix: keys

* fix: new server

* feat: hide price on items that are not on sale

* chore: translations

* feat: Asset buy page (decentraland#380)

* feat: Asset buy page

* feat: available + creator

* feat: feedback

* fix: prevent sending two requests while browsing

* feat: Perform primary sale (decentraland#381)

* feat: Perform primary sales

* Fix web3x ESM tests issues

* Add tests for the sagas

* Add tests for the new sagas and reducers

* Hook up actions with the BuyItemModal component

* Containerize buy item and buy nft modals

* feat: buy item transaction activity (decentraland#382)

* feat: buy item transaction activity

* feat: correctly show item txs

* fix: fetch items correctly

* feat: homepage items (decentraland#385)

* feat: homepage items

* fix: items in homepage

Co-authored-by: Juan Cazala <[email protected]>

* chore: fix test

* chore: fix test env

* ci: configure vercel

* fix: format mana in buy item transaction detail

* chore: track items (decentraland#387)

* chore: analytics for items

* chore: fix tests

* fix: item column styles on mobile (decentraland#388)

* fix: Add missing item filter (decentraland#389)

* refactor: asset module (decentraland#392)

* refactor: move ResultType into assets/types

* refactor: rename ResultType into AssetType

* refactor: rename resultType into assetType

* refactor: rename results into assetType

* refactor: move utils and types into asset module

* fix: circular deps

* chore: remove unused stuff

* refactor: nft redux stuff into asset stuff

* refactor: NFTBrowse into AssetBrowse

* refactor: NFTList into AssetList

* refactor: NFTBrowseOptions -> BrowseOptions

* chore: move import up

Co-authored-by: Lautaro Petaccio <[email protected]>
Co-authored-by: Nicolás Santángelo <[email protected]>
  • Loading branch information
3 people authored Aug 6, 2021
1 parent 15c3645 commit 2d1c15c
Show file tree
Hide file tree
Showing 332 changed files with 5,520 additions and 30,977 deletions.
2 changes: 1 addition & 1 deletion webapp/.ci/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ REACT_APP_NETWORK=ropsten
REACT_APP_CHAIN_ID=3

# Decentraland APIs
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.io
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.io/v1
REACT_APP_ATLAS_SERVER_URL=https://api.decentraland.io
REACT_APP_PEER_URL=https://peer.decentraland.zone
REACT_APP_TRANSACTIONS_API_URL=https://transactions-api.decentraland.io/v1
Expand Down
2 changes: 1 addition & 1 deletion webapp/.ci/.env.prd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ REACT_APP_NETWORK=mainnet
REACT_APP_CHAIN_ID=1

# Decentraland APIs
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.org
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.org/v1
REACT_APP_ATLAS_SERVER_URL=https://api.decentraland.org
REACT_APP_PEER_URL=https://peer.decentraland.org
REACT_APP_TRANSACTIONS_API_URL=https://transactions-api.decentraland.org/v1
Expand Down
2 changes: 1 addition & 1 deletion webapp/.ci/.env.stg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ REACT_APP_NETWORK=mainnet
REACT_APP_CHAIN_ID=1

# Decentraland APIs
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.net
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.net/v1
REACT_APP_ATLAS_SERVER_URL=https://api.decentraland.net
REACT_APP_PEER_URL=https://peer.decentraland.org
REACT_APP_TRANSACTIONS_API_URL=https://transactions-api.decentraland.net/v1
Expand Down
2 changes: 1 addition & 1 deletion webapp/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ REACT_APP_NETWORK=mainnet
REACT_APP_CHAIN_ID=1

# Decentraland APIs
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.org
REACT_APP_NFT_SERVER_URL=https://nft-api.decentraland.org/v1
REACT_APP_ATLAS_SERVER_URL=https://api.decentraland.org
REACT_APP_PEER_URL=https://peer.decentraland.org
REACT_APP_TRANSACTIONS_API_URL=https://transactions-api.decentraland.org/v1
Expand Down
4 changes: 4 additions & 0 deletions webapp/contracts.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
"ERC721": {
"source": "files",
"abiFile": "./src/contracts/ERC721.json"
},
"CollectionStore": {
"source": "files",
"abiFile": "./src/contracts/CollectionStore.json"
}
}
}
11 changes: 0 additions & 11 deletions webapp/now.json

This file was deleted.

Loading

0 comments on commit 2d1c15c

Please sign in to comment.