forked from djeck1432/spotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scarb.toml
42 lines (32 loc) · 1.04 KB
/
Scarb.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "spotnet"
version = "0.1.0"
edition = "2024_07"
cairo-version = "2.8.2"
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html
[dependencies]
starknet = "2.8.2"
ekubo = { git = "https://github.com/ekuboprotocol/abis", rev = "edb6de8" }
alexandria_math = { git = "https://github.com/keep-starknet-strange/alexandria.git", rev = "8208871" }
openzeppelin = "0.19.0"
[dev-dependencies]
pragma_lib = { git = "https://github.com/astraly-labs/pragma-lib", tag = "2.8.2" }
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.32.0" }
[lib]
[[target.starknet-contract]]
[tool.fmt]
sort-module-level-items = true
[tool.snforge]
fuzzer_runs = 10
[[tool.snforge.fork]]
name = "SEPOLIA"
url = "http://51.195.57.196:6062/v0_7"
block_id.tag = "latest"
[[tool.snforge.fork]]
name = "MAINNET"
url = "http://51.195.57.196:6060/v0_7"
block_id.tag = "latest"
[[tool.snforge.fork]]
name = "MAINNET_FIXED_BLOCK"
url = "http://51.195.57.196:6060/v0_7"
block_id.number = "863242"