-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.example.json
76 lines (76 loc) · 1.87 KB
/
config.example.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"31337": {
"funderMnemonic": "${MNEMONIC}",
"providers": {
"local": {
"url": "${FUNDER_RPC_URL_LOCALHOST}"
}
},
"options": {
"gasPriceOracle": [
{
"gasPriceStrategy": "sanitizedProviderRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2,
"baseFeeMultiplierThreshold": 5,
"baseFeeMultiplier": 2,
"priorityFee": {
"value": 3.12,
"unit": "gwei"
}
},
{
"gasPriceStrategy": "providerRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2
},
{
"gasPriceStrategy": "constantGasPrice",
"gasPrice": {
"value": 10,
"unit": "gwei"
}
}
],
"fulfillmentGasLimit": 200000
},
"merkleFunderDepositories": [
{
"owner": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
"values": [
{
"recipient": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
"lowThreshold": {
"value": 10010,
"unit": "ether"
},
"highThreshold": {
"value": 10020,
"unit": "ether"
}
},
{
"recipient": "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC",
"lowThreshold": {
"value": 9000,
"unit": "ether"
},
"highThreshold": {
"value": 10050,
"unit": "ether"
}
},
{
"recipient": "0x90F79bf6EB2c4f870365E785982E1f101E93b906",
"lowThreshold": {
"value": 10020,
"unit": "ether"
},
"highThreshold": {
"value": 10040,
"unit": "ether"
}
}
]
}
]
}
}