-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added vrf_mock #481
base: main
Are you sure you want to change the base?
added vrf_mock #481
Conversation
@@ -13,7 +13,9 @@ stark_vrf = {git = "https://github.com/dojoengine/stark-vrf"} | |||
alexandria_math = { git = "https://github.com/keep-starknet-strange/alexandria.git" } | |||
|
|||
[dev-dependencies] | |||
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag = "v0.30.0" } | |||
snforge_std = "0.31.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change the version of snforge?
@@ -13,7 +13,9 @@ stark_vrf = {git = "https://github.com/dojoengine/stark-vrf"} | |||
alexandria_math = { git = "https://github.com/keep-starknet-strange/alexandria.git" } | |||
|
|||
[dev-dependencies] | |||
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag = "v0.30.0" } | |||
snforge_std = "0.31.0" | |||
openzeppelin_testing = { git = "https://github.com/OpenZeppelin/cairo-contracts.git", tag = "v0.18.0" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why import this? It's not used? Also the others OZ lib no?
@@ -715,7 +717,7 @@ mod tests { | |||
} | |||
|
|||
#[test] | |||
#[fork("Sepolia")] | |||
// #[fork("Sepolia")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why uncomment this?
} | ||
|
||
|
||
#[starknet::component] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You copy pasta the VRF for the mock?
WIP