-
Notifications
You must be signed in to change notification settings - Fork 0
/
moccasin.toml
53 lines (43 loc) · 1.58 KB
/
moccasin.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
43
44
45
46
47
48
49
50
51
52
53
[project]
dependencies = [
"snekmate",
]
[networks.contracts.raffle]
deployer_script = "deploy_raffle.py"
[networks.contracts.link_token]
deployer_script = "mock_deployer/deploy_link.py"
[networks.contracts.vrf_coordinator_v2]
deployer_script = "mock_deployer/deploy_vrf_coordinator.py"
[networks.pyevm.extra_data]
sub_id = 0
gas_lane = "0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae"
entrance_fee = 1e17
callback_gas_limit = 500_000
interval = 60
[networks.sepolia]
url = "$SEPOLIA_RPC_URL"
chain_id = 11155111
default_account_name = "default"
[networks.sepolia.contracts]
link_token = { address = "0x779877A7B0D9E8603169DdbD7836e478b4624789" }
vrf_coordinator_v2_5 = { address = "0xD7f86b4b8Cae7D942340FF628F82735b7a20893a" }
[networks.sepolia.extra_data]
sub_id = 0 # Add yours here!
gas_lane = "0x3fd2fec10d06ee8f65e7f2e95f5c56511359ece3f33960ad8a866ae24a8ff10b"
entrance_fee = 1e17
callback_gas_limit = 500_000
interval = 60
[networks.anvil.extra_data]
sub_id = 0 # Add yours here!
gas_lane = "0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae"
entrance_fee = 1e17
callback_gas_limit = 500_000
interval = 60
# [networks.anvil]
# url = "http://127.0.0.1:8545"
# chain_id = 31337
# default_account_name = "anvil1"
# unsafe_password_file = "$ANVIL1_PASSWORD_FILE"
# live_or_staging = false
# prompt_live = false
# You can view all configuration options at https://cyfrin.github.io/moccasin/all_moccasin_toml_parameters.html