Skip to content

Commit

Permalink
Merge pull request #61 from NethermindEth/feat/28_dva_transfer_manager
Browse files Browse the repository at this point in the history
Feat: dva transfer manager
  • Loading branch information
EgeCaner authored Jan 12, 2025
2 parents 4bd3f16 + c67ea9f commit b9026be
Show file tree
Hide file tree
Showing 9 changed files with 975 additions and 36 deletions.
8 changes: 8 additions & 0 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ dependencies = [
name = "dva"
version = "0.1.0"
dependencies = [
"openzeppelin_account",
"openzeppelin_introspection",
"openzeppelin_token",
"openzeppelin_utils",
"registry",
"roles",
"storage",
"token",
]

[[package]]
Expand Down Expand Up @@ -168,6 +175,7 @@ name = "storage"
version = "0.1.0"
dependencies = [
"compliance",
"dva",
"snforge_std",
]

Expand Down
2 changes: 2 additions & 0 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ readme = "README.md"
assert_macros = "2.9.2"
starknet = "2.9.2"
snforge_std = "0.35.1"
openzeppelin_account = "0.20.0"
openzeppelin_token = "0.20.0"
openzeppelin_access = "0.20.0"
openzeppelin_introspection = "0.20.0"
openzeppelin_upgrades = "0.20.0"
openzeppelin_utils = "0.20.0"
openzeppelin_security = "0.20.0"

[workspace.tool.fmt]
Expand Down
11 changes: 9 additions & 2 deletions crates/dva/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ edition = "2024_07"

[dependencies]
starknet.workspace = true
roles = {path="../roles"}
openzeppelin_token.workspace = true
openzeppelin_account.workspace = true
openzeppelin_introspection.workspace = true
openzeppelin_utils.workspace = true
roles = { path = "../roles" }
token = { path = "../token" }
registry = { path = "../registry" }
storage = { path = "../storage" }

[[target.starknet-contract]]
sierra = true
Expand All @@ -14,4 +21,4 @@ sierra = true
fmt.workspace = true

[lib]
name= "dva"
name = "dva"
Loading

0 comments on commit b9026be

Please sign in to comment.