Skip to content

Commit

Permalink
feat(contract): add whitelist
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLucqs committed Mar 18, 2024
1 parent 8277c41 commit ef41cab
Show file tree
Hide file tree
Showing 4 changed files with 539 additions and 1 deletion.
2 changes: 1 addition & 1 deletion onchain/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "vault"
version = "0.1.0"

[dependencies]
starknet = ">=2.5.3"
starknet = "2.6.0"
openzeppelin = { git = "https://github.com/OpenZeppelin/cairo-contracts", branch = "main" }

[tool.fmt]
Expand Down
1 change: 1 addition & 0 deletions onchain/src/lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ pub mod spending_limit;

#[cfg(test)]
mod tests;
pub mod whitelist;
1 change: 1 addition & 0 deletions onchain/src/whitelist.cairo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod whitelist;
Loading

0 comments on commit ef41cab

Please sign in to comment.