sablier 2.0.3-beta.1 → 2.0.3-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,300 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [
5
+ { "name": "initialAttestor", "type": "address", "internalType": "address" },
6
+ { "name": "initialComptroller", "type": "address", "internalType": "address" }
7
+ ],
8
+ "stateMutability": "nonpayable"
9
+ },
10
+ {
11
+ "type": "function",
12
+ "name": "attestor",
13
+ "inputs": [],
14
+ "outputs": [{ "name": "", "type": "address", "internalType": "address" }],
15
+ "stateMutability": "view"
16
+ },
17
+ {
18
+ "type": "function",
19
+ "name": "comptroller",
20
+ "inputs": [],
21
+ "outputs": [{ "name": "", "type": "address", "internalType": "contract ISablierComptroller" }],
22
+ "stateMutability": "view"
23
+ },
24
+ {
25
+ "type": "function",
26
+ "name": "computeMerkleLT",
27
+ "inputs": [
28
+ { "name": "campaignCreator", "type": "address", "internalType": "address" },
29
+ {
30
+ "name": "campaignParams",
31
+ "type": "tuple",
32
+ "internalType": "struct MerkleLT.ConstructorParams",
33
+ "components": [
34
+ { "name": "campaignName", "type": "string", "internalType": "string" },
35
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
36
+ { "name": "cancelable", "type": "bool", "internalType": "bool" },
37
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
38
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
39
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
40
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
41
+ { "name": "lockup", "type": "address", "internalType": "contract ISablierLockup" },
42
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
43
+ { "name": "shape", "type": "string", "internalType": "string" },
44
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
45
+ {
46
+ "name": "tranchesWithPercentages",
47
+ "type": "tuple[]",
48
+ "internalType": "struct MerkleLT.TrancheWithPercentage[]",
49
+ "components": [
50
+ { "name": "unlockPercentage", "type": "uint64", "internalType": "UD2x18" },
51
+ { "name": "duration", "type": "uint40", "internalType": "uint40" }
52
+ ]
53
+ },
54
+ { "name": "transferable", "type": "bool", "internalType": "bool" },
55
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
56
+ ]
57
+ }
58
+ ],
59
+ "outputs": [{ "name": "merkleLT", "type": "address", "internalType": "address" }],
60
+ "stateMutability": "view"
61
+ },
62
+ {
63
+ "type": "function",
64
+ "name": "createMerkleLT",
65
+ "inputs": [
66
+ {
67
+ "name": "campaignParams",
68
+ "type": "tuple",
69
+ "internalType": "struct MerkleLT.ConstructorParams",
70
+ "components": [
71
+ { "name": "campaignName", "type": "string", "internalType": "string" },
72
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
73
+ { "name": "cancelable", "type": "bool", "internalType": "bool" },
74
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
75
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
76
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
77
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
78
+ { "name": "lockup", "type": "address", "internalType": "contract ISablierLockup" },
79
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
80
+ { "name": "shape", "type": "string", "internalType": "string" },
81
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
82
+ {
83
+ "name": "tranchesWithPercentages",
84
+ "type": "tuple[]",
85
+ "internalType": "struct MerkleLT.TrancheWithPercentage[]",
86
+ "components": [
87
+ { "name": "unlockPercentage", "type": "uint64", "internalType": "UD2x18" },
88
+ { "name": "duration", "type": "uint40", "internalType": "uint40" }
89
+ ]
90
+ },
91
+ { "name": "transferable", "type": "bool", "internalType": "bool" },
92
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
93
+ ]
94
+ },
95
+ { "name": "aggregateAmount", "type": "uint256", "internalType": "uint256" },
96
+ { "name": "recipientCount", "type": "uint256", "internalType": "uint256" }
97
+ ],
98
+ "outputs": [
99
+ { "name": "merkleLT", "type": "address", "internalType": "contract ISablierMerkleLT" }
100
+ ],
101
+ "stateMutability": "nonpayable"
102
+ },
103
+ {
104
+ "type": "function",
105
+ "name": "isPercentagesSum100",
106
+ "inputs": [
107
+ {
108
+ "name": "tranches",
109
+ "type": "tuple[]",
110
+ "internalType": "struct MerkleLT.TrancheWithPercentage[]",
111
+ "components": [
112
+ { "name": "unlockPercentage", "type": "uint64", "internalType": "UD2x18" },
113
+ { "name": "duration", "type": "uint40", "internalType": "uint40" }
114
+ ]
115
+ }
116
+ ],
117
+ "outputs": [{ "name": "result", "type": "bool", "internalType": "bool" }],
118
+ "stateMutability": "pure"
119
+ },
120
+ {
121
+ "type": "function",
122
+ "name": "nativeToken",
123
+ "inputs": [],
124
+ "outputs": [{ "name": "", "type": "address", "internalType": "address" }],
125
+ "stateMutability": "view"
126
+ },
127
+ {
128
+ "type": "function",
129
+ "name": "setAttestor",
130
+ "inputs": [{ "name": "newAttestor", "type": "address", "internalType": "address" }],
131
+ "outputs": [],
132
+ "stateMutability": "nonpayable"
133
+ },
134
+ {
135
+ "type": "function",
136
+ "name": "setComptroller",
137
+ "inputs": [
138
+ {
139
+ "name": "newComptroller",
140
+ "type": "address",
141
+ "internalType": "contract ISablierComptroller"
142
+ }
143
+ ],
144
+ "outputs": [],
145
+ "stateMutability": "nonpayable"
146
+ },
147
+ {
148
+ "type": "function",
149
+ "name": "setNativeToken",
150
+ "inputs": [{ "name": "newNativeToken", "type": "address", "internalType": "address" }],
151
+ "outputs": [],
152
+ "stateMutability": "nonpayable"
153
+ },
154
+ {
155
+ "type": "function",
156
+ "name": "transferFeesToComptroller",
157
+ "inputs": [],
158
+ "outputs": [],
159
+ "stateMutability": "nonpayable"
160
+ },
161
+ {
162
+ "type": "event",
163
+ "name": "CreateMerkleLT",
164
+ "inputs": [
165
+ {
166
+ "name": "merkleLT",
167
+ "type": "address",
168
+ "indexed": true,
169
+ "internalType": "contract ISablierMerkleLT"
170
+ },
171
+ {
172
+ "name": "campaignParams",
173
+ "type": "tuple",
174
+ "indexed": false,
175
+ "internalType": "struct MerkleLT.ConstructorParams",
176
+ "components": [
177
+ { "name": "campaignName", "type": "string", "internalType": "string" },
178
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
179
+ { "name": "cancelable", "type": "bool", "internalType": "bool" },
180
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
181
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
182
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
183
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
184
+ { "name": "lockup", "type": "address", "internalType": "contract ISablierLockup" },
185
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
186
+ { "name": "shape", "type": "string", "internalType": "string" },
187
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
188
+ {
189
+ "name": "tranchesWithPercentages",
190
+ "type": "tuple[]",
191
+ "internalType": "struct MerkleLT.TrancheWithPercentage[]",
192
+ "components": [
193
+ { "name": "unlockPercentage", "type": "uint64", "internalType": "UD2x18" },
194
+ { "name": "duration", "type": "uint40", "internalType": "uint40" }
195
+ ]
196
+ },
197
+ { "name": "transferable", "type": "bool", "internalType": "bool" },
198
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
199
+ ]
200
+ },
201
+ { "name": "aggregateAmount", "type": "uint256", "indexed": false, "internalType": "uint256" },
202
+ { "name": "totalDuration", "type": "uint256", "indexed": false, "internalType": "uint256" },
203
+ { "name": "recipientCount", "type": "uint256", "indexed": false, "internalType": "uint256" },
204
+ { "name": "attestor", "type": "address", "indexed": false, "internalType": "address" },
205
+ { "name": "comptroller", "type": "address", "indexed": false, "internalType": "address" },
206
+ { "name": "minFeeUSD", "type": "uint256", "indexed": false, "internalType": "uint256" }
207
+ ],
208
+ "anonymous": false
209
+ },
210
+ {
211
+ "type": "event",
212
+ "name": "SetAttestor",
213
+ "inputs": [
214
+ { "name": "comptroller", "type": "address", "indexed": true, "internalType": "address" },
215
+ {
216
+ "name": "previousAttestor",
217
+ "type": "address",
218
+ "indexed": false,
219
+ "internalType": "address"
220
+ },
221
+ { "name": "newAttestor", "type": "address", "indexed": false, "internalType": "address" }
222
+ ],
223
+ "anonymous": false
224
+ },
225
+ {
226
+ "type": "event",
227
+ "name": "SetComptroller",
228
+ "inputs": [
229
+ {
230
+ "name": "oldComptroller",
231
+ "type": "address",
232
+ "indexed": false,
233
+ "internalType": "contract ISablierComptroller"
234
+ },
235
+ {
236
+ "name": "newComptroller",
237
+ "type": "address",
238
+ "indexed": false,
239
+ "internalType": "contract ISablierComptroller"
240
+ }
241
+ ],
242
+ "anonymous": false
243
+ },
244
+ {
245
+ "type": "event",
246
+ "name": "SetNativeToken",
247
+ "inputs": [
248
+ { "name": "comptroller", "type": "address", "indexed": true, "internalType": "address" },
249
+ { "name": "nativeToken", "type": "address", "indexed": false, "internalType": "address" }
250
+ ],
251
+ "anonymous": false
252
+ },
253
+ {
254
+ "type": "event",
255
+ "name": "TransferFeesToComptroller",
256
+ "inputs": [
257
+ {
258
+ "name": "comptroller",
259
+ "type": "address",
260
+ "indexed": true,
261
+ "internalType": "contract ISablierComptroller"
262
+ },
263
+ { "name": "feeAmount", "type": "uint256", "indexed": false, "internalType": "uint256" }
264
+ ],
265
+ "anonymous": false
266
+ },
267
+ {
268
+ "type": "error",
269
+ "name": "Comptrollerable_CallerNotComptroller",
270
+ "inputs": [
271
+ { "name": "comptroller", "type": "address", "internalType": "address" },
272
+ { "name": "caller", "type": "address", "internalType": "address" }
273
+ ]
274
+ },
275
+ {
276
+ "type": "error",
277
+ "name": "Comptrollerable_UnsupportedInterfaceId",
278
+ "inputs": [
279
+ { "name": "previousComptroller", "type": "address", "internalType": "address" },
280
+ { "name": "newComptroller", "type": "address", "internalType": "address" },
281
+ { "name": "minimalInterfaceId", "type": "bytes4", "internalType": "bytes4" }
282
+ ]
283
+ },
284
+ {
285
+ "type": "error",
286
+ "name": "SablierFactoryMerkleBase_ForbidNativeToken",
287
+ "inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
288
+ },
289
+ {
290
+ "type": "error",
291
+ "name": "SablierFactoryMerkleBase_NativeTokenAlreadySet",
292
+ "inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
293
+ },
294
+ { "type": "error", "name": "SablierFactoryMerkleBase_NativeTokenZeroAddress", "inputs": [] },
295
+ {
296
+ "type": "error",
297
+ "name": "SablierFactoryMerkleLT_TotalPercentageNotOneHundred",
298
+ "inputs": [{ "name": "totalPercentage", "type": "uint64", "internalType": "uint64" }]
299
+ }
300
+ ]
@@ -0,0 +1,272 @@
1
+ [
2
+ {
3
+ "type": "constructor",
4
+ "inputs": [
5
+ { "name": "initialAttestor", "type": "address", "internalType": "address" },
6
+ { "name": "initialComptroller", "type": "address", "internalType": "address" }
7
+ ],
8
+ "stateMutability": "nonpayable"
9
+ },
10
+ {
11
+ "type": "function",
12
+ "name": "attestor",
13
+ "inputs": [],
14
+ "outputs": [{ "name": "", "type": "address", "internalType": "address" }],
15
+ "stateMutability": "view"
16
+ },
17
+ {
18
+ "type": "function",
19
+ "name": "comptroller",
20
+ "inputs": [],
21
+ "outputs": [{ "name": "", "type": "address", "internalType": "contract ISablierComptroller" }],
22
+ "stateMutability": "view"
23
+ },
24
+ {
25
+ "type": "function",
26
+ "name": "computeMerkleVCA",
27
+ "inputs": [
28
+ { "name": "campaignCreator", "type": "address", "internalType": "address" },
29
+ {
30
+ "name": "campaignParams",
31
+ "type": "tuple",
32
+ "internalType": "struct MerkleVCA.ConstructorParams",
33
+ "components": [
34
+ { "name": "aggregateAmount", "type": "uint128", "internalType": "uint128" },
35
+ { "name": "campaignName", "type": "string", "internalType": "string" },
36
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
37
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
38
+ { "name": "enableRedistribution", "type": "bool", "internalType": "bool" },
39
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
40
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
41
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
42
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
43
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
44
+ { "name": "unlockPercentage", "type": "uint256", "internalType": "UD60x18" },
45
+ { "name": "vestingEndTime", "type": "uint40", "internalType": "uint40" },
46
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
47
+ ]
48
+ }
49
+ ],
50
+ "outputs": [{ "name": "merkleVCA", "type": "address", "internalType": "address" }],
51
+ "stateMutability": "view"
52
+ },
53
+ {
54
+ "type": "function",
55
+ "name": "createMerkleVCA",
56
+ "inputs": [
57
+ {
58
+ "name": "campaignParams",
59
+ "type": "tuple",
60
+ "internalType": "struct MerkleVCA.ConstructorParams",
61
+ "components": [
62
+ { "name": "aggregateAmount", "type": "uint128", "internalType": "uint128" },
63
+ { "name": "campaignName", "type": "string", "internalType": "string" },
64
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
65
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
66
+ { "name": "enableRedistribution", "type": "bool", "internalType": "bool" },
67
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
68
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
69
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
70
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
71
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
72
+ { "name": "unlockPercentage", "type": "uint256", "internalType": "UD60x18" },
73
+ { "name": "vestingEndTime", "type": "uint40", "internalType": "uint40" },
74
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
75
+ ]
76
+ },
77
+ { "name": "recipientCount", "type": "uint256", "internalType": "uint256" }
78
+ ],
79
+ "outputs": [
80
+ { "name": "merkleVCA", "type": "address", "internalType": "contract ISablierMerkleVCA" }
81
+ ],
82
+ "stateMutability": "nonpayable"
83
+ },
84
+ {
85
+ "type": "function",
86
+ "name": "nativeToken",
87
+ "inputs": [],
88
+ "outputs": [{ "name": "", "type": "address", "internalType": "address" }],
89
+ "stateMutability": "view"
90
+ },
91
+ {
92
+ "type": "function",
93
+ "name": "setAttestor",
94
+ "inputs": [{ "name": "newAttestor", "type": "address", "internalType": "address" }],
95
+ "outputs": [],
96
+ "stateMutability": "nonpayable"
97
+ },
98
+ {
99
+ "type": "function",
100
+ "name": "setComptroller",
101
+ "inputs": [
102
+ {
103
+ "name": "newComptroller",
104
+ "type": "address",
105
+ "internalType": "contract ISablierComptroller"
106
+ }
107
+ ],
108
+ "outputs": [],
109
+ "stateMutability": "nonpayable"
110
+ },
111
+ {
112
+ "type": "function",
113
+ "name": "setNativeToken",
114
+ "inputs": [{ "name": "newNativeToken", "type": "address", "internalType": "address" }],
115
+ "outputs": [],
116
+ "stateMutability": "nonpayable"
117
+ },
118
+ {
119
+ "type": "function",
120
+ "name": "transferFeesToComptroller",
121
+ "inputs": [],
122
+ "outputs": [],
123
+ "stateMutability": "nonpayable"
124
+ },
125
+ {
126
+ "type": "event",
127
+ "name": "CreateMerkleVCA",
128
+ "inputs": [
129
+ {
130
+ "name": "merkleVCA",
131
+ "type": "address",
132
+ "indexed": true,
133
+ "internalType": "contract ISablierMerkleVCA"
134
+ },
135
+ {
136
+ "name": "campaignParams",
137
+ "type": "tuple",
138
+ "indexed": false,
139
+ "internalType": "struct MerkleVCA.ConstructorParams",
140
+ "components": [
141
+ { "name": "aggregateAmount", "type": "uint128", "internalType": "uint128" },
142
+ { "name": "campaignName", "type": "string", "internalType": "string" },
143
+ { "name": "campaignStartTime", "type": "uint40", "internalType": "uint40" },
144
+ { "name": "claimType", "type": "uint8", "internalType": "enum ClaimType" },
145
+ { "name": "enableRedistribution", "type": "bool", "internalType": "bool" },
146
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" },
147
+ { "name": "initialAdmin", "type": "address", "internalType": "address" },
148
+ { "name": "ipfsCID", "type": "string", "internalType": "string" },
149
+ { "name": "merkleRoot", "type": "bytes32", "internalType": "bytes32" },
150
+ { "name": "token", "type": "address", "internalType": "contract IERC20" },
151
+ { "name": "unlockPercentage", "type": "uint256", "internalType": "UD60x18" },
152
+ { "name": "vestingEndTime", "type": "uint40", "internalType": "uint40" },
153
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" }
154
+ ]
155
+ },
156
+ { "name": "recipientCount", "type": "uint256", "indexed": false, "internalType": "uint256" },
157
+ { "name": "attestor", "type": "address", "indexed": false, "internalType": "address" },
158
+ { "name": "comptroller", "type": "address", "indexed": false, "internalType": "address" },
159
+ { "name": "minFeeUSD", "type": "uint256", "indexed": false, "internalType": "uint256" }
160
+ ],
161
+ "anonymous": false
162
+ },
163
+ {
164
+ "type": "event",
165
+ "name": "SetAttestor",
166
+ "inputs": [
167
+ { "name": "comptroller", "type": "address", "indexed": true, "internalType": "address" },
168
+ {
169
+ "name": "previousAttestor",
170
+ "type": "address",
171
+ "indexed": false,
172
+ "internalType": "address"
173
+ },
174
+ { "name": "newAttestor", "type": "address", "indexed": false, "internalType": "address" }
175
+ ],
176
+ "anonymous": false
177
+ },
178
+ {
179
+ "type": "event",
180
+ "name": "SetComptroller",
181
+ "inputs": [
182
+ {
183
+ "name": "oldComptroller",
184
+ "type": "address",
185
+ "indexed": false,
186
+ "internalType": "contract ISablierComptroller"
187
+ },
188
+ {
189
+ "name": "newComptroller",
190
+ "type": "address",
191
+ "indexed": false,
192
+ "internalType": "contract ISablierComptroller"
193
+ }
194
+ ],
195
+ "anonymous": false
196
+ },
197
+ {
198
+ "type": "event",
199
+ "name": "SetNativeToken",
200
+ "inputs": [
201
+ { "name": "comptroller", "type": "address", "indexed": true, "internalType": "address" },
202
+ { "name": "nativeToken", "type": "address", "indexed": false, "internalType": "address" }
203
+ ],
204
+ "anonymous": false
205
+ },
206
+ {
207
+ "type": "event",
208
+ "name": "TransferFeesToComptroller",
209
+ "inputs": [
210
+ {
211
+ "name": "comptroller",
212
+ "type": "address",
213
+ "indexed": true,
214
+ "internalType": "contract ISablierComptroller"
215
+ },
216
+ { "name": "feeAmount", "type": "uint256", "indexed": false, "internalType": "uint256" }
217
+ ],
218
+ "anonymous": false
219
+ },
220
+ {
221
+ "type": "error",
222
+ "name": "Comptrollerable_CallerNotComptroller",
223
+ "inputs": [
224
+ { "name": "comptroller", "type": "address", "internalType": "address" },
225
+ { "name": "caller", "type": "address", "internalType": "address" }
226
+ ]
227
+ },
228
+ {
229
+ "type": "error",
230
+ "name": "Comptrollerable_UnsupportedInterfaceId",
231
+ "inputs": [
232
+ { "name": "previousComptroller", "type": "address", "internalType": "address" },
233
+ { "name": "newComptroller", "type": "address", "internalType": "address" },
234
+ { "name": "minimalInterfaceId", "type": "bytes4", "internalType": "bytes4" }
235
+ ]
236
+ },
237
+ {
238
+ "type": "error",
239
+ "name": "SablierFactoryMerkleBase_ForbidNativeToken",
240
+ "inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
241
+ },
242
+ {
243
+ "type": "error",
244
+ "name": "SablierFactoryMerkleBase_NativeTokenAlreadySet",
245
+ "inputs": [{ "name": "nativeToken", "type": "address", "internalType": "address" }]
246
+ },
247
+ { "type": "error", "name": "SablierFactoryMerkleBase_NativeTokenZeroAddress", "inputs": [] },
248
+ { "type": "error", "name": "SablierFactoryMerkleVCA_AggregateAmountZero", "inputs": [] },
249
+ { "type": "error", "name": "SablierFactoryMerkleVCA_ExpirationTimeZero", "inputs": [] },
250
+ {
251
+ "type": "error",
252
+ "name": "SablierFactoryMerkleVCA_ExpirationTooEarly",
253
+ "inputs": [
254
+ { "name": "vestingEndTime", "type": "uint40", "internalType": "uint40" },
255
+ { "name": "expiration", "type": "uint40", "internalType": "uint40" }
256
+ ]
257
+ },
258
+ { "type": "error", "name": "SablierFactoryMerkleVCA_StartTimeZero", "inputs": [] },
259
+ {
260
+ "type": "error",
261
+ "name": "SablierFactoryMerkleVCA_UnlockPercentageTooHigh",
262
+ "inputs": [{ "name": "unlockPercentage", "type": "uint256", "internalType": "UD60x18" }]
263
+ },
264
+ {
265
+ "type": "error",
266
+ "name": "SablierFactoryMerkleVCA_VestingEndTimeNotGreaterThanVestingStartTime",
267
+ "inputs": [
268
+ { "name": "vestingStartTime", "type": "uint40", "internalType": "uint40" },
269
+ { "name": "vestingEndTime", "type": "uint40", "internalType": "uint40" }
270
+ ]
271
+ }
272
+ ]