Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Develop #8

Merged
merged 2 commits into from
Jun 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## What is CornerStore?

CornerStore is an open source NFT marketplace build by Rarible DAO using the Rarible Protocol. You can easily plug in your NFT contract address and spin up your own marketplace in a couple minutes.
CornerStore is an open source NFT marketplace built by Rarible DAO using the Rarible Protocol. Prosopo has forked and modified the marketplace to work with [OpenBrush's PSP34 contracts](https://github.com/Supercolony-net/openbrush-contracts/tree/main/examples/psp34). The PSP34 contracts have also been modified so that they are [protected](https://github.com/prosopo-io/demo-nft-marketplace/blob/57fe32a36d2988d3076835fc3ebe3a4dad60efa3/contracts/lib.rs#L209) by Prosopo's human verification system.

### Demo

Expand Down Expand Up @@ -28,6 +28,10 @@ Feel free to fork our design files to start redesigning the marketplace.

### How to run locally.

yarn install
```bash
npm install

yarn dev
npm run setup

npm run dev
```
251 changes: 0 additions & 251 deletions contract/lib.rs

This file was deleted.

4 changes: 2 additions & 2 deletions contract/Cargo.toml → contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ ink_prelude = { version = "3.2.0", default-features = false }
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true }

brush = { tag = "v1.7.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34"] }
brush = { tag = "v1.7.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34", "ownable"] }

prosopo = { path = "../../../protocol/contracts", default-features = false, features = ["ink-as-dependency"] }
prosopo = { git = "https://github.com/prosopo-io/protocol", branch = "ink-3.2.0", default-features = false, features = ["ink-as-dependency"] }

base64 = { version = "0.13.0", default-features = false, features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
Expand Down
Loading