-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add support for new contract on Trasak flow * fix: update the TradeService import * feat: update contractId * feat: bump decentraland-transactions * feat: add support for old flow of MarketplaceV2 and CollectionStore * chore: remove console.logs * fix: add missing order in metadata type * feat: update contract addresses * feat: add all contractIds for different flows * feat: fix the order sagas spec file * test: fix tests * fix: fix build * feat: add contractIds for ETH contracts * fix: rollback marketplace-server pointing to localhost * feat: bump dcl-dapps * feat: remove marketplaceServerURL
- Loading branch information
1 parent
d4a8b6c
commit 52b7b4e
Showing
29 changed files
with
1,853 additions
and
76 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...rc/components/Modals/BuyWithCardExplanationModal/BuyWithCardExplanationModal.container.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import { connect } from 'react-redux' | ||
import { Order } from '@dcl/schemas' | ||
import { Asset } from '../../../modules/asset/types' | ||
import { openTransak } from '../../../modules/transak/actions' | ||
import BuyWithCardExplanationModal from './BuyWithCardExplanationModal' | ||
import { MapDispatch, MapDispatchProps } from './BuyWithCardExplanationModal.types' | ||
|
||
const mapDispatch = (dispatch: MapDispatch): MapDispatchProps => ({ | ||
onContinue: (asset: Asset) => dispatch(openTransak(asset)) | ||
onContinue: (asset: Asset, order?: Order) => dispatch(openTransak(asset, order)) | ||
}) | ||
|
||
export default connect(null, mapDispatch)(BuyWithCardExplanationModal) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...pp/src/components/Modals/BuyWithCardExplanationModal/BuyWithCardExplanationModal.types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.