Skip to content

Commit

Permalink
Merge pull request #62 from briansinw3b/main
Browse files Browse the repository at this point in the history
Open edition Drop
  • Loading branch information
0xandee authored Mar 13, 2024
2 parents 020f313 + 7a60f1d commit bc7af0c
Show file tree
Hide file tree
Showing 12 changed files with 1,068 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ flex_marketplace/.snfoundry_cache/
tool-versions

.vscode/
target
6 changes: 6 additions & 0 deletions flex_marketplace/Scarb.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "alexandria_storage"
version = "0.2.0"
source = "git+https://github.com/keep-starknet-strange/alexandria.git?tag=cairo-v2.3.0-rc0#ae1d5149ff601a7ac5b39edc867d33ebd83d7f4f"

[[package]]
name = "flex"
version = "0.1.0"
dependencies = [
"alexandria_storage",
"openzeppelin",
"snforge_std",
]
Expand Down
1 change: 1 addition & 0 deletions flex_marketplace/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2023_01"
starknet = "2.4.3"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.14.0" }
openzeppelin = { git = "https://github.com/openzeppelin/cairo-contracts", tag = "v0.8.0" }
alexandria_storage = { git = "https://github.com/keep-starknet-strange/alexandria.git", tag = "cairo-v2.3.0-rc0" }

[scripts]
test = "snforge test"
Expand Down
3 changes: 2 additions & 1 deletion flex_marketplace/src/lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ mod marketplace {
mod merkle;
mod order_types;
mod reentrancy_guard;
mod openedition;
}

mod openedition;
mod contract_deployer;
mod currency_manager;
mod ERC721_flex;
mod execution_manager;
mod marketplace;
mod proxy;
Expand Down
14 changes: 14 additions & 0 deletions flex_marketplace/src/marketplace/openedition.cairo
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
mod interfaces {
mod IFlexDrop;
mod IFlexDropContractMetadata;
mod INonFungibleFlexDropToken;
}

mod ERC721_open_edition;

mod FlexDrop;

mod erc721_metadata {
mod ERC721_metadata;
}

Loading

0 comments on commit bc7af0c

Please sign in to comment.