@flaunch/sdk 0.8.2 → 0.8.3-beta.0
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.
- package/dist/abi/FlaunchZap.d.ts +106 -102
- package/dist/abi/FlaunchZap.d.ts.map +1 -1
- package/dist/abi/TreasuryManager.d.ts +106 -0
- package/dist/abi/TreasuryManager.d.ts.map +1 -0
- package/dist/abi/TreasuryManagerFactory.d.ts +268 -242
- package/dist/abi/TreasuryManagerFactory.d.ts.map +1 -1
- package/dist/abi/index.cjs +476 -322
- package/dist/abi/index.cjs.map +1 -1
- package/dist/abi/index.js +476 -322
- package/dist/abi/index.js.map +1 -1
- package/dist/addresses/index.cjs +23 -6
- package/dist/addresses/index.cjs.map +1 -1
- package/dist/addresses/index.js +21 -7
- package/dist/addresses/index.js.map +1 -1
- package/dist/addresses.d.ts +6 -1
- package/dist/addresses.d.ts.map +1 -1
- package/dist/clients/FlaunchZapClient.d.ts +8 -1
- package/dist/clients/FlaunchZapClient.d.ts.map +1 -1
- package/dist/clients/TreasuryManagerClient.d.ts +60 -0
- package/dist/clients/TreasuryManagerClient.d.ts.map +1 -0
- package/dist/clients/TreasuryManagerFactoryClient.d.ts +34 -7
- package/dist/clients/TreasuryManagerFactoryClient.d.ts.map +1 -1
- package/dist/helpers/index.cjs +61 -0
- package/dist/helpers/index.cjs.map +1 -1
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.d.ts.map +1 -1
- package/dist/helpers/index.js +62 -2
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/permissions.d.ts +10 -0
- package/dist/helpers/permissions.d.ts.map +1 -0
- package/dist/index.cjs.js +935 -381
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +933 -383
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/sdk/FlaunchSDK.d.ts +71 -6
- package/dist/sdk/FlaunchSDK.d.ts.map +1 -1
- package/dist/types.d.ts +8 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,434 +1,460 @@
|
|
|
1
1
|
export declare const TreasuryManagerFactoryAbi: readonly [{
|
|
2
|
-
readonly inputs: readonly [{
|
|
3
|
-
readonly internalType: "address";
|
|
4
|
-
readonly name: "_protocolOwner";
|
|
5
|
-
readonly type: "address";
|
|
6
|
-
}, {
|
|
7
|
-
readonly internalType: "address";
|
|
8
|
-
readonly name: "_feeEscrow";
|
|
9
|
-
readonly type: "address";
|
|
10
|
-
}];
|
|
11
|
-
readonly stateMutability: "nonpayable";
|
|
12
2
|
readonly type: "constructor";
|
|
13
|
-
}, {
|
|
14
|
-
readonly inputs: readonly [];
|
|
15
|
-
readonly name: "AccessControlBadConfirmation";
|
|
16
|
-
readonly type: "error";
|
|
17
|
-
}, {
|
|
18
|
-
readonly inputs: readonly [{
|
|
19
|
-
readonly internalType: "address";
|
|
20
|
-
readonly name: "account";
|
|
21
|
-
readonly type: "address";
|
|
22
|
-
}, {
|
|
23
|
-
readonly internalType: "bytes32";
|
|
24
|
-
readonly name: "neededRole";
|
|
25
|
-
readonly type: "bytes32";
|
|
26
|
-
}];
|
|
27
|
-
readonly name: "AccessControlUnauthorizedAccount";
|
|
28
|
-
readonly type: "error";
|
|
29
|
-
}, {
|
|
30
|
-
readonly inputs: readonly [];
|
|
31
|
-
readonly name: "AlreadyInitialized";
|
|
32
|
-
readonly type: "error";
|
|
33
|
-
}, {
|
|
34
|
-
readonly inputs: readonly [];
|
|
35
|
-
readonly name: "NewOwnerIsZeroAddress";
|
|
36
|
-
readonly type: "error";
|
|
37
|
-
}, {
|
|
38
|
-
readonly inputs: readonly [];
|
|
39
|
-
readonly name: "NoHandoverRequest";
|
|
40
|
-
readonly type: "error";
|
|
41
|
-
}, {
|
|
42
|
-
readonly inputs: readonly [];
|
|
43
|
-
readonly name: "Unauthorized";
|
|
44
|
-
readonly type: "error";
|
|
45
|
-
}, {
|
|
46
|
-
readonly inputs: readonly [];
|
|
47
|
-
readonly name: "UnknownManagerImplemention";
|
|
48
|
-
readonly type: "error";
|
|
49
|
-
}, {
|
|
50
|
-
readonly anonymous: false;
|
|
51
|
-
readonly inputs: readonly [{
|
|
52
|
-
readonly indexed: true;
|
|
53
|
-
readonly internalType: "address";
|
|
54
|
-
readonly name: "_manager";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
}, {
|
|
57
|
-
readonly indexed: true;
|
|
58
|
-
readonly internalType: "address";
|
|
59
|
-
readonly name: "_managerImplementation";
|
|
60
|
-
readonly type: "address";
|
|
61
|
-
}];
|
|
62
|
-
readonly name: "ManagerDeployed";
|
|
63
|
-
readonly type: "event";
|
|
64
|
-
}, {
|
|
65
|
-
readonly anonymous: false;
|
|
66
|
-
readonly inputs: readonly [{
|
|
67
|
-
readonly indexed: true;
|
|
68
|
-
readonly internalType: "address";
|
|
69
|
-
readonly name: "_managerImplementation";
|
|
70
|
-
readonly type: "address";
|
|
71
|
-
}];
|
|
72
|
-
readonly name: "ManagerImplementationApproved";
|
|
73
|
-
readonly type: "event";
|
|
74
|
-
}, {
|
|
75
|
-
readonly anonymous: false;
|
|
76
|
-
readonly inputs: readonly [{
|
|
77
|
-
readonly indexed: true;
|
|
78
|
-
readonly internalType: "address";
|
|
79
|
-
readonly name: "_managerImplementation";
|
|
80
|
-
readonly type: "address";
|
|
81
|
-
}];
|
|
82
|
-
readonly name: "ManagerImplementationUnapproved";
|
|
83
|
-
readonly type: "event";
|
|
84
|
-
}, {
|
|
85
|
-
readonly anonymous: false;
|
|
86
|
-
readonly inputs: readonly [{
|
|
87
|
-
readonly indexed: true;
|
|
88
|
-
readonly internalType: "address";
|
|
89
|
-
readonly name: "pendingOwner";
|
|
90
|
-
readonly type: "address";
|
|
91
|
-
}];
|
|
92
|
-
readonly name: "OwnershipHandoverCanceled";
|
|
93
|
-
readonly type: "event";
|
|
94
|
-
}, {
|
|
95
|
-
readonly anonymous: false;
|
|
96
|
-
readonly inputs: readonly [{
|
|
97
|
-
readonly indexed: true;
|
|
98
|
-
readonly internalType: "address";
|
|
99
|
-
readonly name: "pendingOwner";
|
|
100
|
-
readonly type: "address";
|
|
101
|
-
}];
|
|
102
|
-
readonly name: "OwnershipHandoverRequested";
|
|
103
|
-
readonly type: "event";
|
|
104
|
-
}, {
|
|
105
|
-
readonly anonymous: false;
|
|
106
|
-
readonly inputs: readonly [{
|
|
107
|
-
readonly indexed: true;
|
|
108
|
-
readonly internalType: "address";
|
|
109
|
-
readonly name: "oldOwner";
|
|
110
|
-
readonly type: "address";
|
|
111
|
-
}, {
|
|
112
|
-
readonly indexed: true;
|
|
113
|
-
readonly internalType: "address";
|
|
114
|
-
readonly name: "newOwner";
|
|
115
|
-
readonly type: "address";
|
|
116
|
-
}];
|
|
117
|
-
readonly name: "OwnershipTransferred";
|
|
118
|
-
readonly type: "event";
|
|
119
|
-
}, {
|
|
120
|
-
readonly anonymous: false;
|
|
121
3
|
readonly inputs: readonly [{
|
|
122
|
-
readonly
|
|
123
|
-
readonly internalType: "bytes32";
|
|
124
|
-
readonly name: "role";
|
|
125
|
-
readonly type: "bytes32";
|
|
126
|
-
}, {
|
|
127
|
-
readonly indexed: true;
|
|
128
|
-
readonly internalType: "bytes32";
|
|
129
|
-
readonly name: "previousAdminRole";
|
|
130
|
-
readonly type: "bytes32";
|
|
131
|
-
}, {
|
|
132
|
-
readonly indexed: true;
|
|
133
|
-
readonly internalType: "bytes32";
|
|
134
|
-
readonly name: "newAdminRole";
|
|
135
|
-
readonly type: "bytes32";
|
|
136
|
-
}];
|
|
137
|
-
readonly name: "RoleAdminChanged";
|
|
138
|
-
readonly type: "event";
|
|
139
|
-
}, {
|
|
140
|
-
readonly anonymous: false;
|
|
141
|
-
readonly inputs: readonly [{
|
|
142
|
-
readonly indexed: true;
|
|
143
|
-
readonly internalType: "bytes32";
|
|
144
|
-
readonly name: "role";
|
|
145
|
-
readonly type: "bytes32";
|
|
146
|
-
}, {
|
|
147
|
-
readonly indexed: true;
|
|
148
|
-
readonly internalType: "address";
|
|
149
|
-
readonly name: "account";
|
|
4
|
+
readonly name: "_protocolOwner";
|
|
150
5
|
readonly type: "address";
|
|
151
|
-
}, {
|
|
152
|
-
readonly indexed: true;
|
|
153
6
|
readonly internalType: "address";
|
|
154
|
-
readonly name: "sender";
|
|
155
|
-
readonly type: "address";
|
|
156
|
-
}];
|
|
157
|
-
readonly name: "RoleGranted";
|
|
158
|
-
readonly type: "event";
|
|
159
|
-
}, {
|
|
160
|
-
readonly anonymous: false;
|
|
161
|
-
readonly inputs: readonly [{
|
|
162
|
-
readonly indexed: true;
|
|
163
|
-
readonly internalType: "bytes32";
|
|
164
|
-
readonly name: "role";
|
|
165
|
-
readonly type: "bytes32";
|
|
166
7
|
}, {
|
|
167
|
-
readonly
|
|
168
|
-
readonly internalType: "address";
|
|
169
|
-
readonly name: "account";
|
|
8
|
+
readonly name: "_feeEscrow";
|
|
170
9
|
readonly type: "address";
|
|
171
|
-
}, {
|
|
172
|
-
readonly indexed: true;
|
|
173
10
|
readonly internalType: "address";
|
|
174
|
-
readonly name: "sender";
|
|
175
|
-
readonly type: "address";
|
|
176
11
|
}];
|
|
177
|
-
readonly
|
|
178
|
-
readonly type: "event";
|
|
12
|
+
readonly stateMutability: "nonpayable";
|
|
179
13
|
}, {
|
|
180
|
-
readonly
|
|
14
|
+
readonly type: "function";
|
|
181
15
|
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
16
|
+
readonly inputs: readonly [];
|
|
182
17
|
readonly outputs: readonly [{
|
|
183
|
-
readonly internalType: "bytes32";
|
|
184
18
|
readonly name: "";
|
|
185
19
|
readonly type: "bytes32";
|
|
20
|
+
readonly internalType: "bytes32";
|
|
186
21
|
}];
|
|
187
22
|
readonly stateMutability: "view";
|
|
188
|
-
readonly type: "function";
|
|
189
23
|
}, {
|
|
24
|
+
readonly type: "function";
|
|
25
|
+
readonly name: "approveManager";
|
|
190
26
|
readonly inputs: readonly [{
|
|
191
|
-
readonly internalType: "address";
|
|
192
27
|
readonly name: "_managerImplementation";
|
|
193
28
|
readonly type: "address";
|
|
29
|
+
readonly internalType: "address";
|
|
194
30
|
}];
|
|
195
|
-
readonly name: "approveManager";
|
|
196
31
|
readonly outputs: readonly [];
|
|
197
32
|
readonly stateMutability: "nonpayable";
|
|
198
|
-
readonly type: "function";
|
|
199
33
|
}, {
|
|
34
|
+
readonly type: "function";
|
|
35
|
+
readonly name: "approvedManagerImplementation";
|
|
200
36
|
readonly inputs: readonly [{
|
|
201
|
-
readonly internalType: "address";
|
|
202
37
|
readonly name: "_managerImplementation";
|
|
203
38
|
readonly type: "address";
|
|
39
|
+
readonly internalType: "address";
|
|
204
40
|
}];
|
|
205
|
-
readonly name: "approvedManagerImplementation";
|
|
206
41
|
readonly outputs: readonly [{
|
|
207
|
-
readonly internalType: "bool";
|
|
208
42
|
readonly name: "_approved";
|
|
209
43
|
readonly type: "bool";
|
|
44
|
+
readonly internalType: "bool";
|
|
210
45
|
}];
|
|
211
46
|
readonly stateMutability: "view";
|
|
212
|
-
readonly type: "function";
|
|
213
47
|
}, {
|
|
214
|
-
readonly
|
|
48
|
+
readonly type: "function";
|
|
215
49
|
readonly name: "cancelOwnershipHandover";
|
|
50
|
+
readonly inputs: readonly [];
|
|
216
51
|
readonly outputs: readonly [];
|
|
217
52
|
readonly stateMutability: "payable";
|
|
218
|
-
readonly type: "function";
|
|
219
53
|
}, {
|
|
54
|
+
readonly type: "function";
|
|
55
|
+
readonly name: "completeOwnershipHandover";
|
|
220
56
|
readonly inputs: readonly [{
|
|
221
|
-
readonly internalType: "address";
|
|
222
57
|
readonly name: "pendingOwner";
|
|
223
58
|
readonly type: "address";
|
|
59
|
+
readonly internalType: "address";
|
|
224
60
|
}];
|
|
225
|
-
readonly name: "completeOwnershipHandover";
|
|
226
61
|
readonly outputs: readonly [];
|
|
227
62
|
readonly stateMutability: "payable";
|
|
228
|
-
readonly type: "function";
|
|
229
63
|
}, {
|
|
64
|
+
readonly type: "function";
|
|
65
|
+
readonly name: "deployAndInitializeManager";
|
|
230
66
|
readonly inputs: readonly [{
|
|
231
|
-
readonly internalType: "address";
|
|
232
67
|
readonly name: "_managerImplementation";
|
|
233
68
|
readonly type: "address";
|
|
234
|
-
}, {
|
|
235
69
|
readonly internalType: "address";
|
|
70
|
+
}, {
|
|
236
71
|
readonly name: "_owner";
|
|
237
72
|
readonly type: "address";
|
|
73
|
+
readonly internalType: "address";
|
|
238
74
|
}, {
|
|
239
|
-
readonly internalType: "bytes";
|
|
240
75
|
readonly name: "_data";
|
|
241
76
|
readonly type: "bytes";
|
|
77
|
+
readonly internalType: "bytes";
|
|
242
78
|
}];
|
|
243
|
-
readonly name: "deployAndInitializeManager";
|
|
244
79
|
readonly outputs: readonly [{
|
|
245
|
-
readonly internalType: "address payable";
|
|
246
80
|
readonly name: "manager_";
|
|
247
81
|
readonly type: "address";
|
|
82
|
+
readonly internalType: "address payable";
|
|
248
83
|
}];
|
|
249
84
|
readonly stateMutability: "nonpayable";
|
|
250
|
-
readonly type: "function";
|
|
251
85
|
}, {
|
|
86
|
+
readonly type: "function";
|
|
87
|
+
readonly name: "deployAndInitializeManager";
|
|
252
88
|
readonly inputs: readonly [{
|
|
253
|
-
readonly internalType: "address";
|
|
254
89
|
readonly name: "_managerImplementation";
|
|
255
90
|
readonly type: "address";
|
|
91
|
+
readonly internalType: "address";
|
|
92
|
+
}, {
|
|
93
|
+
readonly name: "_owner";
|
|
94
|
+
readonly type: "address";
|
|
95
|
+
readonly internalType: "address";
|
|
96
|
+
}, {
|
|
97
|
+
readonly name: "_data";
|
|
98
|
+
readonly type: "bytes";
|
|
99
|
+
readonly internalType: "bytes";
|
|
100
|
+
}, {
|
|
101
|
+
readonly name: "_permissions";
|
|
102
|
+
readonly type: "address";
|
|
103
|
+
readonly internalType: "address";
|
|
256
104
|
}];
|
|
257
|
-
readonly name: "deployManager";
|
|
258
105
|
readonly outputs: readonly [{
|
|
259
|
-
readonly internalType: "address payable";
|
|
260
106
|
readonly name: "manager_";
|
|
261
107
|
readonly type: "address";
|
|
108
|
+
readonly internalType: "address payable";
|
|
262
109
|
}];
|
|
263
110
|
readonly stateMutability: "nonpayable";
|
|
111
|
+
}, {
|
|
264
112
|
readonly type: "function";
|
|
113
|
+
readonly name: "deployManager";
|
|
114
|
+
readonly inputs: readonly [{
|
|
115
|
+
readonly name: "_managerImplementation";
|
|
116
|
+
readonly type: "address";
|
|
117
|
+
readonly internalType: "address";
|
|
118
|
+
}];
|
|
119
|
+
readonly outputs: readonly [{
|
|
120
|
+
readonly name: "manager_";
|
|
121
|
+
readonly type: "address";
|
|
122
|
+
readonly internalType: "address payable";
|
|
123
|
+
}];
|
|
124
|
+
readonly stateMutability: "nonpayable";
|
|
265
125
|
}, {
|
|
266
|
-
readonly
|
|
126
|
+
readonly type: "function";
|
|
267
127
|
readonly name: "feeEscrow";
|
|
128
|
+
readonly inputs: readonly [];
|
|
268
129
|
readonly outputs: readonly [{
|
|
269
|
-
readonly internalType: "contract IFeeEscrow";
|
|
270
130
|
readonly name: "";
|
|
271
131
|
readonly type: "address";
|
|
132
|
+
readonly internalType: "contract IFeeEscrow";
|
|
272
133
|
}];
|
|
273
134
|
readonly stateMutability: "view";
|
|
274
|
-
readonly type: "function";
|
|
275
135
|
}, {
|
|
136
|
+
readonly type: "function";
|
|
137
|
+
readonly name: "getRoleAdmin";
|
|
276
138
|
readonly inputs: readonly [{
|
|
277
|
-
readonly internalType: "bytes32";
|
|
278
139
|
readonly name: "role";
|
|
279
140
|
readonly type: "bytes32";
|
|
141
|
+
readonly internalType: "bytes32";
|
|
280
142
|
}];
|
|
281
|
-
readonly name: "getRoleAdmin";
|
|
282
143
|
readonly outputs: readonly [{
|
|
283
|
-
readonly internalType: "bytes32";
|
|
284
144
|
readonly name: "";
|
|
285
145
|
readonly type: "bytes32";
|
|
146
|
+
readonly internalType: "bytes32";
|
|
286
147
|
}];
|
|
287
148
|
readonly stateMutability: "view";
|
|
288
|
-
readonly type: "function";
|
|
289
149
|
}, {
|
|
150
|
+
readonly type: "function";
|
|
151
|
+
readonly name: "grantRole";
|
|
290
152
|
readonly inputs: readonly [{
|
|
291
|
-
readonly internalType: "bytes32";
|
|
292
153
|
readonly name: "role";
|
|
293
154
|
readonly type: "bytes32";
|
|
155
|
+
readonly internalType: "bytes32";
|
|
294
156
|
}, {
|
|
295
|
-
readonly internalType: "address";
|
|
296
157
|
readonly name: "account";
|
|
297
158
|
readonly type: "address";
|
|
159
|
+
readonly internalType: "address";
|
|
298
160
|
}];
|
|
299
|
-
readonly name: "grantRole";
|
|
300
161
|
readonly outputs: readonly [];
|
|
301
162
|
readonly stateMutability: "nonpayable";
|
|
302
|
-
readonly type: "function";
|
|
303
163
|
}, {
|
|
164
|
+
readonly type: "function";
|
|
165
|
+
readonly name: "hasRole";
|
|
304
166
|
readonly inputs: readonly [{
|
|
305
|
-
readonly internalType: "bytes32";
|
|
306
167
|
readonly name: "role";
|
|
307
168
|
readonly type: "bytes32";
|
|
169
|
+
readonly internalType: "bytes32";
|
|
308
170
|
}, {
|
|
309
|
-
readonly internalType: "address";
|
|
310
171
|
readonly name: "account";
|
|
311
172
|
readonly type: "address";
|
|
173
|
+
readonly internalType: "address";
|
|
312
174
|
}];
|
|
313
|
-
readonly name: "hasRole";
|
|
314
175
|
readonly outputs: readonly [{
|
|
315
|
-
readonly internalType: "bool";
|
|
316
176
|
readonly name: "";
|
|
317
177
|
readonly type: "bool";
|
|
178
|
+
readonly internalType: "bool";
|
|
318
179
|
}];
|
|
319
180
|
readonly stateMutability: "view";
|
|
320
|
-
readonly type: "function";
|
|
321
181
|
}, {
|
|
182
|
+
readonly type: "function";
|
|
183
|
+
readonly name: "managerImplementation";
|
|
322
184
|
readonly inputs: readonly [{
|
|
323
|
-
readonly internalType: "address";
|
|
324
185
|
readonly name: "_manager";
|
|
325
186
|
readonly type: "address";
|
|
187
|
+
readonly internalType: "address";
|
|
326
188
|
}];
|
|
327
|
-
readonly name: "managerImplementation";
|
|
328
189
|
readonly outputs: readonly [{
|
|
329
|
-
readonly internalType: "address";
|
|
330
190
|
readonly name: "_managerImplementation";
|
|
331
191
|
readonly type: "address";
|
|
192
|
+
readonly internalType: "address";
|
|
332
193
|
}];
|
|
333
194
|
readonly stateMutability: "view";
|
|
334
|
-
readonly type: "function";
|
|
335
195
|
}, {
|
|
336
|
-
readonly
|
|
196
|
+
readonly type: "function";
|
|
337
197
|
readonly name: "owner";
|
|
198
|
+
readonly inputs: readonly [];
|
|
338
199
|
readonly outputs: readonly [{
|
|
339
|
-
readonly internalType: "address";
|
|
340
200
|
readonly name: "result";
|
|
341
201
|
readonly type: "address";
|
|
202
|
+
readonly internalType: "address";
|
|
342
203
|
}];
|
|
343
204
|
readonly stateMutability: "view";
|
|
344
|
-
readonly type: "function";
|
|
345
205
|
}, {
|
|
206
|
+
readonly type: "function";
|
|
207
|
+
readonly name: "ownershipHandoverExpiresAt";
|
|
346
208
|
readonly inputs: readonly [{
|
|
347
|
-
readonly internalType: "address";
|
|
348
209
|
readonly name: "pendingOwner";
|
|
349
210
|
readonly type: "address";
|
|
211
|
+
readonly internalType: "address";
|
|
350
212
|
}];
|
|
351
|
-
readonly name: "ownershipHandoverExpiresAt";
|
|
352
213
|
readonly outputs: readonly [{
|
|
353
|
-
readonly internalType: "uint256";
|
|
354
214
|
readonly name: "result";
|
|
355
215
|
readonly type: "uint256";
|
|
216
|
+
readonly internalType: "uint256";
|
|
356
217
|
}];
|
|
357
218
|
readonly stateMutability: "view";
|
|
358
|
-
readonly type: "function";
|
|
359
219
|
}, {
|
|
360
|
-
readonly
|
|
220
|
+
readonly type: "function";
|
|
361
221
|
readonly name: "renounceOwnership";
|
|
222
|
+
readonly inputs: readonly [];
|
|
362
223
|
readonly outputs: readonly [];
|
|
363
224
|
readonly stateMutability: "payable";
|
|
364
|
-
readonly type: "function";
|
|
365
225
|
}, {
|
|
226
|
+
readonly type: "function";
|
|
227
|
+
readonly name: "renounceRole";
|
|
366
228
|
readonly inputs: readonly [{
|
|
367
|
-
readonly internalType: "bytes32";
|
|
368
229
|
readonly name: "role";
|
|
369
230
|
readonly type: "bytes32";
|
|
231
|
+
readonly internalType: "bytes32";
|
|
370
232
|
}, {
|
|
371
|
-
readonly internalType: "address";
|
|
372
233
|
readonly name: "callerConfirmation";
|
|
373
234
|
readonly type: "address";
|
|
235
|
+
readonly internalType: "address";
|
|
374
236
|
}];
|
|
375
|
-
readonly name: "renounceRole";
|
|
376
237
|
readonly outputs: readonly [];
|
|
377
238
|
readonly stateMutability: "nonpayable";
|
|
378
|
-
readonly type: "function";
|
|
379
239
|
}, {
|
|
380
|
-
readonly
|
|
240
|
+
readonly type: "function";
|
|
381
241
|
readonly name: "requestOwnershipHandover";
|
|
242
|
+
readonly inputs: readonly [];
|
|
382
243
|
readonly outputs: readonly [];
|
|
383
244
|
readonly stateMutability: "payable";
|
|
384
|
-
readonly type: "function";
|
|
385
245
|
}, {
|
|
246
|
+
readonly type: "function";
|
|
247
|
+
readonly name: "revokeRole";
|
|
386
248
|
readonly inputs: readonly [{
|
|
387
|
-
readonly internalType: "bytes32";
|
|
388
249
|
readonly name: "role";
|
|
389
250
|
readonly type: "bytes32";
|
|
251
|
+
readonly internalType: "bytes32";
|
|
390
252
|
}, {
|
|
391
|
-
readonly internalType: "address";
|
|
392
253
|
readonly name: "account";
|
|
393
254
|
readonly type: "address";
|
|
255
|
+
readonly internalType: "address";
|
|
394
256
|
}];
|
|
395
|
-
readonly name: "revokeRole";
|
|
396
257
|
readonly outputs: readonly [];
|
|
397
258
|
readonly stateMutability: "nonpayable";
|
|
398
|
-
readonly type: "function";
|
|
399
259
|
}, {
|
|
260
|
+
readonly type: "function";
|
|
261
|
+
readonly name: "supportsInterface";
|
|
400
262
|
readonly inputs: readonly [{
|
|
401
|
-
readonly internalType: "bytes4";
|
|
402
263
|
readonly name: "interfaceId";
|
|
403
264
|
readonly type: "bytes4";
|
|
265
|
+
readonly internalType: "bytes4";
|
|
404
266
|
}];
|
|
405
|
-
readonly name: "supportsInterface";
|
|
406
267
|
readonly outputs: readonly [{
|
|
407
|
-
readonly internalType: "bool";
|
|
408
268
|
readonly name: "";
|
|
409
269
|
readonly type: "bool";
|
|
270
|
+
readonly internalType: "bool";
|
|
410
271
|
}];
|
|
411
272
|
readonly stateMutability: "view";
|
|
412
|
-
readonly type: "function";
|
|
413
273
|
}, {
|
|
274
|
+
readonly type: "function";
|
|
275
|
+
readonly name: "transferOwnership";
|
|
414
276
|
readonly inputs: readonly [{
|
|
415
|
-
readonly internalType: "address";
|
|
416
277
|
readonly name: "newOwner";
|
|
417
278
|
readonly type: "address";
|
|
279
|
+
readonly internalType: "address";
|
|
418
280
|
}];
|
|
419
|
-
readonly name: "transferOwnership";
|
|
420
281
|
readonly outputs: readonly [];
|
|
421
282
|
readonly stateMutability: "payable";
|
|
422
|
-
readonly type: "function";
|
|
423
283
|
}, {
|
|
284
|
+
readonly type: "function";
|
|
285
|
+
readonly name: "unapproveManager";
|
|
424
286
|
readonly inputs: readonly [{
|
|
425
|
-
readonly internalType: "address";
|
|
426
287
|
readonly name: "_managerImplementation";
|
|
427
288
|
readonly type: "address";
|
|
289
|
+
readonly internalType: "address";
|
|
428
290
|
}];
|
|
429
|
-
readonly name: "unapproveManager";
|
|
430
291
|
readonly outputs: readonly [];
|
|
431
292
|
readonly stateMutability: "nonpayable";
|
|
432
|
-
|
|
293
|
+
}, {
|
|
294
|
+
readonly type: "event";
|
|
295
|
+
readonly name: "ManagerDeployed";
|
|
296
|
+
readonly inputs: readonly [{
|
|
297
|
+
readonly name: "_manager";
|
|
298
|
+
readonly type: "address";
|
|
299
|
+
readonly indexed: true;
|
|
300
|
+
readonly internalType: "address";
|
|
301
|
+
}, {
|
|
302
|
+
readonly name: "_managerImplementation";
|
|
303
|
+
readonly type: "address";
|
|
304
|
+
readonly indexed: true;
|
|
305
|
+
readonly internalType: "address";
|
|
306
|
+
}];
|
|
307
|
+
readonly anonymous: false;
|
|
308
|
+
}, {
|
|
309
|
+
readonly type: "event";
|
|
310
|
+
readonly name: "ManagerImplementationApproved";
|
|
311
|
+
readonly inputs: readonly [{
|
|
312
|
+
readonly name: "_managerImplementation";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
readonly indexed: true;
|
|
315
|
+
readonly internalType: "address";
|
|
316
|
+
}];
|
|
317
|
+
readonly anonymous: false;
|
|
318
|
+
}, {
|
|
319
|
+
readonly type: "event";
|
|
320
|
+
readonly name: "ManagerImplementationUnapproved";
|
|
321
|
+
readonly inputs: readonly [{
|
|
322
|
+
readonly name: "_managerImplementation";
|
|
323
|
+
readonly type: "address";
|
|
324
|
+
readonly indexed: true;
|
|
325
|
+
readonly internalType: "address";
|
|
326
|
+
}];
|
|
327
|
+
readonly anonymous: false;
|
|
328
|
+
}, {
|
|
329
|
+
readonly type: "event";
|
|
330
|
+
readonly name: "OwnershipHandoverCanceled";
|
|
331
|
+
readonly inputs: readonly [{
|
|
332
|
+
readonly name: "pendingOwner";
|
|
333
|
+
readonly type: "address";
|
|
334
|
+
readonly indexed: true;
|
|
335
|
+
readonly internalType: "address";
|
|
336
|
+
}];
|
|
337
|
+
readonly anonymous: false;
|
|
338
|
+
}, {
|
|
339
|
+
readonly type: "event";
|
|
340
|
+
readonly name: "OwnershipHandoverRequested";
|
|
341
|
+
readonly inputs: readonly [{
|
|
342
|
+
readonly name: "pendingOwner";
|
|
343
|
+
readonly type: "address";
|
|
344
|
+
readonly indexed: true;
|
|
345
|
+
readonly internalType: "address";
|
|
346
|
+
}];
|
|
347
|
+
readonly anonymous: false;
|
|
348
|
+
}, {
|
|
349
|
+
readonly type: "event";
|
|
350
|
+
readonly name: "OwnershipTransferred";
|
|
351
|
+
readonly inputs: readonly [{
|
|
352
|
+
readonly name: "oldOwner";
|
|
353
|
+
readonly type: "address";
|
|
354
|
+
readonly indexed: true;
|
|
355
|
+
readonly internalType: "address";
|
|
356
|
+
}, {
|
|
357
|
+
readonly name: "newOwner";
|
|
358
|
+
readonly type: "address";
|
|
359
|
+
readonly indexed: true;
|
|
360
|
+
readonly internalType: "address";
|
|
361
|
+
}];
|
|
362
|
+
readonly anonymous: false;
|
|
363
|
+
}, {
|
|
364
|
+
readonly type: "event";
|
|
365
|
+
readonly name: "RoleAdminChanged";
|
|
366
|
+
readonly inputs: readonly [{
|
|
367
|
+
readonly name: "role";
|
|
368
|
+
readonly type: "bytes32";
|
|
369
|
+
readonly indexed: true;
|
|
370
|
+
readonly internalType: "bytes32";
|
|
371
|
+
}, {
|
|
372
|
+
readonly name: "previousAdminRole";
|
|
373
|
+
readonly type: "bytes32";
|
|
374
|
+
readonly indexed: true;
|
|
375
|
+
readonly internalType: "bytes32";
|
|
376
|
+
}, {
|
|
377
|
+
readonly name: "newAdminRole";
|
|
378
|
+
readonly type: "bytes32";
|
|
379
|
+
readonly indexed: true;
|
|
380
|
+
readonly internalType: "bytes32";
|
|
381
|
+
}];
|
|
382
|
+
readonly anonymous: false;
|
|
383
|
+
}, {
|
|
384
|
+
readonly type: "event";
|
|
385
|
+
readonly name: "RoleGranted";
|
|
386
|
+
readonly inputs: readonly [{
|
|
387
|
+
readonly name: "role";
|
|
388
|
+
readonly type: "bytes32";
|
|
389
|
+
readonly indexed: true;
|
|
390
|
+
readonly internalType: "bytes32";
|
|
391
|
+
}, {
|
|
392
|
+
readonly name: "account";
|
|
393
|
+
readonly type: "address";
|
|
394
|
+
readonly indexed: true;
|
|
395
|
+
readonly internalType: "address";
|
|
396
|
+
}, {
|
|
397
|
+
readonly name: "sender";
|
|
398
|
+
readonly type: "address";
|
|
399
|
+
readonly indexed: true;
|
|
400
|
+
readonly internalType: "address";
|
|
401
|
+
}];
|
|
402
|
+
readonly anonymous: false;
|
|
403
|
+
}, {
|
|
404
|
+
readonly type: "event";
|
|
405
|
+
readonly name: "RoleRevoked";
|
|
406
|
+
readonly inputs: readonly [{
|
|
407
|
+
readonly name: "role";
|
|
408
|
+
readonly type: "bytes32";
|
|
409
|
+
readonly indexed: true;
|
|
410
|
+
readonly internalType: "bytes32";
|
|
411
|
+
}, {
|
|
412
|
+
readonly name: "account";
|
|
413
|
+
readonly type: "address";
|
|
414
|
+
readonly indexed: true;
|
|
415
|
+
readonly internalType: "address";
|
|
416
|
+
}, {
|
|
417
|
+
readonly name: "sender";
|
|
418
|
+
readonly type: "address";
|
|
419
|
+
readonly indexed: true;
|
|
420
|
+
readonly internalType: "address";
|
|
421
|
+
}];
|
|
422
|
+
readonly anonymous: false;
|
|
423
|
+
}, {
|
|
424
|
+
readonly type: "error";
|
|
425
|
+
readonly name: "AccessControlBadConfirmation";
|
|
426
|
+
readonly inputs: readonly [];
|
|
427
|
+
}, {
|
|
428
|
+
readonly type: "error";
|
|
429
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
430
|
+
readonly inputs: readonly [{
|
|
431
|
+
readonly name: "account";
|
|
432
|
+
readonly type: "address";
|
|
433
|
+
readonly internalType: "address";
|
|
434
|
+
}, {
|
|
435
|
+
readonly name: "neededRole";
|
|
436
|
+
readonly type: "bytes32";
|
|
437
|
+
readonly internalType: "bytes32";
|
|
438
|
+
}];
|
|
439
|
+
}, {
|
|
440
|
+
readonly type: "error";
|
|
441
|
+
readonly name: "AlreadyInitialized";
|
|
442
|
+
readonly inputs: readonly [];
|
|
443
|
+
}, {
|
|
444
|
+
readonly type: "error";
|
|
445
|
+
readonly name: "NewOwnerIsZeroAddress";
|
|
446
|
+
readonly inputs: readonly [];
|
|
447
|
+
}, {
|
|
448
|
+
readonly type: "error";
|
|
449
|
+
readonly name: "NoHandoverRequest";
|
|
450
|
+
readonly inputs: readonly [];
|
|
451
|
+
}, {
|
|
452
|
+
readonly type: "error";
|
|
453
|
+
readonly name: "Unauthorized";
|
|
454
|
+
readonly inputs: readonly [];
|
|
455
|
+
}, {
|
|
456
|
+
readonly type: "error";
|
|
457
|
+
readonly name: "UnknownManagerImplemention";
|
|
458
|
+
readonly inputs: readonly [];
|
|
433
459
|
}];
|
|
434
460
|
//# sourceMappingURL=TreasuryManagerFactory.d.ts.map
|