@cartesi/cli 2.0.0-alpha.7 → 2.0.0-alpha.8
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/commands/create.d.ts +1 -1
- package/dist/commands/create.d.ts.map +1 -1
- package/dist/commands/create.js +1 -1
- package/dist/commands/rollups/deploy.d.ts.map +1 -1
- package/dist/commands/rollups/deploy.js +21 -9
- package/dist/commands/rollups/start.d.ts.map +1 -1
- package/dist/commands/rollups/start.js +6 -4
- package/dist/commands/send.js +1 -1
- package/dist/compose/rollups/default.env +6 -7
- package/dist/compose/rollups/docker-compose-anvil.yaml +4 -2
- package/dist/compose/rollups/docker-compose-database.yaml +1 -1
- package/dist/compose/rollups/docker-compose-espresso.yaml +6 -32
- package/dist/compose/rollups/docker-compose-explorer.yaml +8 -21
- package/dist/compose/rollups/docker-compose-graphql.yaml +3 -29
- package/dist/compose/rollups/docker-compose-node.yaml +2 -12
- package/dist/compose/rollups/proxy/anvil.yaml +17 -0
- package/dist/config.d.ts +2 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +4 -3
- package/dist/contracts.d.ts +1695 -1636
- package/dist/contracts.d.ts.map +1 -1
- package/dist/contracts.js +632 -592
- package/dist/exec/rollups.js +6 -6
- package/dist/wallet.d.ts.map +1 -1
- package/dist/wallet.js +29 -11
- package/package.json +3 -3
package/dist/contracts.d.ts
CHANGED
|
@@ -1,33 +1,38 @@
|
|
|
1
1
|
export declare const applicationFactoryAbi: readonly [{
|
|
2
|
-
readonly type: "
|
|
3
|
-
readonly anonymous: false;
|
|
2
|
+
readonly type: "function";
|
|
4
3
|
readonly inputs: readonly [{
|
|
5
|
-
readonly name: "
|
|
6
|
-
readonly internalType: "contract
|
|
4
|
+
readonly name: "outputsMerkleRootValidator";
|
|
5
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
7
6
|
readonly type: "address";
|
|
8
|
-
readonly indexed: true;
|
|
9
7
|
}, {
|
|
10
8
|
readonly name: "appOwner";
|
|
11
9
|
readonly internalType: "address";
|
|
12
10
|
readonly type: "address";
|
|
13
|
-
readonly indexed: false;
|
|
14
11
|
}, {
|
|
15
12
|
readonly name: "templateHash";
|
|
16
13
|
readonly internalType: "bytes32";
|
|
17
14
|
readonly type: "bytes32";
|
|
18
|
-
readonly indexed: false;
|
|
19
15
|
}, {
|
|
20
|
-
readonly name: "
|
|
21
|
-
readonly internalType: "
|
|
16
|
+
readonly name: "dataAvailability";
|
|
17
|
+
readonly internalType: "bytes";
|
|
18
|
+
readonly type: "bytes";
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "salt";
|
|
21
|
+
readonly internalType: "bytes32";
|
|
22
|
+
readonly type: "bytes32";
|
|
23
|
+
}];
|
|
24
|
+
readonly name: "calculateApplicationAddress";
|
|
25
|
+
readonly outputs: readonly [{
|
|
26
|
+
readonly name: "";
|
|
27
|
+
readonly internalType: "address";
|
|
22
28
|
readonly type: "address";
|
|
23
|
-
readonly indexed: false;
|
|
24
29
|
}];
|
|
25
|
-
readonly
|
|
30
|
+
readonly stateMutability: "view";
|
|
26
31
|
}, {
|
|
27
32
|
readonly type: "function";
|
|
28
33
|
readonly inputs: readonly [{
|
|
29
|
-
readonly name: "
|
|
30
|
-
readonly internalType: "contract
|
|
34
|
+
readonly name: "outputsMerkleRootValidator";
|
|
35
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
31
36
|
readonly type: "address";
|
|
32
37
|
}, {
|
|
33
38
|
readonly name: "appOwner";
|
|
@@ -37,23 +42,27 @@ export declare const applicationFactoryAbi: readonly [{
|
|
|
37
42
|
readonly name: "templateHash";
|
|
38
43
|
readonly internalType: "bytes32";
|
|
39
44
|
readonly type: "bytes32";
|
|
45
|
+
}, {
|
|
46
|
+
readonly name: "dataAvailability";
|
|
47
|
+
readonly internalType: "bytes";
|
|
48
|
+
readonly type: "bytes";
|
|
40
49
|
}, {
|
|
41
50
|
readonly name: "salt";
|
|
42
51
|
readonly internalType: "bytes32";
|
|
43
52
|
readonly type: "bytes32";
|
|
44
53
|
}];
|
|
45
|
-
readonly name: "
|
|
54
|
+
readonly name: "newApplication";
|
|
46
55
|
readonly outputs: readonly [{
|
|
47
56
|
readonly name: "";
|
|
48
|
-
readonly internalType: "
|
|
57
|
+
readonly internalType: "contract IApplication";
|
|
49
58
|
readonly type: "address";
|
|
50
59
|
}];
|
|
51
|
-
readonly stateMutability: "
|
|
60
|
+
readonly stateMutability: "nonpayable";
|
|
52
61
|
}, {
|
|
53
62
|
readonly type: "function";
|
|
54
63
|
readonly inputs: readonly [{
|
|
55
|
-
readonly name: "
|
|
56
|
-
readonly internalType: "contract
|
|
64
|
+
readonly name: "outputsMerkleRootValidator";
|
|
65
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
57
66
|
readonly type: "address";
|
|
58
67
|
}, {
|
|
59
68
|
readonly name: "appOwner";
|
|
@@ -64,9 +73,9 @@ export declare const applicationFactoryAbi: readonly [{
|
|
|
64
73
|
readonly internalType: "bytes32";
|
|
65
74
|
readonly type: "bytes32";
|
|
66
75
|
}, {
|
|
67
|
-
readonly name: "
|
|
68
|
-
readonly internalType: "
|
|
69
|
-
readonly type: "
|
|
76
|
+
readonly name: "dataAvailability";
|
|
77
|
+
readonly internalType: "bytes";
|
|
78
|
+
readonly type: "bytes";
|
|
70
79
|
}];
|
|
71
80
|
readonly name: "newApplication";
|
|
72
81
|
readonly outputs: readonly [{
|
|
@@ -76,61 +85,74 @@ export declare const applicationFactoryAbi: readonly [{
|
|
|
76
85
|
}];
|
|
77
86
|
readonly stateMutability: "nonpayable";
|
|
78
87
|
}, {
|
|
79
|
-
readonly type: "
|
|
88
|
+
readonly type: "event";
|
|
89
|
+
readonly anonymous: false;
|
|
80
90
|
readonly inputs: readonly [{
|
|
81
|
-
readonly name: "
|
|
82
|
-
readonly internalType: "contract
|
|
91
|
+
readonly name: "outputsMerkleRootValidator";
|
|
92
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
83
93
|
readonly type: "address";
|
|
94
|
+
readonly indexed: true;
|
|
84
95
|
}, {
|
|
85
96
|
readonly name: "appOwner";
|
|
86
97
|
readonly internalType: "address";
|
|
87
98
|
readonly type: "address";
|
|
99
|
+
readonly indexed: false;
|
|
88
100
|
}, {
|
|
89
101
|
readonly name: "templateHash";
|
|
90
102
|
readonly internalType: "bytes32";
|
|
91
103
|
readonly type: "bytes32";
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
readonly
|
|
104
|
+
readonly indexed: false;
|
|
105
|
+
}, {
|
|
106
|
+
readonly name: "dataAvailability";
|
|
107
|
+
readonly internalType: "bytes";
|
|
108
|
+
readonly type: "bytes";
|
|
109
|
+
readonly indexed: false;
|
|
110
|
+
}, {
|
|
111
|
+
readonly name: "appContract";
|
|
96
112
|
readonly internalType: "contract IApplication";
|
|
97
113
|
readonly type: "address";
|
|
114
|
+
readonly indexed: false;
|
|
98
115
|
}];
|
|
99
|
-
readonly
|
|
116
|
+
readonly name: "ApplicationCreated";
|
|
100
117
|
}];
|
|
101
|
-
export declare const applicationFactoryAddress: "
|
|
118
|
+
export declare const applicationFactoryAddress: "0x2210ad1d9B0bD2D470c2bfA4814ab6253BC421A0";
|
|
102
119
|
export declare const applicationFactoryConfig: {
|
|
103
|
-
readonly address: "
|
|
120
|
+
readonly address: "0x2210ad1d9B0bD2D470c2bfA4814ab6253BC421A0";
|
|
104
121
|
readonly abi: readonly [{
|
|
105
|
-
readonly type: "
|
|
106
|
-
readonly anonymous: false;
|
|
122
|
+
readonly type: "function";
|
|
107
123
|
readonly inputs: readonly [{
|
|
108
|
-
readonly name: "
|
|
109
|
-
readonly internalType: "contract
|
|
124
|
+
readonly name: "outputsMerkleRootValidator";
|
|
125
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
110
126
|
readonly type: "address";
|
|
111
|
-
readonly indexed: true;
|
|
112
127
|
}, {
|
|
113
128
|
readonly name: "appOwner";
|
|
114
129
|
readonly internalType: "address";
|
|
115
130
|
readonly type: "address";
|
|
116
|
-
readonly indexed: false;
|
|
117
131
|
}, {
|
|
118
132
|
readonly name: "templateHash";
|
|
119
133
|
readonly internalType: "bytes32";
|
|
120
134
|
readonly type: "bytes32";
|
|
121
|
-
readonly indexed: false;
|
|
122
135
|
}, {
|
|
123
|
-
readonly name: "
|
|
124
|
-
readonly internalType: "
|
|
136
|
+
readonly name: "dataAvailability";
|
|
137
|
+
readonly internalType: "bytes";
|
|
138
|
+
readonly type: "bytes";
|
|
139
|
+
}, {
|
|
140
|
+
readonly name: "salt";
|
|
141
|
+
readonly internalType: "bytes32";
|
|
142
|
+
readonly type: "bytes32";
|
|
143
|
+
}];
|
|
144
|
+
readonly name: "calculateApplicationAddress";
|
|
145
|
+
readonly outputs: readonly [{
|
|
146
|
+
readonly name: "";
|
|
147
|
+
readonly internalType: "address";
|
|
125
148
|
readonly type: "address";
|
|
126
|
-
readonly indexed: false;
|
|
127
149
|
}];
|
|
128
|
-
readonly
|
|
150
|
+
readonly stateMutability: "view";
|
|
129
151
|
}, {
|
|
130
152
|
readonly type: "function";
|
|
131
153
|
readonly inputs: readonly [{
|
|
132
|
-
readonly name: "
|
|
133
|
-
readonly internalType: "contract
|
|
154
|
+
readonly name: "outputsMerkleRootValidator";
|
|
155
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
134
156
|
readonly type: "address";
|
|
135
157
|
}, {
|
|
136
158
|
readonly name: "appOwner";
|
|
@@ -140,23 +162,27 @@ export declare const applicationFactoryConfig: {
|
|
|
140
162
|
readonly name: "templateHash";
|
|
141
163
|
readonly internalType: "bytes32";
|
|
142
164
|
readonly type: "bytes32";
|
|
165
|
+
}, {
|
|
166
|
+
readonly name: "dataAvailability";
|
|
167
|
+
readonly internalType: "bytes";
|
|
168
|
+
readonly type: "bytes";
|
|
143
169
|
}, {
|
|
144
170
|
readonly name: "salt";
|
|
145
171
|
readonly internalType: "bytes32";
|
|
146
172
|
readonly type: "bytes32";
|
|
147
173
|
}];
|
|
148
|
-
readonly name: "
|
|
174
|
+
readonly name: "newApplication";
|
|
149
175
|
readonly outputs: readonly [{
|
|
150
176
|
readonly name: "";
|
|
151
|
-
readonly internalType: "
|
|
177
|
+
readonly internalType: "contract IApplication";
|
|
152
178
|
readonly type: "address";
|
|
153
179
|
}];
|
|
154
|
-
readonly stateMutability: "
|
|
180
|
+
readonly stateMutability: "nonpayable";
|
|
155
181
|
}, {
|
|
156
182
|
readonly type: "function";
|
|
157
183
|
readonly inputs: readonly [{
|
|
158
|
-
readonly name: "
|
|
159
|
-
readonly internalType: "contract
|
|
184
|
+
readonly name: "outputsMerkleRootValidator";
|
|
185
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
160
186
|
readonly type: "address";
|
|
161
187
|
}, {
|
|
162
188
|
readonly name: "appOwner";
|
|
@@ -167,9 +193,9 @@ export declare const applicationFactoryConfig: {
|
|
|
167
193
|
readonly internalType: "bytes32";
|
|
168
194
|
readonly type: "bytes32";
|
|
169
195
|
}, {
|
|
170
|
-
readonly name: "
|
|
171
|
-
readonly internalType: "
|
|
172
|
-
readonly type: "
|
|
196
|
+
readonly name: "dataAvailability";
|
|
197
|
+
readonly internalType: "bytes";
|
|
198
|
+
readonly type: "bytes";
|
|
173
199
|
}];
|
|
174
200
|
readonly name: "newApplication";
|
|
175
201
|
readonly outputs: readonly [{
|
|
@@ -179,40 +205,38 @@ export declare const applicationFactoryConfig: {
|
|
|
179
205
|
}];
|
|
180
206
|
readonly stateMutability: "nonpayable";
|
|
181
207
|
}, {
|
|
182
|
-
readonly type: "
|
|
208
|
+
readonly type: "event";
|
|
209
|
+
readonly anonymous: false;
|
|
183
210
|
readonly inputs: readonly [{
|
|
184
|
-
readonly name: "
|
|
185
|
-
readonly internalType: "contract
|
|
211
|
+
readonly name: "outputsMerkleRootValidator";
|
|
212
|
+
readonly internalType: "contract IOutputsMerkleRootValidator";
|
|
186
213
|
readonly type: "address";
|
|
214
|
+
readonly indexed: true;
|
|
187
215
|
}, {
|
|
188
216
|
readonly name: "appOwner";
|
|
189
217
|
readonly internalType: "address";
|
|
190
218
|
readonly type: "address";
|
|
219
|
+
readonly indexed: false;
|
|
191
220
|
}, {
|
|
192
221
|
readonly name: "templateHash";
|
|
193
222
|
readonly internalType: "bytes32";
|
|
194
223
|
readonly type: "bytes32";
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
readonly
|
|
224
|
+
readonly indexed: false;
|
|
225
|
+
}, {
|
|
226
|
+
readonly name: "dataAvailability";
|
|
227
|
+
readonly internalType: "bytes";
|
|
228
|
+
readonly type: "bytes";
|
|
229
|
+
readonly indexed: false;
|
|
230
|
+
}, {
|
|
231
|
+
readonly name: "appContract";
|
|
199
232
|
readonly internalType: "contract IApplication";
|
|
200
233
|
readonly type: "address";
|
|
234
|
+
readonly indexed: false;
|
|
201
235
|
}];
|
|
202
|
-
readonly
|
|
236
|
+
readonly name: "ApplicationCreated";
|
|
203
237
|
}];
|
|
204
238
|
};
|
|
205
239
|
export declare const authorityFactoryAbi: readonly [{
|
|
206
|
-
readonly type: "event";
|
|
207
|
-
readonly anonymous: false;
|
|
208
|
-
readonly inputs: readonly [{
|
|
209
|
-
readonly name: "authority";
|
|
210
|
-
readonly internalType: "contract IAuthority";
|
|
211
|
-
readonly type: "address";
|
|
212
|
-
readonly indexed: false;
|
|
213
|
-
}];
|
|
214
|
-
readonly name: "AuthorityCreated";
|
|
215
|
-
}, {
|
|
216
240
|
readonly type: "function";
|
|
217
241
|
readonly inputs: readonly [{
|
|
218
242
|
readonly name: "authorityOwner";
|
|
@@ -274,21 +298,21 @@ export declare const authorityFactoryAbi: readonly [{
|
|
|
274
298
|
readonly type: "address";
|
|
275
299
|
}];
|
|
276
300
|
readonly stateMutability: "nonpayable";
|
|
301
|
+
}, {
|
|
302
|
+
readonly type: "event";
|
|
303
|
+
readonly anonymous: false;
|
|
304
|
+
readonly inputs: readonly [{
|
|
305
|
+
readonly name: "authority";
|
|
306
|
+
readonly internalType: "contract IAuthority";
|
|
307
|
+
readonly type: "address";
|
|
308
|
+
readonly indexed: false;
|
|
309
|
+
}];
|
|
310
|
+
readonly name: "AuthorityCreated";
|
|
277
311
|
}];
|
|
278
|
-
export declare const authorityFactoryAddress: "
|
|
312
|
+
export declare const authorityFactoryAddress: "0x451f57Ca716046D114Ab9ff23269a2F9F4a1bdaF";
|
|
279
313
|
export declare const authorityFactoryConfig: {
|
|
280
|
-
readonly address: "
|
|
314
|
+
readonly address: "0x451f57Ca716046D114Ab9ff23269a2F9F4a1bdaF";
|
|
281
315
|
readonly abi: readonly [{
|
|
282
|
-
readonly type: "event";
|
|
283
|
-
readonly anonymous: false;
|
|
284
|
-
readonly inputs: readonly [{
|
|
285
|
-
readonly name: "authority";
|
|
286
|
-
readonly internalType: "contract IAuthority";
|
|
287
|
-
readonly type: "address";
|
|
288
|
-
readonly indexed: false;
|
|
289
|
-
}];
|
|
290
|
-
readonly name: "AuthorityCreated";
|
|
291
|
-
}, {
|
|
292
316
|
readonly type: "function";
|
|
293
317
|
readonly inputs: readonly [{
|
|
294
318
|
readonly name: "authorityOwner";
|
|
@@ -350,8 +374,47 @@ export declare const authorityFactoryConfig: {
|
|
|
350
374
|
readonly type: "address";
|
|
351
375
|
}];
|
|
352
376
|
readonly stateMutability: "nonpayable";
|
|
377
|
+
}, {
|
|
378
|
+
readonly type: "event";
|
|
379
|
+
readonly anonymous: false;
|
|
380
|
+
readonly inputs: readonly [{
|
|
381
|
+
readonly name: "authority";
|
|
382
|
+
readonly internalType: "contract IAuthority";
|
|
383
|
+
readonly type: "address";
|
|
384
|
+
readonly indexed: false;
|
|
385
|
+
}];
|
|
386
|
+
readonly name: "AuthorityCreated";
|
|
353
387
|
}];
|
|
354
388
|
};
|
|
389
|
+
export declare const dataAvailabilityAbi: readonly [{
|
|
390
|
+
readonly type: "function";
|
|
391
|
+
readonly inputs: readonly [{
|
|
392
|
+
readonly name: "inputBox";
|
|
393
|
+
readonly internalType: "contract IInputBox";
|
|
394
|
+
readonly type: "address";
|
|
395
|
+
}];
|
|
396
|
+
readonly name: "InputBox";
|
|
397
|
+
readonly outputs: readonly [];
|
|
398
|
+
readonly stateMutability: "nonpayable";
|
|
399
|
+
}, {
|
|
400
|
+
readonly type: "function";
|
|
401
|
+
readonly inputs: readonly [{
|
|
402
|
+
readonly name: "inputBox";
|
|
403
|
+
readonly internalType: "contract IInputBox";
|
|
404
|
+
readonly type: "address";
|
|
405
|
+
}, {
|
|
406
|
+
readonly name: "fromBlock";
|
|
407
|
+
readonly internalType: "uint256";
|
|
408
|
+
readonly type: "uint256";
|
|
409
|
+
}, {
|
|
410
|
+
readonly name: "namespaceId";
|
|
411
|
+
readonly internalType: "uint32";
|
|
412
|
+
readonly type: "uint32";
|
|
413
|
+
}];
|
|
414
|
+
readonly name: "InputBoxAndEspresso";
|
|
415
|
+
readonly outputs: readonly [];
|
|
416
|
+
readonly stateMutability: "nonpayable";
|
|
417
|
+
}];
|
|
355
418
|
export declare const erc1155BatchPortalAbi: readonly [{
|
|
356
419
|
readonly type: "constructor";
|
|
357
420
|
readonly inputs: readonly [{
|
|
@@ -401,9 +464,9 @@ export declare const erc1155BatchPortalAbi: readonly [{
|
|
|
401
464
|
}];
|
|
402
465
|
readonly stateMutability: "view";
|
|
403
466
|
}];
|
|
404
|
-
export declare const erc1155BatchPortalAddress: "
|
|
467
|
+
export declare const erc1155BatchPortalAddress: "0xBc70d79F916A6d48aB0b8F03AC58f89742dEDA34";
|
|
405
468
|
export declare const erc1155BatchPortalConfig: {
|
|
406
|
-
readonly address: "
|
|
469
|
+
readonly address: "0xBc70d79F916A6d48aB0b8F03AC58f89742dEDA34";
|
|
407
470
|
readonly abi: readonly [{
|
|
408
471
|
readonly type: "constructor";
|
|
409
472
|
readonly inputs: readonly [{
|
|
@@ -503,9 +566,9 @@ export declare const erc1155SinglePortalAbi: readonly [{
|
|
|
503
566
|
}];
|
|
504
567
|
readonly stateMutability: "view";
|
|
505
568
|
}];
|
|
506
|
-
export declare const erc1155SinglePortalAddress: "
|
|
569
|
+
export declare const erc1155SinglePortalAddress: "0xB778147D50219544F113A55DE1d8de626f0cC1bB";
|
|
507
570
|
export declare const erc1155SinglePortalConfig: {
|
|
508
|
-
readonly address: "
|
|
571
|
+
readonly address: "0xB778147D50219544F113A55DE1d8de626f0cC1bB";
|
|
509
572
|
readonly abi: readonly [{
|
|
510
573
|
readonly type: "constructor";
|
|
511
574
|
readonly inputs: readonly [{
|
|
@@ -564,10 +627,6 @@ export declare const erc20PortalAbi: readonly [{
|
|
|
564
627
|
readonly type: "address";
|
|
565
628
|
}];
|
|
566
629
|
readonly stateMutability: "nonpayable";
|
|
567
|
-
}, {
|
|
568
|
-
readonly type: "error";
|
|
569
|
-
readonly inputs: readonly [];
|
|
570
|
-
readonly name: "ERC20TransferFailed";
|
|
571
630
|
}, {
|
|
572
631
|
readonly type: "function";
|
|
573
632
|
readonly inputs: readonly [{
|
|
@@ -600,10 +659,14 @@ export declare const erc20PortalAbi: readonly [{
|
|
|
600
659
|
readonly type: "address";
|
|
601
660
|
}];
|
|
602
661
|
readonly stateMutability: "view";
|
|
662
|
+
}, {
|
|
663
|
+
readonly type: "error";
|
|
664
|
+
readonly inputs: readonly [];
|
|
665
|
+
readonly name: "ERC20TransferFailed";
|
|
603
666
|
}];
|
|
604
|
-
export declare const erc20PortalAddress: "
|
|
667
|
+
export declare const erc20PortalAddress: "0x05355c2F9bA566c06199DEb17212c3B78C1A3C31";
|
|
605
668
|
export declare const erc20PortalConfig: {
|
|
606
|
-
readonly address: "
|
|
669
|
+
readonly address: "0x05355c2F9bA566c06199DEb17212c3B78C1A3C31";
|
|
607
670
|
readonly abi: readonly [{
|
|
608
671
|
readonly type: "constructor";
|
|
609
672
|
readonly inputs: readonly [{
|
|
@@ -612,10 +675,6 @@ export declare const erc20PortalConfig: {
|
|
|
612
675
|
readonly type: "address";
|
|
613
676
|
}];
|
|
614
677
|
readonly stateMutability: "nonpayable";
|
|
615
|
-
}, {
|
|
616
|
-
readonly type: "error";
|
|
617
|
-
readonly inputs: readonly [];
|
|
618
|
-
readonly name: "ERC20TransferFailed";
|
|
619
678
|
}, {
|
|
620
679
|
readonly type: "function";
|
|
621
680
|
readonly inputs: readonly [{
|
|
@@ -648,6 +707,10 @@ export declare const erc20PortalConfig: {
|
|
|
648
707
|
readonly type: "address";
|
|
649
708
|
}];
|
|
650
709
|
readonly stateMutability: "view";
|
|
710
|
+
}, {
|
|
711
|
+
readonly type: "error";
|
|
712
|
+
readonly inputs: readonly [];
|
|
713
|
+
readonly name: "ERC20TransferFailed";
|
|
651
714
|
}];
|
|
652
715
|
};
|
|
653
716
|
export declare const erc721PortalAbi: readonly [{
|
|
@@ -695,9 +758,9 @@ export declare const erc721PortalAbi: readonly [{
|
|
|
695
758
|
}];
|
|
696
759
|
readonly stateMutability: "view";
|
|
697
760
|
}];
|
|
698
|
-
export declare const erc721PortalAddress: "
|
|
761
|
+
export declare const erc721PortalAddress: "0x0F5A20d3729c44FedabBb560b3D633dc1c246DDe";
|
|
699
762
|
export declare const erc721PortalConfig: {
|
|
700
|
-
readonly address: "
|
|
763
|
+
readonly address: "0x0F5A20d3729c44FedabBb560b3D633dc1c246DDe";
|
|
701
764
|
readonly abi: readonly [{
|
|
702
765
|
readonly type: "constructor";
|
|
703
766
|
readonly inputs: readonly [{
|
|
@@ -752,10 +815,6 @@ export declare const etherPortalAbi: readonly [{
|
|
|
752
815
|
readonly type: "address";
|
|
753
816
|
}];
|
|
754
817
|
readonly stateMutability: "nonpayable";
|
|
755
|
-
}, {
|
|
756
|
-
readonly type: "error";
|
|
757
|
-
readonly inputs: readonly [];
|
|
758
|
-
readonly name: "EtherTransferFailed";
|
|
759
818
|
}, {
|
|
760
819
|
readonly type: "function";
|
|
761
820
|
readonly inputs: readonly [{
|
|
@@ -780,10 +839,14 @@ export declare const etherPortalAbi: readonly [{
|
|
|
780
839
|
readonly type: "address";
|
|
781
840
|
}];
|
|
782
841
|
readonly stateMutability: "view";
|
|
842
|
+
}, {
|
|
843
|
+
readonly type: "error";
|
|
844
|
+
readonly inputs: readonly [];
|
|
845
|
+
readonly name: "EtherTransferFailed";
|
|
783
846
|
}];
|
|
784
|
-
export declare const etherPortalAddress: "
|
|
847
|
+
export declare const etherPortalAddress: "0xd31aD6613bDaA139E7D12B2428C0Dd00fdBF8aDa";
|
|
785
848
|
export declare const etherPortalConfig: {
|
|
786
|
-
readonly address: "
|
|
849
|
+
readonly address: "0xd31aD6613bDaA139E7D12B2428C0Dd00fdBF8aDa";
|
|
787
850
|
readonly abi: readonly [{
|
|
788
851
|
readonly type: "constructor";
|
|
789
852
|
readonly inputs: readonly [{
|
|
@@ -792,10 +855,6 @@ export declare const etherPortalConfig: {
|
|
|
792
855
|
readonly type: "address";
|
|
793
856
|
}];
|
|
794
857
|
readonly stateMutability: "nonpayable";
|
|
795
|
-
}, {
|
|
796
|
-
readonly type: "error";
|
|
797
|
-
readonly inputs: readonly [];
|
|
798
|
-
readonly name: "EtherTransferFailed";
|
|
799
858
|
}, {
|
|
800
859
|
readonly type: "function";
|
|
801
860
|
readonly inputs: readonly [{
|
|
@@ -820,45 +879,13 @@ export declare const etherPortalConfig: {
|
|
|
820
879
|
readonly type: "address";
|
|
821
880
|
}];
|
|
822
881
|
readonly stateMutability: "view";
|
|
882
|
+
}, {
|
|
883
|
+
readonly type: "error";
|
|
884
|
+
readonly inputs: readonly [];
|
|
885
|
+
readonly name: "EtherTransferFailed";
|
|
823
886
|
}];
|
|
824
887
|
};
|
|
825
888
|
export declare const inputBoxAbi: readonly [{
|
|
826
|
-
readonly type: "error";
|
|
827
|
-
readonly inputs: readonly [{
|
|
828
|
-
readonly name: "appContract";
|
|
829
|
-
readonly internalType: "address";
|
|
830
|
-
readonly type: "address";
|
|
831
|
-
}, {
|
|
832
|
-
readonly name: "inputLength";
|
|
833
|
-
readonly internalType: "uint256";
|
|
834
|
-
readonly type: "uint256";
|
|
835
|
-
}, {
|
|
836
|
-
readonly name: "maxInputLength";
|
|
837
|
-
readonly internalType: "uint256";
|
|
838
|
-
readonly type: "uint256";
|
|
839
|
-
}];
|
|
840
|
-
readonly name: "InputTooLarge";
|
|
841
|
-
}, {
|
|
842
|
-
readonly type: "event";
|
|
843
|
-
readonly anonymous: false;
|
|
844
|
-
readonly inputs: readonly [{
|
|
845
|
-
readonly name: "appContract";
|
|
846
|
-
readonly internalType: "address";
|
|
847
|
-
readonly type: "address";
|
|
848
|
-
readonly indexed: true;
|
|
849
|
-
}, {
|
|
850
|
-
readonly name: "index";
|
|
851
|
-
readonly internalType: "uint256";
|
|
852
|
-
readonly type: "uint256";
|
|
853
|
-
readonly indexed: true;
|
|
854
|
-
}, {
|
|
855
|
-
readonly name: "input";
|
|
856
|
-
readonly internalType: "bytes";
|
|
857
|
-
readonly type: "bytes";
|
|
858
|
-
readonly indexed: false;
|
|
859
|
-
}];
|
|
860
|
-
readonly name: "InputAdded";
|
|
861
|
-
}, {
|
|
862
889
|
readonly type: "function";
|
|
863
890
|
readonly inputs: readonly [{
|
|
864
891
|
readonly name: "appContract";
|
|
@@ -876,6 +903,16 @@ export declare const inputBoxAbi: readonly [{
|
|
|
876
903
|
readonly type: "bytes32";
|
|
877
904
|
}];
|
|
878
905
|
readonly stateMutability: "nonpayable";
|
|
906
|
+
}, {
|
|
907
|
+
readonly type: "function";
|
|
908
|
+
readonly inputs: readonly [];
|
|
909
|
+
readonly name: "getDeploymentBlockNumber";
|
|
910
|
+
readonly outputs: readonly [{
|
|
911
|
+
readonly name: "";
|
|
912
|
+
readonly internalType: "uint256";
|
|
913
|
+
readonly type: "uint256";
|
|
914
|
+
}];
|
|
915
|
+
readonly stateMutability: "view";
|
|
879
916
|
}, {
|
|
880
917
|
readonly type: "function";
|
|
881
918
|
readonly inputs: readonly [{
|
|
@@ -908,47 +945,47 @@ export declare const inputBoxAbi: readonly [{
|
|
|
908
945
|
readonly type: "uint256";
|
|
909
946
|
}];
|
|
910
947
|
readonly stateMutability: "view";
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
readonly
|
|
915
|
-
|
|
916
|
-
readonly
|
|
917
|
-
readonly
|
|
918
|
-
|
|
919
|
-
readonly internalType: "address";
|
|
920
|
-
readonly type: "address";
|
|
921
|
-
}, {
|
|
922
|
-
readonly name: "inputLength";
|
|
923
|
-
readonly internalType: "uint256";
|
|
924
|
-
readonly type: "uint256";
|
|
925
|
-
}, {
|
|
926
|
-
readonly name: "maxInputLength";
|
|
927
|
-
readonly internalType: "uint256";
|
|
928
|
-
readonly type: "uint256";
|
|
929
|
-
}];
|
|
930
|
-
readonly name: "InputTooLarge";
|
|
948
|
+
}, {
|
|
949
|
+
readonly type: "event";
|
|
950
|
+
readonly anonymous: false;
|
|
951
|
+
readonly inputs: readonly [{
|
|
952
|
+
readonly name: "appContract";
|
|
953
|
+
readonly internalType: "address";
|
|
954
|
+
readonly type: "address";
|
|
955
|
+
readonly indexed: true;
|
|
931
956
|
}, {
|
|
932
|
-
readonly
|
|
933
|
-
readonly
|
|
934
|
-
readonly
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
readonly name: "
|
|
957
|
+
readonly name: "index";
|
|
958
|
+
readonly internalType: "uint256";
|
|
959
|
+
readonly type: "uint256";
|
|
960
|
+
readonly indexed: true;
|
|
961
|
+
}, {
|
|
962
|
+
readonly name: "input";
|
|
963
|
+
readonly internalType: "bytes";
|
|
964
|
+
readonly type: "bytes";
|
|
965
|
+
readonly indexed: false;
|
|
966
|
+
}];
|
|
967
|
+
readonly name: "InputAdded";
|
|
968
|
+
}, {
|
|
969
|
+
readonly type: "error";
|
|
970
|
+
readonly inputs: readonly [{
|
|
971
|
+
readonly name: "appContract";
|
|
972
|
+
readonly internalType: "address";
|
|
973
|
+
readonly type: "address";
|
|
974
|
+
}, {
|
|
975
|
+
readonly name: "inputLength";
|
|
976
|
+
readonly internalType: "uint256";
|
|
977
|
+
readonly type: "uint256";
|
|
951
978
|
}, {
|
|
979
|
+
readonly name: "maxInputLength";
|
|
980
|
+
readonly internalType: "uint256";
|
|
981
|
+
readonly type: "uint256";
|
|
982
|
+
}];
|
|
983
|
+
readonly name: "InputTooLarge";
|
|
984
|
+
}];
|
|
985
|
+
export declare const inputBoxAddress: "0xB6b39Fb3dD926A9e3FBc7A129540eEbeA3016a6c";
|
|
986
|
+
export declare const inputBoxConfig: {
|
|
987
|
+
readonly address: "0xB6b39Fb3dD926A9e3FBc7A129540eEbeA3016a6c";
|
|
988
|
+
readonly abi: readonly [{
|
|
952
989
|
readonly type: "function";
|
|
953
990
|
readonly inputs: readonly [{
|
|
954
991
|
readonly name: "appContract";
|
|
@@ -966,6 +1003,16 @@ export declare const inputBoxConfig: {
|
|
|
966
1003
|
readonly type: "bytes32";
|
|
967
1004
|
}];
|
|
968
1005
|
readonly stateMutability: "nonpayable";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly type: "function";
|
|
1008
|
+
readonly inputs: readonly [];
|
|
1009
|
+
readonly name: "getDeploymentBlockNumber";
|
|
1010
|
+
readonly outputs: readonly [{
|
|
1011
|
+
readonly name: "";
|
|
1012
|
+
readonly internalType: "uint256";
|
|
1013
|
+
readonly type: "uint256";
|
|
1014
|
+
}];
|
|
1015
|
+
readonly stateMutability: "view";
|
|
969
1016
|
}, {
|
|
970
1017
|
readonly type: "function";
|
|
971
1018
|
readonly inputs: readonly [{
|
|
@@ -998,19 +1045,45 @@ export declare const inputBoxConfig: {
|
|
|
998
1045
|
readonly type: "uint256";
|
|
999
1046
|
}];
|
|
1000
1047
|
readonly stateMutability: "view";
|
|
1048
|
+
}, {
|
|
1049
|
+
readonly type: "event";
|
|
1050
|
+
readonly anonymous: false;
|
|
1051
|
+
readonly inputs: readonly [{
|
|
1052
|
+
readonly name: "appContract";
|
|
1053
|
+
readonly internalType: "address";
|
|
1054
|
+
readonly type: "address";
|
|
1055
|
+
readonly indexed: true;
|
|
1056
|
+
}, {
|
|
1057
|
+
readonly name: "index";
|
|
1058
|
+
readonly internalType: "uint256";
|
|
1059
|
+
readonly type: "uint256";
|
|
1060
|
+
readonly indexed: true;
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly name: "input";
|
|
1063
|
+
readonly internalType: "bytes";
|
|
1064
|
+
readonly type: "bytes";
|
|
1065
|
+
readonly indexed: false;
|
|
1066
|
+
}];
|
|
1067
|
+
readonly name: "InputAdded";
|
|
1068
|
+
}, {
|
|
1069
|
+
readonly type: "error";
|
|
1070
|
+
readonly inputs: readonly [{
|
|
1071
|
+
readonly name: "appContract";
|
|
1072
|
+
readonly internalType: "address";
|
|
1073
|
+
readonly type: "address";
|
|
1074
|
+
}, {
|
|
1075
|
+
readonly name: "inputLength";
|
|
1076
|
+
readonly internalType: "uint256";
|
|
1077
|
+
readonly type: "uint256";
|
|
1078
|
+
}, {
|
|
1079
|
+
readonly name: "maxInputLength";
|
|
1080
|
+
readonly internalType: "uint256";
|
|
1081
|
+
readonly type: "uint256";
|
|
1082
|
+
}];
|
|
1083
|
+
readonly name: "InputTooLarge";
|
|
1001
1084
|
}];
|
|
1002
1085
|
};
|
|
1003
1086
|
export declare const quorumFactoryAbi: readonly [{
|
|
1004
|
-
readonly type: "event";
|
|
1005
|
-
readonly anonymous: false;
|
|
1006
|
-
readonly inputs: readonly [{
|
|
1007
|
-
readonly name: "quorum";
|
|
1008
|
-
readonly internalType: "contract IQuorum";
|
|
1009
|
-
readonly type: "address";
|
|
1010
|
-
readonly indexed: false;
|
|
1011
|
-
}];
|
|
1012
|
-
readonly name: "QuorumCreated";
|
|
1013
|
-
}, {
|
|
1014
1087
|
readonly type: "function";
|
|
1015
1088
|
readonly inputs: readonly [{
|
|
1016
1089
|
readonly name: "validators";
|
|
@@ -1072,21 +1145,21 @@ export declare const quorumFactoryAbi: readonly [{
|
|
|
1072
1145
|
readonly type: "address";
|
|
1073
1146
|
}];
|
|
1074
1147
|
readonly stateMutability: "nonpayable";
|
|
1148
|
+
}, {
|
|
1149
|
+
readonly type: "event";
|
|
1150
|
+
readonly anonymous: false;
|
|
1151
|
+
readonly inputs: readonly [{
|
|
1152
|
+
readonly name: "quorum";
|
|
1153
|
+
readonly internalType: "contract IQuorum";
|
|
1154
|
+
readonly type: "address";
|
|
1155
|
+
readonly indexed: false;
|
|
1156
|
+
}];
|
|
1157
|
+
readonly name: "QuorumCreated";
|
|
1075
1158
|
}];
|
|
1076
|
-
export declare const quorumFactoryAddress: "
|
|
1159
|
+
export declare const quorumFactoryAddress: "0xb85D3942e551E6E5f19AC2CCF8dAb195f5f0347E";
|
|
1077
1160
|
export declare const quorumFactoryConfig: {
|
|
1078
|
-
readonly address: "
|
|
1161
|
+
readonly address: "0xb85D3942e551E6E5f19AC2CCF8dAb195f5f0347E";
|
|
1079
1162
|
readonly abi: readonly [{
|
|
1080
|
-
readonly type: "event";
|
|
1081
|
-
readonly anonymous: false;
|
|
1082
|
-
readonly inputs: readonly [{
|
|
1083
|
-
readonly name: "quorum";
|
|
1084
|
-
readonly internalType: "contract IQuorum";
|
|
1085
|
-
readonly type: "address";
|
|
1086
|
-
readonly indexed: false;
|
|
1087
|
-
}];
|
|
1088
|
-
readonly name: "QuorumCreated";
|
|
1089
|
-
}, {
|
|
1090
1163
|
readonly type: "function";
|
|
1091
1164
|
readonly inputs: readonly [{
|
|
1092
1165
|
readonly name: "validators";
|
|
@@ -1148,37 +1221,19 @@ export declare const quorumFactoryConfig: {
|
|
|
1148
1221
|
readonly type: "address";
|
|
1149
1222
|
}];
|
|
1150
1223
|
readonly stateMutability: "nonpayable";
|
|
1224
|
+
}, {
|
|
1225
|
+
readonly type: "event";
|
|
1226
|
+
readonly anonymous: false;
|
|
1227
|
+
readonly inputs: readonly [{
|
|
1228
|
+
readonly name: "quorum";
|
|
1229
|
+
readonly internalType: "contract IQuorum";
|
|
1230
|
+
readonly type: "address";
|
|
1231
|
+
readonly indexed: false;
|
|
1232
|
+
}];
|
|
1233
|
+
readonly name: "QuorumCreated";
|
|
1151
1234
|
}];
|
|
1152
1235
|
};
|
|
1153
1236
|
export declare const safeErc20TransferAbi: readonly [{
|
|
1154
|
-
readonly type: "error";
|
|
1155
|
-
readonly inputs: readonly [{
|
|
1156
|
-
readonly name: "target";
|
|
1157
|
-
readonly internalType: "address";
|
|
1158
|
-
readonly type: "address";
|
|
1159
|
-
}];
|
|
1160
|
-
readonly name: "AddressEmptyCode";
|
|
1161
|
-
}, {
|
|
1162
|
-
readonly type: "error";
|
|
1163
|
-
readonly inputs: readonly [{
|
|
1164
|
-
readonly name: "account";
|
|
1165
|
-
readonly internalType: "address";
|
|
1166
|
-
readonly type: "address";
|
|
1167
|
-
}];
|
|
1168
|
-
readonly name: "AddressInsufficientBalance";
|
|
1169
|
-
}, {
|
|
1170
|
-
readonly type: "error";
|
|
1171
|
-
readonly inputs: readonly [];
|
|
1172
|
-
readonly name: "FailedInnerCall";
|
|
1173
|
-
}, {
|
|
1174
|
-
readonly type: "error";
|
|
1175
|
-
readonly inputs: readonly [{
|
|
1176
|
-
readonly name: "token";
|
|
1177
|
-
readonly internalType: "address";
|
|
1178
|
-
readonly type: "address";
|
|
1179
|
-
}];
|
|
1180
|
-
readonly name: "SafeERC20FailedOperation";
|
|
1181
|
-
}, {
|
|
1182
1237
|
readonly type: "function";
|
|
1183
1238
|
readonly inputs: readonly [{
|
|
1184
1239
|
readonly name: "token";
|
|
@@ -1196,39 +1251,19 @@ export declare const safeErc20TransferAbi: readonly [{
|
|
|
1196
1251
|
readonly name: "safeTransfer";
|
|
1197
1252
|
readonly outputs: readonly [];
|
|
1198
1253
|
readonly stateMutability: "nonpayable";
|
|
1254
|
+
}, {
|
|
1255
|
+
readonly type: "error";
|
|
1256
|
+
readonly inputs: readonly [{
|
|
1257
|
+
readonly name: "token";
|
|
1258
|
+
readonly internalType: "address";
|
|
1259
|
+
readonly type: "address";
|
|
1260
|
+
}];
|
|
1261
|
+
readonly name: "SafeERC20FailedOperation";
|
|
1199
1262
|
}];
|
|
1200
|
-
export declare const safeErc20TransferAddress: "
|
|
1263
|
+
export declare const safeErc20TransferAddress: "0x35187C9f069D34aB73c02327ae155746a8274208";
|
|
1201
1264
|
export declare const safeErc20TransferConfig: {
|
|
1202
|
-
readonly address: "
|
|
1265
|
+
readonly address: "0x35187C9f069D34aB73c02327ae155746a8274208";
|
|
1203
1266
|
readonly abi: readonly [{
|
|
1204
|
-
readonly type: "error";
|
|
1205
|
-
readonly inputs: readonly [{
|
|
1206
|
-
readonly name: "target";
|
|
1207
|
-
readonly internalType: "address";
|
|
1208
|
-
readonly type: "address";
|
|
1209
|
-
}];
|
|
1210
|
-
readonly name: "AddressEmptyCode";
|
|
1211
|
-
}, {
|
|
1212
|
-
readonly type: "error";
|
|
1213
|
-
readonly inputs: readonly [{
|
|
1214
|
-
readonly name: "account";
|
|
1215
|
-
readonly internalType: "address";
|
|
1216
|
-
readonly type: "address";
|
|
1217
|
-
}];
|
|
1218
|
-
readonly name: "AddressInsufficientBalance";
|
|
1219
|
-
}, {
|
|
1220
|
-
readonly type: "error";
|
|
1221
|
-
readonly inputs: readonly [];
|
|
1222
|
-
readonly name: "FailedInnerCall";
|
|
1223
|
-
}, {
|
|
1224
|
-
readonly type: "error";
|
|
1225
|
-
readonly inputs: readonly [{
|
|
1226
|
-
readonly name: "token";
|
|
1227
|
-
readonly internalType: "address";
|
|
1228
|
-
readonly type: "address";
|
|
1229
|
-
}];
|
|
1230
|
-
readonly name: "SafeERC20FailedOperation";
|
|
1231
|
-
}, {
|
|
1232
1267
|
readonly type: "function";
|
|
1233
1268
|
readonly inputs: readonly [{
|
|
1234
1269
|
readonly name: "token";
|
|
@@ -1246,6 +1281,14 @@ export declare const safeErc20TransferConfig: {
|
|
|
1246
1281
|
readonly name: "safeTransfer";
|
|
1247
1282
|
readonly outputs: readonly [];
|
|
1248
1283
|
readonly stateMutability: "nonpayable";
|
|
1284
|
+
}, {
|
|
1285
|
+
readonly type: "error";
|
|
1286
|
+
readonly inputs: readonly [{
|
|
1287
|
+
readonly name: "token";
|
|
1288
|
+
readonly internalType: "address";
|
|
1289
|
+
readonly type: "address";
|
|
1290
|
+
}];
|
|
1291
|
+
readonly name: "SafeERC20FailedOperation";
|
|
1249
1292
|
}];
|
|
1250
1293
|
};
|
|
1251
1294
|
export declare const selfHostedApplicationFactoryAbi: readonly [{
|
|
@@ -1278,6 +1321,10 @@ export declare const selfHostedApplicationFactoryAbi: readonly [{
|
|
|
1278
1321
|
readonly name: "templateHash";
|
|
1279
1322
|
readonly internalType: "bytes32";
|
|
1280
1323
|
readonly type: "bytes32";
|
|
1324
|
+
}, {
|
|
1325
|
+
readonly name: "dataAvailability";
|
|
1326
|
+
readonly internalType: "bytes";
|
|
1327
|
+
readonly type: "bytes";
|
|
1281
1328
|
}, {
|
|
1282
1329
|
readonly name: "salt";
|
|
1283
1330
|
readonly internalType: "bytes32";
|
|
@@ -1312,6 +1359,10 @@ export declare const selfHostedApplicationFactoryAbi: readonly [{
|
|
|
1312
1359
|
readonly name: "templateHash";
|
|
1313
1360
|
readonly internalType: "bytes32";
|
|
1314
1361
|
readonly type: "bytes32";
|
|
1362
|
+
}, {
|
|
1363
|
+
readonly name: "dataAvailability";
|
|
1364
|
+
readonly internalType: "bytes";
|
|
1365
|
+
readonly type: "bytes";
|
|
1315
1366
|
}, {
|
|
1316
1367
|
readonly name: "salt";
|
|
1317
1368
|
readonly internalType: "bytes32";
|
|
@@ -1349,9 +1400,9 @@ export declare const selfHostedApplicationFactoryAbi: readonly [{
|
|
|
1349
1400
|
}];
|
|
1350
1401
|
readonly stateMutability: "view";
|
|
1351
1402
|
}];
|
|
1352
|
-
export declare const selfHostedApplicationFactoryAddress: "
|
|
1403
|
+
export declare const selfHostedApplicationFactoryAddress: "0x4a409e1CaB9229711C4e1f68625DdbC75809e721";
|
|
1353
1404
|
export declare const selfHostedApplicationFactoryConfig: {
|
|
1354
|
-
readonly address: "
|
|
1405
|
+
readonly address: "0x4a409e1CaB9229711C4e1f68625DdbC75809e721";
|
|
1355
1406
|
readonly abi: readonly [{
|
|
1356
1407
|
readonly type: "constructor";
|
|
1357
1408
|
readonly inputs: readonly [{
|
|
@@ -1382,6 +1433,10 @@ export declare const selfHostedApplicationFactoryConfig: {
|
|
|
1382
1433
|
readonly name: "templateHash";
|
|
1383
1434
|
readonly internalType: "bytes32";
|
|
1384
1435
|
readonly type: "bytes32";
|
|
1436
|
+
}, {
|
|
1437
|
+
readonly name: "dataAvailability";
|
|
1438
|
+
readonly internalType: "bytes";
|
|
1439
|
+
readonly type: "bytes";
|
|
1385
1440
|
}, {
|
|
1386
1441
|
readonly name: "salt";
|
|
1387
1442
|
readonly internalType: "bytes32";
|
|
@@ -1416,6 +1471,10 @@ export declare const selfHostedApplicationFactoryConfig: {
|
|
|
1416
1471
|
readonly name: "templateHash";
|
|
1417
1472
|
readonly internalType: "bytes32";
|
|
1418
1473
|
readonly type: "bytes32";
|
|
1474
|
+
}, {
|
|
1475
|
+
readonly name: "dataAvailability";
|
|
1476
|
+
readonly internalType: "bytes";
|
|
1477
|
+
readonly type: "bytes";
|
|
1419
1478
|
}, {
|
|
1420
1479
|
readonly name: "salt";
|
|
1421
1480
|
readonly internalType: "bytes32";
|
|
@@ -1463,227 +1522,25 @@ export declare const testMultiTokenAbi: readonly [{
|
|
|
1463
1522
|
}];
|
|
1464
1523
|
readonly stateMutability: "nonpayable";
|
|
1465
1524
|
}, {
|
|
1466
|
-
readonly type: "
|
|
1525
|
+
readonly type: "function";
|
|
1467
1526
|
readonly inputs: readonly [{
|
|
1468
|
-
readonly name: "
|
|
1527
|
+
readonly name: "account";
|
|
1469
1528
|
readonly internalType: "address";
|
|
1470
1529
|
readonly type: "address";
|
|
1471
1530
|
}, {
|
|
1472
|
-
readonly name: "
|
|
1473
|
-
readonly internalType: "uint256";
|
|
1474
|
-
readonly type: "uint256";
|
|
1475
|
-
}, {
|
|
1476
|
-
readonly name: "needed";
|
|
1531
|
+
readonly name: "id";
|
|
1477
1532
|
readonly internalType: "uint256";
|
|
1478
1533
|
readonly type: "uint256";
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1534
|
+
}];
|
|
1535
|
+
readonly name: "balanceOf";
|
|
1536
|
+
readonly outputs: readonly [{
|
|
1537
|
+
readonly name: "";
|
|
1481
1538
|
readonly internalType: "uint256";
|
|
1482
1539
|
readonly type: "uint256";
|
|
1483
1540
|
}];
|
|
1484
|
-
readonly
|
|
1541
|
+
readonly stateMutability: "view";
|
|
1485
1542
|
}, {
|
|
1486
|
-
readonly type: "
|
|
1487
|
-
readonly inputs: readonly [{
|
|
1488
|
-
readonly name: "approver";
|
|
1489
|
-
readonly internalType: "address";
|
|
1490
|
-
readonly type: "address";
|
|
1491
|
-
}];
|
|
1492
|
-
readonly name: "ERC1155InvalidApprover";
|
|
1493
|
-
}, {
|
|
1494
|
-
readonly type: "error";
|
|
1495
|
-
readonly inputs: readonly [{
|
|
1496
|
-
readonly name: "idsLength";
|
|
1497
|
-
readonly internalType: "uint256";
|
|
1498
|
-
readonly type: "uint256";
|
|
1499
|
-
}, {
|
|
1500
|
-
readonly name: "valuesLength";
|
|
1501
|
-
readonly internalType: "uint256";
|
|
1502
|
-
readonly type: "uint256";
|
|
1503
|
-
}];
|
|
1504
|
-
readonly name: "ERC1155InvalidArrayLength";
|
|
1505
|
-
}, {
|
|
1506
|
-
readonly type: "error";
|
|
1507
|
-
readonly inputs: readonly [{
|
|
1508
|
-
readonly name: "operator";
|
|
1509
|
-
readonly internalType: "address";
|
|
1510
|
-
readonly type: "address";
|
|
1511
|
-
}];
|
|
1512
|
-
readonly name: "ERC1155InvalidOperator";
|
|
1513
|
-
}, {
|
|
1514
|
-
readonly type: "error";
|
|
1515
|
-
readonly inputs: readonly [{
|
|
1516
|
-
readonly name: "receiver";
|
|
1517
|
-
readonly internalType: "address";
|
|
1518
|
-
readonly type: "address";
|
|
1519
|
-
}];
|
|
1520
|
-
readonly name: "ERC1155InvalidReceiver";
|
|
1521
|
-
}, {
|
|
1522
|
-
readonly type: "error";
|
|
1523
|
-
readonly inputs: readonly [{
|
|
1524
|
-
readonly name: "sender";
|
|
1525
|
-
readonly internalType: "address";
|
|
1526
|
-
readonly type: "address";
|
|
1527
|
-
}];
|
|
1528
|
-
readonly name: "ERC1155InvalidSender";
|
|
1529
|
-
}, {
|
|
1530
|
-
readonly type: "error";
|
|
1531
|
-
readonly inputs: readonly [{
|
|
1532
|
-
readonly name: "operator";
|
|
1533
|
-
readonly internalType: "address";
|
|
1534
|
-
readonly type: "address";
|
|
1535
|
-
}, {
|
|
1536
|
-
readonly name: "owner";
|
|
1537
|
-
readonly internalType: "address";
|
|
1538
|
-
readonly type: "address";
|
|
1539
|
-
}];
|
|
1540
|
-
readonly name: "ERC1155MissingApprovalForAll";
|
|
1541
|
-
}, {
|
|
1542
|
-
readonly type: "error";
|
|
1543
|
-
readonly inputs: readonly [{
|
|
1544
|
-
readonly name: "owner";
|
|
1545
|
-
readonly internalType: "address";
|
|
1546
|
-
readonly type: "address";
|
|
1547
|
-
}];
|
|
1548
|
-
readonly name: "OwnableInvalidOwner";
|
|
1549
|
-
}, {
|
|
1550
|
-
readonly type: "error";
|
|
1551
|
-
readonly inputs: readonly [{
|
|
1552
|
-
readonly name: "account";
|
|
1553
|
-
readonly internalType: "address";
|
|
1554
|
-
readonly type: "address";
|
|
1555
|
-
}];
|
|
1556
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
1557
|
-
}, {
|
|
1558
|
-
readonly type: "event";
|
|
1559
|
-
readonly anonymous: false;
|
|
1560
|
-
readonly inputs: readonly [{
|
|
1561
|
-
readonly name: "account";
|
|
1562
|
-
readonly internalType: "address";
|
|
1563
|
-
readonly type: "address";
|
|
1564
|
-
readonly indexed: true;
|
|
1565
|
-
}, {
|
|
1566
|
-
readonly name: "operator";
|
|
1567
|
-
readonly internalType: "address";
|
|
1568
|
-
readonly type: "address";
|
|
1569
|
-
readonly indexed: true;
|
|
1570
|
-
}, {
|
|
1571
|
-
readonly name: "approved";
|
|
1572
|
-
readonly internalType: "bool";
|
|
1573
|
-
readonly type: "bool";
|
|
1574
|
-
readonly indexed: false;
|
|
1575
|
-
}];
|
|
1576
|
-
readonly name: "ApprovalForAll";
|
|
1577
|
-
}, {
|
|
1578
|
-
readonly type: "event";
|
|
1579
|
-
readonly anonymous: false;
|
|
1580
|
-
readonly inputs: readonly [{
|
|
1581
|
-
readonly name: "previousOwner";
|
|
1582
|
-
readonly internalType: "address";
|
|
1583
|
-
readonly type: "address";
|
|
1584
|
-
readonly indexed: true;
|
|
1585
|
-
}, {
|
|
1586
|
-
readonly name: "newOwner";
|
|
1587
|
-
readonly internalType: "address";
|
|
1588
|
-
readonly type: "address";
|
|
1589
|
-
readonly indexed: true;
|
|
1590
|
-
}];
|
|
1591
|
-
readonly name: "OwnershipTransferred";
|
|
1592
|
-
}, {
|
|
1593
|
-
readonly type: "event";
|
|
1594
|
-
readonly anonymous: false;
|
|
1595
|
-
readonly inputs: readonly [{
|
|
1596
|
-
readonly name: "operator";
|
|
1597
|
-
readonly internalType: "address";
|
|
1598
|
-
readonly type: "address";
|
|
1599
|
-
readonly indexed: true;
|
|
1600
|
-
}, {
|
|
1601
|
-
readonly name: "from";
|
|
1602
|
-
readonly internalType: "address";
|
|
1603
|
-
readonly type: "address";
|
|
1604
|
-
readonly indexed: true;
|
|
1605
|
-
}, {
|
|
1606
|
-
readonly name: "to";
|
|
1607
|
-
readonly internalType: "address";
|
|
1608
|
-
readonly type: "address";
|
|
1609
|
-
readonly indexed: true;
|
|
1610
|
-
}, {
|
|
1611
|
-
readonly name: "ids";
|
|
1612
|
-
readonly internalType: "uint256[]";
|
|
1613
|
-
readonly type: "uint256[]";
|
|
1614
|
-
readonly indexed: false;
|
|
1615
|
-
}, {
|
|
1616
|
-
readonly name: "values";
|
|
1617
|
-
readonly internalType: "uint256[]";
|
|
1618
|
-
readonly type: "uint256[]";
|
|
1619
|
-
readonly indexed: false;
|
|
1620
|
-
}];
|
|
1621
|
-
readonly name: "TransferBatch";
|
|
1622
|
-
}, {
|
|
1623
|
-
readonly type: "event";
|
|
1624
|
-
readonly anonymous: false;
|
|
1625
|
-
readonly inputs: readonly [{
|
|
1626
|
-
readonly name: "operator";
|
|
1627
|
-
readonly internalType: "address";
|
|
1628
|
-
readonly type: "address";
|
|
1629
|
-
readonly indexed: true;
|
|
1630
|
-
}, {
|
|
1631
|
-
readonly name: "from";
|
|
1632
|
-
readonly internalType: "address";
|
|
1633
|
-
readonly type: "address";
|
|
1634
|
-
readonly indexed: true;
|
|
1635
|
-
}, {
|
|
1636
|
-
readonly name: "to";
|
|
1637
|
-
readonly internalType: "address";
|
|
1638
|
-
readonly type: "address";
|
|
1639
|
-
readonly indexed: true;
|
|
1640
|
-
}, {
|
|
1641
|
-
readonly name: "id";
|
|
1642
|
-
readonly internalType: "uint256";
|
|
1643
|
-
readonly type: "uint256";
|
|
1644
|
-
readonly indexed: false;
|
|
1645
|
-
}, {
|
|
1646
|
-
readonly name: "value";
|
|
1647
|
-
readonly internalType: "uint256";
|
|
1648
|
-
readonly type: "uint256";
|
|
1649
|
-
readonly indexed: false;
|
|
1650
|
-
}];
|
|
1651
|
-
readonly name: "TransferSingle";
|
|
1652
|
-
}, {
|
|
1653
|
-
readonly type: "event";
|
|
1654
|
-
readonly anonymous: false;
|
|
1655
|
-
readonly inputs: readonly [{
|
|
1656
|
-
readonly name: "value";
|
|
1657
|
-
readonly internalType: "string";
|
|
1658
|
-
readonly type: "string";
|
|
1659
|
-
readonly indexed: false;
|
|
1660
|
-
}, {
|
|
1661
|
-
readonly name: "id";
|
|
1662
|
-
readonly internalType: "uint256";
|
|
1663
|
-
readonly type: "uint256";
|
|
1664
|
-
readonly indexed: true;
|
|
1665
|
-
}];
|
|
1666
|
-
readonly name: "URI";
|
|
1667
|
-
}, {
|
|
1668
|
-
readonly type: "function";
|
|
1669
|
-
readonly inputs: readonly [{
|
|
1670
|
-
readonly name: "account";
|
|
1671
|
-
readonly internalType: "address";
|
|
1672
|
-
readonly type: "address";
|
|
1673
|
-
}, {
|
|
1674
|
-
readonly name: "id";
|
|
1675
|
-
readonly internalType: "uint256";
|
|
1676
|
-
readonly type: "uint256";
|
|
1677
|
-
}];
|
|
1678
|
-
readonly name: "balanceOf";
|
|
1679
|
-
readonly outputs: readonly [{
|
|
1680
|
-
readonly name: "";
|
|
1681
|
-
readonly internalType: "uint256";
|
|
1682
|
-
readonly type: "uint256";
|
|
1683
|
-
}];
|
|
1684
|
-
readonly stateMutability: "view";
|
|
1685
|
-
}, {
|
|
1686
|
-
readonly type: "function";
|
|
1543
|
+
readonly type: "function";
|
|
1687
1544
|
readonly inputs: readonly [{
|
|
1688
1545
|
readonly name: "accounts";
|
|
1689
1546
|
readonly internalType: "address[]";
|
|
@@ -1892,276 +1749,276 @@ export declare const testMultiTokenAbi: readonly [{
|
|
|
1892
1749
|
readonly type: "string";
|
|
1893
1750
|
}];
|
|
1894
1751
|
readonly stateMutability: "view";
|
|
1895
|
-
}
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
readonly
|
|
1899
|
-
|
|
1900
|
-
readonly
|
|
1901
|
-
readonly
|
|
1902
|
-
|
|
1903
|
-
readonly internalType: "address";
|
|
1904
|
-
readonly type: "address";
|
|
1905
|
-
}];
|
|
1906
|
-
readonly stateMutability: "nonpayable";
|
|
1752
|
+
}, {
|
|
1753
|
+
readonly type: "event";
|
|
1754
|
+
readonly anonymous: false;
|
|
1755
|
+
readonly inputs: readonly [{
|
|
1756
|
+
readonly name: "account";
|
|
1757
|
+
readonly internalType: "address";
|
|
1758
|
+
readonly type: "address";
|
|
1759
|
+
readonly indexed: true;
|
|
1907
1760
|
}, {
|
|
1908
|
-
readonly
|
|
1909
|
-
readonly
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
readonly type: "address";
|
|
1913
|
-
}, {
|
|
1914
|
-
readonly name: "balance";
|
|
1915
|
-
readonly internalType: "uint256";
|
|
1916
|
-
readonly type: "uint256";
|
|
1917
|
-
}, {
|
|
1918
|
-
readonly name: "needed";
|
|
1919
|
-
readonly internalType: "uint256";
|
|
1920
|
-
readonly type: "uint256";
|
|
1921
|
-
}, {
|
|
1922
|
-
readonly name: "tokenId";
|
|
1923
|
-
readonly internalType: "uint256";
|
|
1924
|
-
readonly type: "uint256";
|
|
1925
|
-
}];
|
|
1926
|
-
readonly name: "ERC1155InsufficientBalance";
|
|
1761
|
+
readonly name: "operator";
|
|
1762
|
+
readonly internalType: "address";
|
|
1763
|
+
readonly type: "address";
|
|
1764
|
+
readonly indexed: true;
|
|
1927
1765
|
}, {
|
|
1928
|
-
readonly
|
|
1929
|
-
readonly
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1766
|
+
readonly name: "approved";
|
|
1767
|
+
readonly internalType: "bool";
|
|
1768
|
+
readonly type: "bool";
|
|
1769
|
+
readonly indexed: false;
|
|
1770
|
+
}];
|
|
1771
|
+
readonly name: "ApprovalForAll";
|
|
1772
|
+
}, {
|
|
1773
|
+
readonly type: "event";
|
|
1774
|
+
readonly anonymous: false;
|
|
1775
|
+
readonly inputs: readonly [{
|
|
1776
|
+
readonly name: "previousOwner";
|
|
1777
|
+
readonly internalType: "address";
|
|
1778
|
+
readonly type: "address";
|
|
1779
|
+
readonly indexed: true;
|
|
1935
1780
|
}, {
|
|
1936
|
-
readonly
|
|
1937
|
-
readonly
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
readonly name: "
|
|
1781
|
+
readonly name: "newOwner";
|
|
1782
|
+
readonly internalType: "address";
|
|
1783
|
+
readonly type: "address";
|
|
1784
|
+
readonly indexed: true;
|
|
1785
|
+
}];
|
|
1786
|
+
readonly name: "OwnershipTransferred";
|
|
1787
|
+
}, {
|
|
1788
|
+
readonly type: "event";
|
|
1789
|
+
readonly anonymous: false;
|
|
1790
|
+
readonly inputs: readonly [{
|
|
1791
|
+
readonly name: "operator";
|
|
1792
|
+
readonly internalType: "address";
|
|
1793
|
+
readonly type: "address";
|
|
1794
|
+
readonly indexed: true;
|
|
1947
1795
|
}, {
|
|
1948
|
-
readonly
|
|
1796
|
+
readonly name: "from";
|
|
1797
|
+
readonly internalType: "address";
|
|
1798
|
+
readonly type: "address";
|
|
1799
|
+
readonly indexed: true;
|
|
1800
|
+
}, {
|
|
1801
|
+
readonly name: "to";
|
|
1802
|
+
readonly internalType: "address";
|
|
1803
|
+
readonly type: "address";
|
|
1804
|
+
readonly indexed: true;
|
|
1805
|
+
}, {
|
|
1806
|
+
readonly name: "ids";
|
|
1807
|
+
readonly internalType: "uint256[]";
|
|
1808
|
+
readonly type: "uint256[]";
|
|
1809
|
+
readonly indexed: false;
|
|
1810
|
+
}, {
|
|
1811
|
+
readonly name: "values";
|
|
1812
|
+
readonly internalType: "uint256[]";
|
|
1813
|
+
readonly type: "uint256[]";
|
|
1814
|
+
readonly indexed: false;
|
|
1815
|
+
}];
|
|
1816
|
+
readonly name: "TransferBatch";
|
|
1817
|
+
}, {
|
|
1818
|
+
readonly type: "event";
|
|
1819
|
+
readonly anonymous: false;
|
|
1820
|
+
readonly inputs: readonly [{
|
|
1821
|
+
readonly name: "operator";
|
|
1822
|
+
readonly internalType: "address";
|
|
1823
|
+
readonly type: "address";
|
|
1824
|
+
readonly indexed: true;
|
|
1825
|
+
}, {
|
|
1826
|
+
readonly name: "from";
|
|
1827
|
+
readonly internalType: "address";
|
|
1828
|
+
readonly type: "address";
|
|
1829
|
+
readonly indexed: true;
|
|
1830
|
+
}, {
|
|
1831
|
+
readonly name: "to";
|
|
1832
|
+
readonly internalType: "address";
|
|
1833
|
+
readonly type: "address";
|
|
1834
|
+
readonly indexed: true;
|
|
1835
|
+
}, {
|
|
1836
|
+
readonly name: "id";
|
|
1837
|
+
readonly internalType: "uint256";
|
|
1838
|
+
readonly type: "uint256";
|
|
1839
|
+
readonly indexed: false;
|
|
1840
|
+
}, {
|
|
1841
|
+
readonly name: "value";
|
|
1842
|
+
readonly internalType: "uint256";
|
|
1843
|
+
readonly type: "uint256";
|
|
1844
|
+
readonly indexed: false;
|
|
1845
|
+
}];
|
|
1846
|
+
readonly name: "TransferSingle";
|
|
1847
|
+
}, {
|
|
1848
|
+
readonly type: "event";
|
|
1849
|
+
readonly anonymous: false;
|
|
1850
|
+
readonly inputs: readonly [{
|
|
1851
|
+
readonly name: "value";
|
|
1852
|
+
readonly internalType: "string";
|
|
1853
|
+
readonly type: "string";
|
|
1854
|
+
readonly indexed: false;
|
|
1855
|
+
}, {
|
|
1856
|
+
readonly name: "id";
|
|
1857
|
+
readonly internalType: "uint256";
|
|
1858
|
+
readonly type: "uint256";
|
|
1859
|
+
readonly indexed: true;
|
|
1860
|
+
}];
|
|
1861
|
+
readonly name: "URI";
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly type: "error";
|
|
1864
|
+
readonly inputs: readonly [{
|
|
1865
|
+
readonly name: "sender";
|
|
1866
|
+
readonly internalType: "address";
|
|
1867
|
+
readonly type: "address";
|
|
1868
|
+
}, {
|
|
1869
|
+
readonly name: "balance";
|
|
1870
|
+
readonly internalType: "uint256";
|
|
1871
|
+
readonly type: "uint256";
|
|
1872
|
+
}, {
|
|
1873
|
+
readonly name: "needed";
|
|
1874
|
+
readonly internalType: "uint256";
|
|
1875
|
+
readonly type: "uint256";
|
|
1876
|
+
}, {
|
|
1877
|
+
readonly name: "tokenId";
|
|
1878
|
+
readonly internalType: "uint256";
|
|
1879
|
+
readonly type: "uint256";
|
|
1880
|
+
}];
|
|
1881
|
+
readonly name: "ERC1155InsufficientBalance";
|
|
1882
|
+
}, {
|
|
1883
|
+
readonly type: "error";
|
|
1884
|
+
readonly inputs: readonly [{
|
|
1885
|
+
readonly name: "approver";
|
|
1886
|
+
readonly internalType: "address";
|
|
1887
|
+
readonly type: "address";
|
|
1888
|
+
}];
|
|
1889
|
+
readonly name: "ERC1155InvalidApprover";
|
|
1890
|
+
}, {
|
|
1891
|
+
readonly type: "error";
|
|
1892
|
+
readonly inputs: readonly [{
|
|
1893
|
+
readonly name: "idsLength";
|
|
1894
|
+
readonly internalType: "uint256";
|
|
1895
|
+
readonly type: "uint256";
|
|
1896
|
+
}, {
|
|
1897
|
+
readonly name: "valuesLength";
|
|
1898
|
+
readonly internalType: "uint256";
|
|
1899
|
+
readonly type: "uint256";
|
|
1900
|
+
}];
|
|
1901
|
+
readonly name: "ERC1155InvalidArrayLength";
|
|
1902
|
+
}, {
|
|
1903
|
+
readonly type: "error";
|
|
1904
|
+
readonly inputs: readonly [{
|
|
1905
|
+
readonly name: "operator";
|
|
1906
|
+
readonly internalType: "address";
|
|
1907
|
+
readonly type: "address";
|
|
1908
|
+
}];
|
|
1909
|
+
readonly name: "ERC1155InvalidOperator";
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly type: "error";
|
|
1912
|
+
readonly inputs: readonly [{
|
|
1913
|
+
readonly name: "receiver";
|
|
1914
|
+
readonly internalType: "address";
|
|
1915
|
+
readonly type: "address";
|
|
1916
|
+
}];
|
|
1917
|
+
readonly name: "ERC1155InvalidReceiver";
|
|
1918
|
+
}, {
|
|
1919
|
+
readonly type: "error";
|
|
1920
|
+
readonly inputs: readonly [{
|
|
1921
|
+
readonly name: "sender";
|
|
1922
|
+
readonly internalType: "address";
|
|
1923
|
+
readonly type: "address";
|
|
1924
|
+
}];
|
|
1925
|
+
readonly name: "ERC1155InvalidSender";
|
|
1926
|
+
}, {
|
|
1927
|
+
readonly type: "error";
|
|
1928
|
+
readonly inputs: readonly [{
|
|
1929
|
+
readonly name: "operator";
|
|
1930
|
+
readonly internalType: "address";
|
|
1931
|
+
readonly type: "address";
|
|
1932
|
+
}, {
|
|
1933
|
+
readonly name: "owner";
|
|
1934
|
+
readonly internalType: "address";
|
|
1935
|
+
readonly type: "address";
|
|
1936
|
+
}];
|
|
1937
|
+
readonly name: "ERC1155MissingApprovalForAll";
|
|
1938
|
+
}, {
|
|
1939
|
+
readonly type: "error";
|
|
1940
|
+
readonly inputs: readonly [{
|
|
1941
|
+
readonly name: "owner";
|
|
1942
|
+
readonly internalType: "address";
|
|
1943
|
+
readonly type: "address";
|
|
1944
|
+
}];
|
|
1945
|
+
readonly name: "OwnableInvalidOwner";
|
|
1946
|
+
}, {
|
|
1947
|
+
readonly type: "error";
|
|
1948
|
+
readonly inputs: readonly [{
|
|
1949
|
+
readonly name: "account";
|
|
1950
|
+
readonly internalType: "address";
|
|
1951
|
+
readonly type: "address";
|
|
1952
|
+
}];
|
|
1953
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
1954
|
+
}];
|
|
1955
|
+
export declare const testMultiTokenAddress: "0xDC6d64971B77a47fB3E3c6c409D4A05468C398D2";
|
|
1956
|
+
export declare const testMultiTokenConfig: {
|
|
1957
|
+
readonly address: "0xDC6d64971B77a47fB3E3c6c409D4A05468C398D2";
|
|
1958
|
+
readonly abi: readonly [{
|
|
1959
|
+
readonly type: "constructor";
|
|
1949
1960
|
readonly inputs: readonly [{
|
|
1950
|
-
readonly name: "
|
|
1961
|
+
readonly name: "initialOwner";
|
|
1951
1962
|
readonly internalType: "address";
|
|
1952
1963
|
readonly type: "address";
|
|
1953
1964
|
}];
|
|
1954
|
-
readonly
|
|
1965
|
+
readonly stateMutability: "nonpayable";
|
|
1955
1966
|
}, {
|
|
1956
|
-
readonly type: "
|
|
1967
|
+
readonly type: "function";
|
|
1957
1968
|
readonly inputs: readonly [{
|
|
1958
|
-
readonly name: "
|
|
1969
|
+
readonly name: "account";
|
|
1959
1970
|
readonly internalType: "address";
|
|
1960
1971
|
readonly type: "address";
|
|
1972
|
+
}, {
|
|
1973
|
+
readonly name: "id";
|
|
1974
|
+
readonly internalType: "uint256";
|
|
1975
|
+
readonly type: "uint256";
|
|
1961
1976
|
}];
|
|
1962
|
-
readonly name: "
|
|
1977
|
+
readonly name: "balanceOf";
|
|
1978
|
+
readonly outputs: readonly [{
|
|
1979
|
+
readonly name: "";
|
|
1980
|
+
readonly internalType: "uint256";
|
|
1981
|
+
readonly type: "uint256";
|
|
1982
|
+
}];
|
|
1983
|
+
readonly stateMutability: "view";
|
|
1963
1984
|
}, {
|
|
1964
|
-
readonly type: "
|
|
1985
|
+
readonly type: "function";
|
|
1965
1986
|
readonly inputs: readonly [{
|
|
1966
|
-
readonly name: "
|
|
1967
|
-
readonly internalType: "address";
|
|
1968
|
-
readonly type: "address";
|
|
1987
|
+
readonly name: "accounts";
|
|
1988
|
+
readonly internalType: "address[]";
|
|
1989
|
+
readonly type: "address[]";
|
|
1990
|
+
}, {
|
|
1991
|
+
readonly name: "ids";
|
|
1992
|
+
readonly internalType: "uint256[]";
|
|
1993
|
+
readonly type: "uint256[]";
|
|
1969
1994
|
}];
|
|
1970
|
-
readonly name: "
|
|
1995
|
+
readonly name: "balanceOfBatch";
|
|
1996
|
+
readonly outputs: readonly [{
|
|
1997
|
+
readonly name: "";
|
|
1998
|
+
readonly internalType: "uint256[]";
|
|
1999
|
+
readonly type: "uint256[]";
|
|
2000
|
+
}];
|
|
2001
|
+
readonly stateMutability: "view";
|
|
1971
2002
|
}, {
|
|
1972
|
-
readonly type: "
|
|
2003
|
+
readonly type: "function";
|
|
1973
2004
|
readonly inputs: readonly [{
|
|
1974
|
-
readonly name: "
|
|
2005
|
+
readonly name: "account";
|
|
1975
2006
|
readonly internalType: "address";
|
|
1976
2007
|
readonly type: "address";
|
|
1977
2008
|
}, {
|
|
1978
|
-
readonly name: "
|
|
2009
|
+
readonly name: "operator";
|
|
1979
2010
|
readonly internalType: "address";
|
|
1980
2011
|
readonly type: "address";
|
|
1981
2012
|
}];
|
|
1982
|
-
readonly name: "
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
readonly
|
|
1987
|
-
readonly internalType: "address";
|
|
1988
|
-
readonly type: "address";
|
|
2013
|
+
readonly name: "isApprovedForAll";
|
|
2014
|
+
readonly outputs: readonly [{
|
|
2015
|
+
readonly name: "";
|
|
2016
|
+
readonly internalType: "bool";
|
|
2017
|
+
readonly type: "bool";
|
|
1989
2018
|
}];
|
|
1990
|
-
readonly
|
|
2019
|
+
readonly stateMutability: "view";
|
|
1991
2020
|
}, {
|
|
1992
|
-
readonly type: "
|
|
1993
|
-
readonly inputs: readonly [{
|
|
1994
|
-
readonly name: "account";
|
|
1995
|
-
readonly internalType: "address";
|
|
1996
|
-
readonly type: "address";
|
|
1997
|
-
}];
|
|
1998
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
1999
|
-
}, {
|
|
2000
|
-
readonly type: "event";
|
|
2001
|
-
readonly anonymous: false;
|
|
2002
|
-
readonly inputs: readonly [{
|
|
2003
|
-
readonly name: "account";
|
|
2004
|
-
readonly internalType: "address";
|
|
2005
|
-
readonly type: "address";
|
|
2006
|
-
readonly indexed: true;
|
|
2007
|
-
}, {
|
|
2008
|
-
readonly name: "operator";
|
|
2009
|
-
readonly internalType: "address";
|
|
2010
|
-
readonly type: "address";
|
|
2011
|
-
readonly indexed: true;
|
|
2012
|
-
}, {
|
|
2013
|
-
readonly name: "approved";
|
|
2014
|
-
readonly internalType: "bool";
|
|
2015
|
-
readonly type: "bool";
|
|
2016
|
-
readonly indexed: false;
|
|
2017
|
-
}];
|
|
2018
|
-
readonly name: "ApprovalForAll";
|
|
2019
|
-
}, {
|
|
2020
|
-
readonly type: "event";
|
|
2021
|
-
readonly anonymous: false;
|
|
2022
|
-
readonly inputs: readonly [{
|
|
2023
|
-
readonly name: "previousOwner";
|
|
2024
|
-
readonly internalType: "address";
|
|
2025
|
-
readonly type: "address";
|
|
2026
|
-
readonly indexed: true;
|
|
2027
|
-
}, {
|
|
2028
|
-
readonly name: "newOwner";
|
|
2029
|
-
readonly internalType: "address";
|
|
2030
|
-
readonly type: "address";
|
|
2031
|
-
readonly indexed: true;
|
|
2032
|
-
}];
|
|
2033
|
-
readonly name: "OwnershipTransferred";
|
|
2034
|
-
}, {
|
|
2035
|
-
readonly type: "event";
|
|
2036
|
-
readonly anonymous: false;
|
|
2037
|
-
readonly inputs: readonly [{
|
|
2038
|
-
readonly name: "operator";
|
|
2039
|
-
readonly internalType: "address";
|
|
2040
|
-
readonly type: "address";
|
|
2041
|
-
readonly indexed: true;
|
|
2042
|
-
}, {
|
|
2043
|
-
readonly name: "from";
|
|
2044
|
-
readonly internalType: "address";
|
|
2045
|
-
readonly type: "address";
|
|
2046
|
-
readonly indexed: true;
|
|
2047
|
-
}, {
|
|
2048
|
-
readonly name: "to";
|
|
2049
|
-
readonly internalType: "address";
|
|
2050
|
-
readonly type: "address";
|
|
2051
|
-
readonly indexed: true;
|
|
2052
|
-
}, {
|
|
2053
|
-
readonly name: "ids";
|
|
2054
|
-
readonly internalType: "uint256[]";
|
|
2055
|
-
readonly type: "uint256[]";
|
|
2056
|
-
readonly indexed: false;
|
|
2057
|
-
}, {
|
|
2058
|
-
readonly name: "values";
|
|
2059
|
-
readonly internalType: "uint256[]";
|
|
2060
|
-
readonly type: "uint256[]";
|
|
2061
|
-
readonly indexed: false;
|
|
2062
|
-
}];
|
|
2063
|
-
readonly name: "TransferBatch";
|
|
2064
|
-
}, {
|
|
2065
|
-
readonly type: "event";
|
|
2066
|
-
readonly anonymous: false;
|
|
2067
|
-
readonly inputs: readonly [{
|
|
2068
|
-
readonly name: "operator";
|
|
2069
|
-
readonly internalType: "address";
|
|
2070
|
-
readonly type: "address";
|
|
2071
|
-
readonly indexed: true;
|
|
2072
|
-
}, {
|
|
2073
|
-
readonly name: "from";
|
|
2074
|
-
readonly internalType: "address";
|
|
2075
|
-
readonly type: "address";
|
|
2076
|
-
readonly indexed: true;
|
|
2077
|
-
}, {
|
|
2078
|
-
readonly name: "to";
|
|
2079
|
-
readonly internalType: "address";
|
|
2080
|
-
readonly type: "address";
|
|
2081
|
-
readonly indexed: true;
|
|
2082
|
-
}, {
|
|
2083
|
-
readonly name: "id";
|
|
2084
|
-
readonly internalType: "uint256";
|
|
2085
|
-
readonly type: "uint256";
|
|
2086
|
-
readonly indexed: false;
|
|
2087
|
-
}, {
|
|
2088
|
-
readonly name: "value";
|
|
2089
|
-
readonly internalType: "uint256";
|
|
2090
|
-
readonly type: "uint256";
|
|
2091
|
-
readonly indexed: false;
|
|
2092
|
-
}];
|
|
2093
|
-
readonly name: "TransferSingle";
|
|
2094
|
-
}, {
|
|
2095
|
-
readonly type: "event";
|
|
2096
|
-
readonly anonymous: false;
|
|
2097
|
-
readonly inputs: readonly [{
|
|
2098
|
-
readonly name: "value";
|
|
2099
|
-
readonly internalType: "string";
|
|
2100
|
-
readonly type: "string";
|
|
2101
|
-
readonly indexed: false;
|
|
2102
|
-
}, {
|
|
2103
|
-
readonly name: "id";
|
|
2104
|
-
readonly internalType: "uint256";
|
|
2105
|
-
readonly type: "uint256";
|
|
2106
|
-
readonly indexed: true;
|
|
2107
|
-
}];
|
|
2108
|
-
readonly name: "URI";
|
|
2109
|
-
}, {
|
|
2110
|
-
readonly type: "function";
|
|
2111
|
-
readonly inputs: readonly [{
|
|
2112
|
-
readonly name: "account";
|
|
2113
|
-
readonly internalType: "address";
|
|
2114
|
-
readonly type: "address";
|
|
2115
|
-
}, {
|
|
2116
|
-
readonly name: "id";
|
|
2117
|
-
readonly internalType: "uint256";
|
|
2118
|
-
readonly type: "uint256";
|
|
2119
|
-
}];
|
|
2120
|
-
readonly name: "balanceOf";
|
|
2121
|
-
readonly outputs: readonly [{
|
|
2122
|
-
readonly name: "";
|
|
2123
|
-
readonly internalType: "uint256";
|
|
2124
|
-
readonly type: "uint256";
|
|
2125
|
-
}];
|
|
2126
|
-
readonly stateMutability: "view";
|
|
2127
|
-
}, {
|
|
2128
|
-
readonly type: "function";
|
|
2129
|
-
readonly inputs: readonly [{
|
|
2130
|
-
readonly name: "accounts";
|
|
2131
|
-
readonly internalType: "address[]";
|
|
2132
|
-
readonly type: "address[]";
|
|
2133
|
-
}, {
|
|
2134
|
-
readonly name: "ids";
|
|
2135
|
-
readonly internalType: "uint256[]";
|
|
2136
|
-
readonly type: "uint256[]";
|
|
2137
|
-
}];
|
|
2138
|
-
readonly name: "balanceOfBatch";
|
|
2139
|
-
readonly outputs: readonly [{
|
|
2140
|
-
readonly name: "";
|
|
2141
|
-
readonly internalType: "uint256[]";
|
|
2142
|
-
readonly type: "uint256[]";
|
|
2143
|
-
}];
|
|
2144
|
-
readonly stateMutability: "view";
|
|
2145
|
-
}, {
|
|
2146
|
-
readonly type: "function";
|
|
2147
|
-
readonly inputs: readonly [{
|
|
2148
|
-
readonly name: "account";
|
|
2149
|
-
readonly internalType: "address";
|
|
2150
|
-
readonly type: "address";
|
|
2151
|
-
}, {
|
|
2152
|
-
readonly name: "operator";
|
|
2153
|
-
readonly internalType: "address";
|
|
2154
|
-
readonly type: "address";
|
|
2155
|
-
}];
|
|
2156
|
-
readonly name: "isApprovedForAll";
|
|
2157
|
-
readonly outputs: readonly [{
|
|
2158
|
-
readonly name: "";
|
|
2159
|
-
readonly internalType: "bool";
|
|
2160
|
-
readonly type: "bool";
|
|
2161
|
-
}];
|
|
2162
|
-
readonly stateMutability: "view";
|
|
2163
|
-
}, {
|
|
2164
|
-
readonly type: "function";
|
|
2021
|
+
readonly type: "function";
|
|
2165
2022
|
readonly inputs: readonly [{
|
|
2166
2023
|
readonly name: "account";
|
|
2167
2024
|
readonly internalType: "address";
|
|
@@ -2334,268 +2191,278 @@ export declare const testMultiTokenConfig: {
|
|
|
2334
2191
|
readonly type: "string";
|
|
2335
2192
|
}];
|
|
2336
2193
|
readonly stateMutability: "view";
|
|
2337
|
-
}];
|
|
2338
|
-
};
|
|
2339
|
-
export declare const testNftAbi: readonly [{
|
|
2340
|
-
readonly type: "constructor";
|
|
2341
|
-
readonly inputs: readonly [{
|
|
2342
|
-
readonly name: "initialOwner";
|
|
2343
|
-
readonly internalType: "address";
|
|
2344
|
-
readonly type: "address";
|
|
2345
|
-
}];
|
|
2346
|
-
readonly stateMutability: "nonpayable";
|
|
2347
|
-
}, {
|
|
2348
|
-
readonly type: "error";
|
|
2349
|
-
readonly inputs: readonly [{
|
|
2350
|
-
readonly name: "sender";
|
|
2351
|
-
readonly internalType: "address";
|
|
2352
|
-
readonly type: "address";
|
|
2353
2194
|
}, {
|
|
2354
|
-
readonly
|
|
2355
|
-
readonly
|
|
2356
|
-
readonly
|
|
2195
|
+
readonly type: "event";
|
|
2196
|
+
readonly anonymous: false;
|
|
2197
|
+
readonly inputs: readonly [{
|
|
2198
|
+
readonly name: "account";
|
|
2199
|
+
readonly internalType: "address";
|
|
2200
|
+
readonly type: "address";
|
|
2201
|
+
readonly indexed: true;
|
|
2202
|
+
}, {
|
|
2203
|
+
readonly name: "operator";
|
|
2204
|
+
readonly internalType: "address";
|
|
2205
|
+
readonly type: "address";
|
|
2206
|
+
readonly indexed: true;
|
|
2207
|
+
}, {
|
|
2208
|
+
readonly name: "approved";
|
|
2209
|
+
readonly internalType: "bool";
|
|
2210
|
+
readonly type: "bool";
|
|
2211
|
+
readonly indexed: false;
|
|
2212
|
+
}];
|
|
2213
|
+
readonly name: "ApprovalForAll";
|
|
2357
2214
|
}, {
|
|
2358
|
-
readonly
|
|
2359
|
-
readonly
|
|
2360
|
-
readonly
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2215
|
+
readonly type: "event";
|
|
2216
|
+
readonly anonymous: false;
|
|
2217
|
+
readonly inputs: readonly [{
|
|
2218
|
+
readonly name: "previousOwner";
|
|
2219
|
+
readonly internalType: "address";
|
|
2220
|
+
readonly type: "address";
|
|
2221
|
+
readonly indexed: true;
|
|
2222
|
+
}, {
|
|
2223
|
+
readonly name: "newOwner";
|
|
2224
|
+
readonly internalType: "address";
|
|
2225
|
+
readonly type: "address";
|
|
2226
|
+
readonly indexed: true;
|
|
2227
|
+
}];
|
|
2228
|
+
readonly name: "OwnershipTransferred";
|
|
2369
2229
|
}, {
|
|
2370
|
-
readonly
|
|
2371
|
-
readonly
|
|
2372
|
-
readonly
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2230
|
+
readonly type: "event";
|
|
2231
|
+
readonly anonymous: false;
|
|
2232
|
+
readonly inputs: readonly [{
|
|
2233
|
+
readonly name: "operator";
|
|
2234
|
+
readonly internalType: "address";
|
|
2235
|
+
readonly type: "address";
|
|
2236
|
+
readonly indexed: true;
|
|
2237
|
+
}, {
|
|
2238
|
+
readonly name: "from";
|
|
2239
|
+
readonly internalType: "address";
|
|
2240
|
+
readonly type: "address";
|
|
2241
|
+
readonly indexed: true;
|
|
2242
|
+
}, {
|
|
2243
|
+
readonly name: "to";
|
|
2244
|
+
readonly internalType: "address";
|
|
2245
|
+
readonly type: "address";
|
|
2246
|
+
readonly indexed: true;
|
|
2247
|
+
}, {
|
|
2248
|
+
readonly name: "ids";
|
|
2249
|
+
readonly internalType: "uint256[]";
|
|
2250
|
+
readonly type: "uint256[]";
|
|
2251
|
+
readonly indexed: false;
|
|
2252
|
+
}, {
|
|
2253
|
+
readonly name: "values";
|
|
2254
|
+
readonly internalType: "uint256[]";
|
|
2255
|
+
readonly type: "uint256[]";
|
|
2256
|
+
readonly indexed: false;
|
|
2257
|
+
}];
|
|
2258
|
+
readonly name: "TransferBatch";
|
|
2259
|
+
}, {
|
|
2260
|
+
readonly type: "event";
|
|
2261
|
+
readonly anonymous: false;
|
|
2262
|
+
readonly inputs: readonly [{
|
|
2263
|
+
readonly name: "operator";
|
|
2264
|
+
readonly internalType: "address";
|
|
2265
|
+
readonly type: "address";
|
|
2266
|
+
readonly indexed: true;
|
|
2267
|
+
}, {
|
|
2268
|
+
readonly name: "from";
|
|
2269
|
+
readonly internalType: "address";
|
|
2270
|
+
readonly type: "address";
|
|
2271
|
+
readonly indexed: true;
|
|
2272
|
+
}, {
|
|
2273
|
+
readonly name: "to";
|
|
2274
|
+
readonly internalType: "address";
|
|
2275
|
+
readonly type: "address";
|
|
2276
|
+
readonly indexed: true;
|
|
2277
|
+
}, {
|
|
2278
|
+
readonly name: "id";
|
|
2279
|
+
readonly internalType: "uint256";
|
|
2280
|
+
readonly type: "uint256";
|
|
2281
|
+
readonly indexed: false;
|
|
2282
|
+
}, {
|
|
2283
|
+
readonly name: "value";
|
|
2284
|
+
readonly internalType: "uint256";
|
|
2285
|
+
readonly type: "uint256";
|
|
2286
|
+
readonly indexed: false;
|
|
2287
|
+
}];
|
|
2288
|
+
readonly name: "TransferSingle";
|
|
2289
|
+
}, {
|
|
2290
|
+
readonly type: "event";
|
|
2291
|
+
readonly anonymous: false;
|
|
2292
|
+
readonly inputs: readonly [{
|
|
2293
|
+
readonly name: "value";
|
|
2294
|
+
readonly internalType: "string";
|
|
2295
|
+
readonly type: "string";
|
|
2296
|
+
readonly indexed: false;
|
|
2297
|
+
}, {
|
|
2298
|
+
readonly name: "id";
|
|
2299
|
+
readonly internalType: "uint256";
|
|
2300
|
+
readonly type: "uint256";
|
|
2301
|
+
readonly indexed: true;
|
|
2302
|
+
}];
|
|
2303
|
+
readonly name: "URI";
|
|
2304
|
+
}, {
|
|
2305
|
+
readonly type: "error";
|
|
2306
|
+
readonly inputs: readonly [{
|
|
2307
|
+
readonly name: "sender";
|
|
2308
|
+
readonly internalType: "address";
|
|
2309
|
+
readonly type: "address";
|
|
2310
|
+
}, {
|
|
2311
|
+
readonly name: "balance";
|
|
2312
|
+
readonly internalType: "uint256";
|
|
2313
|
+
readonly type: "uint256";
|
|
2314
|
+
}, {
|
|
2315
|
+
readonly name: "needed";
|
|
2316
|
+
readonly internalType: "uint256";
|
|
2317
|
+
readonly type: "uint256";
|
|
2318
|
+
}, {
|
|
2319
|
+
readonly name: "tokenId";
|
|
2320
|
+
readonly internalType: "uint256";
|
|
2321
|
+
readonly type: "uint256";
|
|
2322
|
+
}];
|
|
2323
|
+
readonly name: "ERC1155InsufficientBalance";
|
|
2324
|
+
}, {
|
|
2325
|
+
readonly type: "error";
|
|
2326
|
+
readonly inputs: readonly [{
|
|
2327
|
+
readonly name: "approver";
|
|
2328
|
+
readonly internalType: "address";
|
|
2329
|
+
readonly type: "address";
|
|
2330
|
+
}];
|
|
2331
|
+
readonly name: "ERC1155InvalidApprover";
|
|
2332
|
+
}, {
|
|
2333
|
+
readonly type: "error";
|
|
2334
|
+
readonly inputs: readonly [{
|
|
2335
|
+
readonly name: "idsLength";
|
|
2336
|
+
readonly internalType: "uint256";
|
|
2337
|
+
readonly type: "uint256";
|
|
2338
|
+
}, {
|
|
2339
|
+
readonly name: "valuesLength";
|
|
2340
|
+
readonly internalType: "uint256";
|
|
2341
|
+
readonly type: "uint256";
|
|
2342
|
+
}];
|
|
2343
|
+
readonly name: "ERC1155InvalidArrayLength";
|
|
2344
|
+
}, {
|
|
2345
|
+
readonly type: "error";
|
|
2346
|
+
readonly inputs: readonly [{
|
|
2347
|
+
readonly name: "operator";
|
|
2348
|
+
readonly internalType: "address";
|
|
2349
|
+
readonly type: "address";
|
|
2350
|
+
}];
|
|
2351
|
+
readonly name: "ERC1155InvalidOperator";
|
|
2352
|
+
}, {
|
|
2353
|
+
readonly type: "error";
|
|
2354
|
+
readonly inputs: readonly [{
|
|
2355
|
+
readonly name: "receiver";
|
|
2356
|
+
readonly internalType: "address";
|
|
2357
|
+
readonly type: "address";
|
|
2358
|
+
}];
|
|
2359
|
+
readonly name: "ERC1155InvalidReceiver";
|
|
2360
|
+
}, {
|
|
2361
|
+
readonly type: "error";
|
|
2362
|
+
readonly inputs: readonly [{
|
|
2363
|
+
readonly name: "sender";
|
|
2364
|
+
readonly internalType: "address";
|
|
2365
|
+
readonly type: "address";
|
|
2366
|
+
}];
|
|
2367
|
+
readonly name: "ERC1155InvalidSender";
|
|
2368
|
+
}, {
|
|
2369
|
+
readonly type: "error";
|
|
2370
|
+
readonly inputs: readonly [{
|
|
2371
|
+
readonly name: "operator";
|
|
2372
|
+
readonly internalType: "address";
|
|
2373
|
+
readonly type: "address";
|
|
2374
|
+
}, {
|
|
2375
|
+
readonly name: "owner";
|
|
2376
|
+
readonly internalType: "address";
|
|
2377
|
+
readonly type: "address";
|
|
2378
|
+
}];
|
|
2379
|
+
readonly name: "ERC1155MissingApprovalForAll";
|
|
2380
|
+
}, {
|
|
2381
|
+
readonly type: "error";
|
|
2382
|
+
readonly inputs: readonly [{
|
|
2383
|
+
readonly name: "owner";
|
|
2384
|
+
readonly internalType: "address";
|
|
2385
|
+
readonly type: "address";
|
|
2386
|
+
}];
|
|
2387
|
+
readonly name: "OwnableInvalidOwner";
|
|
2388
|
+
}, {
|
|
2389
|
+
readonly type: "error";
|
|
2390
|
+
readonly inputs: readonly [{
|
|
2391
|
+
readonly name: "account";
|
|
2392
|
+
readonly internalType: "address";
|
|
2393
|
+
readonly type: "address";
|
|
2394
|
+
}];
|
|
2395
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
2397
2396
|
}];
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
readonly type: "
|
|
2397
|
+
};
|
|
2398
|
+
export declare const testNftAbi: readonly [{
|
|
2399
|
+
readonly type: "constructor";
|
|
2401
2400
|
readonly inputs: readonly [{
|
|
2402
|
-
readonly name: "
|
|
2401
|
+
readonly name: "initialOwner";
|
|
2403
2402
|
readonly internalType: "address";
|
|
2404
2403
|
readonly type: "address";
|
|
2405
2404
|
}];
|
|
2406
|
-
readonly
|
|
2405
|
+
readonly stateMutability: "nonpayable";
|
|
2407
2406
|
}, {
|
|
2408
|
-
readonly type: "
|
|
2407
|
+
readonly type: "function";
|
|
2409
2408
|
readonly inputs: readonly [{
|
|
2410
|
-
readonly name: "
|
|
2409
|
+
readonly name: "to";
|
|
2411
2410
|
readonly internalType: "address";
|
|
2412
2411
|
readonly type: "address";
|
|
2413
|
-
}
|
|
2414
|
-
readonly name: "ERC721InvalidSender";
|
|
2415
|
-
}, {
|
|
2416
|
-
readonly type: "error";
|
|
2417
|
-
readonly inputs: readonly [{
|
|
2412
|
+
}, {
|
|
2418
2413
|
readonly name: "tokenId";
|
|
2419
2414
|
readonly internalType: "uint256";
|
|
2420
2415
|
readonly type: "uint256";
|
|
2421
2416
|
}];
|
|
2422
|
-
readonly name: "
|
|
2417
|
+
readonly name: "approve";
|
|
2418
|
+
readonly outputs: readonly [];
|
|
2419
|
+
readonly stateMutability: "nonpayable";
|
|
2423
2420
|
}, {
|
|
2424
|
-
readonly type: "
|
|
2421
|
+
readonly type: "function";
|
|
2425
2422
|
readonly inputs: readonly [{
|
|
2426
2423
|
readonly name: "owner";
|
|
2427
2424
|
readonly internalType: "address";
|
|
2428
2425
|
readonly type: "address";
|
|
2429
2426
|
}];
|
|
2430
|
-
readonly name: "
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
readonly
|
|
2435
|
-
readonly internalType: "address";
|
|
2436
|
-
readonly type: "address";
|
|
2427
|
+
readonly name: "balanceOf";
|
|
2428
|
+
readonly outputs: readonly [{
|
|
2429
|
+
readonly name: "";
|
|
2430
|
+
readonly internalType: "uint256";
|
|
2431
|
+
readonly type: "uint256";
|
|
2437
2432
|
}];
|
|
2438
|
-
readonly
|
|
2433
|
+
readonly stateMutability: "view";
|
|
2439
2434
|
}, {
|
|
2440
|
-
readonly type: "
|
|
2441
|
-
readonly anonymous: false;
|
|
2435
|
+
readonly type: "function";
|
|
2442
2436
|
readonly inputs: readonly [{
|
|
2443
|
-
readonly name: "owner";
|
|
2444
|
-
readonly internalType: "address";
|
|
2445
|
-
readonly type: "address";
|
|
2446
|
-
readonly indexed: true;
|
|
2447
|
-
}, {
|
|
2448
|
-
readonly name: "approved";
|
|
2449
|
-
readonly internalType: "address";
|
|
2450
|
-
readonly type: "address";
|
|
2451
|
-
readonly indexed: true;
|
|
2452
|
-
}, {
|
|
2453
2437
|
readonly name: "tokenId";
|
|
2454
2438
|
readonly internalType: "uint256";
|
|
2455
2439
|
readonly type: "uint256";
|
|
2456
|
-
readonly indexed: true;
|
|
2457
2440
|
}];
|
|
2458
|
-
readonly name: "
|
|
2441
|
+
readonly name: "getApproved";
|
|
2442
|
+
readonly outputs: readonly [{
|
|
2443
|
+
readonly name: "";
|
|
2444
|
+
readonly internalType: "address";
|
|
2445
|
+
readonly type: "address";
|
|
2446
|
+
}];
|
|
2447
|
+
readonly stateMutability: "view";
|
|
2459
2448
|
}, {
|
|
2460
|
-
readonly type: "
|
|
2461
|
-
readonly anonymous: false;
|
|
2449
|
+
readonly type: "function";
|
|
2462
2450
|
readonly inputs: readonly [{
|
|
2463
2451
|
readonly name: "owner";
|
|
2464
2452
|
readonly internalType: "address";
|
|
2465
2453
|
readonly type: "address";
|
|
2466
|
-
readonly indexed: true;
|
|
2467
2454
|
}, {
|
|
2468
2455
|
readonly name: "operator";
|
|
2469
2456
|
readonly internalType: "address";
|
|
2470
2457
|
readonly type: "address";
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2458
|
+
}];
|
|
2459
|
+
readonly name: "isApprovedForAll";
|
|
2460
|
+
readonly outputs: readonly [{
|
|
2461
|
+
readonly name: "";
|
|
2474
2462
|
readonly internalType: "bool";
|
|
2475
2463
|
readonly type: "bool";
|
|
2476
|
-
readonly indexed: false;
|
|
2477
2464
|
}];
|
|
2478
|
-
readonly
|
|
2479
|
-
}, {
|
|
2480
|
-
readonly type: "event";
|
|
2481
|
-
readonly anonymous: false;
|
|
2482
|
-
readonly inputs: readonly [{
|
|
2483
|
-
readonly name: "_fromTokenId";
|
|
2484
|
-
readonly internalType: "uint256";
|
|
2485
|
-
readonly type: "uint256";
|
|
2486
|
-
readonly indexed: false;
|
|
2487
|
-
}, {
|
|
2488
|
-
readonly name: "_toTokenId";
|
|
2489
|
-
readonly internalType: "uint256";
|
|
2490
|
-
readonly type: "uint256";
|
|
2491
|
-
readonly indexed: false;
|
|
2492
|
-
}];
|
|
2493
|
-
readonly name: "BatchMetadataUpdate";
|
|
2494
|
-
}, {
|
|
2495
|
-
readonly type: "event";
|
|
2496
|
-
readonly anonymous: false;
|
|
2497
|
-
readonly inputs: readonly [{
|
|
2498
|
-
readonly name: "_tokenId";
|
|
2499
|
-
readonly internalType: "uint256";
|
|
2500
|
-
readonly type: "uint256";
|
|
2501
|
-
readonly indexed: false;
|
|
2502
|
-
}];
|
|
2503
|
-
readonly name: "MetadataUpdate";
|
|
2504
|
-
}, {
|
|
2505
|
-
readonly type: "event";
|
|
2506
|
-
readonly anonymous: false;
|
|
2507
|
-
readonly inputs: readonly [{
|
|
2508
|
-
readonly name: "previousOwner";
|
|
2509
|
-
readonly internalType: "address";
|
|
2510
|
-
readonly type: "address";
|
|
2511
|
-
readonly indexed: true;
|
|
2512
|
-
}, {
|
|
2513
|
-
readonly name: "newOwner";
|
|
2514
|
-
readonly internalType: "address";
|
|
2515
|
-
readonly type: "address";
|
|
2516
|
-
readonly indexed: true;
|
|
2517
|
-
}];
|
|
2518
|
-
readonly name: "OwnershipTransferred";
|
|
2519
|
-
}, {
|
|
2520
|
-
readonly type: "event";
|
|
2521
|
-
readonly anonymous: false;
|
|
2522
|
-
readonly inputs: readonly [{
|
|
2523
|
-
readonly name: "from";
|
|
2524
|
-
readonly internalType: "address";
|
|
2525
|
-
readonly type: "address";
|
|
2526
|
-
readonly indexed: true;
|
|
2527
|
-
}, {
|
|
2528
|
-
readonly name: "to";
|
|
2529
|
-
readonly internalType: "address";
|
|
2530
|
-
readonly type: "address";
|
|
2531
|
-
readonly indexed: true;
|
|
2532
|
-
}, {
|
|
2533
|
-
readonly name: "tokenId";
|
|
2534
|
-
readonly internalType: "uint256";
|
|
2535
|
-
readonly type: "uint256";
|
|
2536
|
-
readonly indexed: true;
|
|
2537
|
-
}];
|
|
2538
|
-
readonly name: "Transfer";
|
|
2539
|
-
}, {
|
|
2540
|
-
readonly type: "function";
|
|
2541
|
-
readonly inputs: readonly [{
|
|
2542
|
-
readonly name: "to";
|
|
2543
|
-
readonly internalType: "address";
|
|
2544
|
-
readonly type: "address";
|
|
2545
|
-
}, {
|
|
2546
|
-
readonly name: "tokenId";
|
|
2547
|
-
readonly internalType: "uint256";
|
|
2548
|
-
readonly type: "uint256";
|
|
2549
|
-
}];
|
|
2550
|
-
readonly name: "approve";
|
|
2551
|
-
readonly outputs: readonly [];
|
|
2552
|
-
readonly stateMutability: "nonpayable";
|
|
2553
|
-
}, {
|
|
2554
|
-
readonly type: "function";
|
|
2555
|
-
readonly inputs: readonly [{
|
|
2556
|
-
readonly name: "owner";
|
|
2557
|
-
readonly internalType: "address";
|
|
2558
|
-
readonly type: "address";
|
|
2559
|
-
}];
|
|
2560
|
-
readonly name: "balanceOf";
|
|
2561
|
-
readonly outputs: readonly [{
|
|
2562
|
-
readonly name: "";
|
|
2563
|
-
readonly internalType: "uint256";
|
|
2564
|
-
readonly type: "uint256";
|
|
2565
|
-
}];
|
|
2566
|
-
readonly stateMutability: "view";
|
|
2567
|
-
}, {
|
|
2568
|
-
readonly type: "function";
|
|
2569
|
-
readonly inputs: readonly [{
|
|
2570
|
-
readonly name: "tokenId";
|
|
2571
|
-
readonly internalType: "uint256";
|
|
2572
|
-
readonly type: "uint256";
|
|
2573
|
-
}];
|
|
2574
|
-
readonly name: "getApproved";
|
|
2575
|
-
readonly outputs: readonly [{
|
|
2576
|
-
readonly name: "";
|
|
2577
|
-
readonly internalType: "address";
|
|
2578
|
-
readonly type: "address";
|
|
2579
|
-
}];
|
|
2580
|
-
readonly stateMutability: "view";
|
|
2581
|
-
}, {
|
|
2582
|
-
readonly type: "function";
|
|
2583
|
-
readonly inputs: readonly [{
|
|
2584
|
-
readonly name: "owner";
|
|
2585
|
-
readonly internalType: "address";
|
|
2586
|
-
readonly type: "address";
|
|
2587
|
-
}, {
|
|
2588
|
-
readonly name: "operator";
|
|
2589
|
-
readonly internalType: "address";
|
|
2590
|
-
readonly type: "address";
|
|
2591
|
-
}];
|
|
2592
|
-
readonly name: "isApprovedForAll";
|
|
2593
|
-
readonly outputs: readonly [{
|
|
2594
|
-
readonly name: "";
|
|
2595
|
-
readonly internalType: "bool";
|
|
2596
|
-
readonly type: "bool";
|
|
2597
|
-
}];
|
|
2598
|
-
readonly stateMutability: "view";
|
|
2465
|
+
readonly stateMutability: "view";
|
|
2599
2466
|
}, {
|
|
2600
2467
|
readonly type: "function";
|
|
2601
2468
|
readonly inputs: readonly [];
|
|
@@ -2774,210 +2641,210 @@ export declare const testNftAbi: readonly [{
|
|
|
2774
2641
|
readonly name: "transferOwnership";
|
|
2775
2642
|
readonly outputs: readonly [];
|
|
2776
2643
|
readonly stateMutability: "nonpayable";
|
|
2777
|
-
}
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
readonly
|
|
2781
|
-
|
|
2782
|
-
readonly
|
|
2783
|
-
readonly
|
|
2784
|
-
|
|
2785
|
-
readonly internalType: "address";
|
|
2786
|
-
readonly type: "address";
|
|
2787
|
-
}];
|
|
2788
|
-
readonly stateMutability: "nonpayable";
|
|
2644
|
+
}, {
|
|
2645
|
+
readonly type: "event";
|
|
2646
|
+
readonly anonymous: false;
|
|
2647
|
+
readonly inputs: readonly [{
|
|
2648
|
+
readonly name: "owner";
|
|
2649
|
+
readonly internalType: "address";
|
|
2650
|
+
readonly type: "address";
|
|
2651
|
+
readonly indexed: true;
|
|
2789
2652
|
}, {
|
|
2790
|
-
readonly
|
|
2791
|
-
readonly
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
readonly type: "address";
|
|
2795
|
-
}, {
|
|
2796
|
-
readonly name: "tokenId";
|
|
2797
|
-
readonly internalType: "uint256";
|
|
2798
|
-
readonly type: "uint256";
|
|
2799
|
-
}, {
|
|
2800
|
-
readonly name: "owner";
|
|
2801
|
-
readonly internalType: "address";
|
|
2802
|
-
readonly type: "address";
|
|
2803
|
-
}];
|
|
2804
|
-
readonly name: "ERC721IncorrectOwner";
|
|
2653
|
+
readonly name: "approved";
|
|
2654
|
+
readonly internalType: "address";
|
|
2655
|
+
readonly type: "address";
|
|
2656
|
+
readonly indexed: true;
|
|
2805
2657
|
}, {
|
|
2806
|
-
readonly
|
|
2807
|
-
readonly
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
readonly name: "
|
|
2658
|
+
readonly name: "tokenId";
|
|
2659
|
+
readonly internalType: "uint256";
|
|
2660
|
+
readonly type: "uint256";
|
|
2661
|
+
readonly indexed: true;
|
|
2662
|
+
}];
|
|
2663
|
+
readonly name: "Approval";
|
|
2664
|
+
}, {
|
|
2665
|
+
readonly type: "event";
|
|
2666
|
+
readonly anonymous: false;
|
|
2667
|
+
readonly inputs: readonly [{
|
|
2668
|
+
readonly name: "owner";
|
|
2669
|
+
readonly internalType: "address";
|
|
2670
|
+
readonly type: "address";
|
|
2671
|
+
readonly indexed: true;
|
|
2817
2672
|
}, {
|
|
2818
|
-
readonly
|
|
2819
|
-
readonly
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
readonly type: "address";
|
|
2823
|
-
}];
|
|
2824
|
-
readonly name: "ERC721InvalidApprover";
|
|
2673
|
+
readonly name: "operator";
|
|
2674
|
+
readonly internalType: "address";
|
|
2675
|
+
readonly type: "address";
|
|
2676
|
+
readonly indexed: true;
|
|
2825
2677
|
}, {
|
|
2826
|
-
readonly
|
|
2827
|
-
readonly
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2678
|
+
readonly name: "approved";
|
|
2679
|
+
readonly internalType: "bool";
|
|
2680
|
+
readonly type: "bool";
|
|
2681
|
+
readonly indexed: false;
|
|
2682
|
+
}];
|
|
2683
|
+
readonly name: "ApprovalForAll";
|
|
2684
|
+
}, {
|
|
2685
|
+
readonly type: "event";
|
|
2686
|
+
readonly anonymous: false;
|
|
2687
|
+
readonly inputs: readonly [{
|
|
2688
|
+
readonly name: "_fromTokenId";
|
|
2689
|
+
readonly internalType: "uint256";
|
|
2690
|
+
readonly type: "uint256";
|
|
2691
|
+
readonly indexed: false;
|
|
2833
2692
|
}, {
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2693
|
+
readonly name: "_toTokenId";
|
|
2694
|
+
readonly internalType: "uint256";
|
|
2695
|
+
readonly type: "uint256";
|
|
2696
|
+
readonly indexed: false;
|
|
2697
|
+
}];
|
|
2698
|
+
readonly name: "BatchMetadataUpdate";
|
|
2699
|
+
}, {
|
|
2700
|
+
readonly type: "event";
|
|
2701
|
+
readonly anonymous: false;
|
|
2702
|
+
readonly inputs: readonly [{
|
|
2703
|
+
readonly name: "_tokenId";
|
|
2704
|
+
readonly internalType: "uint256";
|
|
2705
|
+
readonly type: "uint256";
|
|
2706
|
+
readonly indexed: false;
|
|
2707
|
+
}];
|
|
2708
|
+
readonly name: "MetadataUpdate";
|
|
2709
|
+
}, {
|
|
2710
|
+
readonly type: "event";
|
|
2711
|
+
readonly anonymous: false;
|
|
2712
|
+
readonly inputs: readonly [{
|
|
2713
|
+
readonly name: "previousOwner";
|
|
2714
|
+
readonly internalType: "address";
|
|
2715
|
+
readonly type: "address";
|
|
2716
|
+
readonly indexed: true;
|
|
2841
2717
|
}, {
|
|
2842
|
-
readonly
|
|
2843
|
-
readonly
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2718
|
+
readonly name: "newOwner";
|
|
2719
|
+
readonly internalType: "address";
|
|
2720
|
+
readonly type: "address";
|
|
2721
|
+
readonly indexed: true;
|
|
2722
|
+
}];
|
|
2723
|
+
readonly name: "OwnershipTransferred";
|
|
2724
|
+
}, {
|
|
2725
|
+
readonly type: "event";
|
|
2726
|
+
readonly anonymous: false;
|
|
2727
|
+
readonly inputs: readonly [{
|
|
2728
|
+
readonly name: "from";
|
|
2729
|
+
readonly internalType: "address";
|
|
2730
|
+
readonly type: "address";
|
|
2731
|
+
readonly indexed: true;
|
|
2849
2732
|
}, {
|
|
2850
|
-
readonly
|
|
2851
|
-
readonly
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
readonly type: "address";
|
|
2855
|
-
}];
|
|
2856
|
-
readonly name: "ERC721InvalidSender";
|
|
2857
|
-
}, {
|
|
2858
|
-
readonly type: "error";
|
|
2859
|
-
readonly inputs: readonly [{
|
|
2860
|
-
readonly name: "tokenId";
|
|
2861
|
-
readonly internalType: "uint256";
|
|
2862
|
-
readonly type: "uint256";
|
|
2863
|
-
}];
|
|
2864
|
-
readonly name: "ERC721NonexistentToken";
|
|
2865
|
-
}, {
|
|
2866
|
-
readonly type: "error";
|
|
2867
|
-
readonly inputs: readonly [{
|
|
2868
|
-
readonly name: "owner";
|
|
2869
|
-
readonly internalType: "address";
|
|
2870
|
-
readonly type: "address";
|
|
2871
|
-
}];
|
|
2872
|
-
readonly name: "OwnableInvalidOwner";
|
|
2873
|
-
}, {
|
|
2874
|
-
readonly type: "error";
|
|
2875
|
-
readonly inputs: readonly [{
|
|
2876
|
-
readonly name: "account";
|
|
2877
|
-
readonly internalType: "address";
|
|
2878
|
-
readonly type: "address";
|
|
2879
|
-
}];
|
|
2880
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
2881
|
-
}, {
|
|
2882
|
-
readonly type: "event";
|
|
2883
|
-
readonly anonymous: false;
|
|
2884
|
-
readonly inputs: readonly [{
|
|
2885
|
-
readonly name: "owner";
|
|
2886
|
-
readonly internalType: "address";
|
|
2887
|
-
readonly type: "address";
|
|
2888
|
-
readonly indexed: true;
|
|
2889
|
-
}, {
|
|
2890
|
-
readonly name: "approved";
|
|
2891
|
-
readonly internalType: "address";
|
|
2892
|
-
readonly type: "address";
|
|
2893
|
-
readonly indexed: true;
|
|
2894
|
-
}, {
|
|
2895
|
-
readonly name: "tokenId";
|
|
2896
|
-
readonly internalType: "uint256";
|
|
2897
|
-
readonly type: "uint256";
|
|
2898
|
-
readonly indexed: true;
|
|
2899
|
-
}];
|
|
2900
|
-
readonly name: "Approval";
|
|
2901
|
-
}, {
|
|
2902
|
-
readonly type: "event";
|
|
2903
|
-
readonly anonymous: false;
|
|
2904
|
-
readonly inputs: readonly [{
|
|
2905
|
-
readonly name: "owner";
|
|
2906
|
-
readonly internalType: "address";
|
|
2907
|
-
readonly type: "address";
|
|
2908
|
-
readonly indexed: true;
|
|
2909
|
-
}, {
|
|
2910
|
-
readonly name: "operator";
|
|
2911
|
-
readonly internalType: "address";
|
|
2912
|
-
readonly type: "address";
|
|
2913
|
-
readonly indexed: true;
|
|
2914
|
-
}, {
|
|
2915
|
-
readonly name: "approved";
|
|
2916
|
-
readonly internalType: "bool";
|
|
2917
|
-
readonly type: "bool";
|
|
2918
|
-
readonly indexed: false;
|
|
2919
|
-
}];
|
|
2920
|
-
readonly name: "ApprovalForAll";
|
|
2733
|
+
readonly name: "to";
|
|
2734
|
+
readonly internalType: "address";
|
|
2735
|
+
readonly type: "address";
|
|
2736
|
+
readonly indexed: true;
|
|
2921
2737
|
}, {
|
|
2922
|
-
readonly
|
|
2923
|
-
readonly
|
|
2924
|
-
readonly
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
}];
|
|
2935
|
-
readonly name: "BatchMetadataUpdate";
|
|
2738
|
+
readonly name: "tokenId";
|
|
2739
|
+
readonly internalType: "uint256";
|
|
2740
|
+
readonly type: "uint256";
|
|
2741
|
+
readonly indexed: true;
|
|
2742
|
+
}];
|
|
2743
|
+
readonly name: "Transfer";
|
|
2744
|
+
}, {
|
|
2745
|
+
readonly type: "error";
|
|
2746
|
+
readonly inputs: readonly [{
|
|
2747
|
+
readonly name: "sender";
|
|
2748
|
+
readonly internalType: "address";
|
|
2749
|
+
readonly type: "address";
|
|
2936
2750
|
}, {
|
|
2937
|
-
readonly
|
|
2938
|
-
readonly
|
|
2939
|
-
readonly
|
|
2940
|
-
readonly name: "_tokenId";
|
|
2941
|
-
readonly internalType: "uint256";
|
|
2942
|
-
readonly type: "uint256";
|
|
2943
|
-
readonly indexed: false;
|
|
2944
|
-
}];
|
|
2945
|
-
readonly name: "MetadataUpdate";
|
|
2751
|
+
readonly name: "tokenId";
|
|
2752
|
+
readonly internalType: "uint256";
|
|
2753
|
+
readonly type: "uint256";
|
|
2946
2754
|
}, {
|
|
2947
|
-
readonly
|
|
2948
|
-
readonly
|
|
2949
|
-
readonly
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
readonly indexed: true;
|
|
2959
|
-
}];
|
|
2960
|
-
readonly name: "OwnershipTransferred";
|
|
2755
|
+
readonly name: "owner";
|
|
2756
|
+
readonly internalType: "address";
|
|
2757
|
+
readonly type: "address";
|
|
2758
|
+
}];
|
|
2759
|
+
readonly name: "ERC721IncorrectOwner";
|
|
2760
|
+
}, {
|
|
2761
|
+
readonly type: "error";
|
|
2762
|
+
readonly inputs: readonly [{
|
|
2763
|
+
readonly name: "operator";
|
|
2764
|
+
readonly internalType: "address";
|
|
2765
|
+
readonly type: "address";
|
|
2961
2766
|
}, {
|
|
2962
|
-
readonly
|
|
2963
|
-
readonly
|
|
2767
|
+
readonly name: "tokenId";
|
|
2768
|
+
readonly internalType: "uint256";
|
|
2769
|
+
readonly type: "uint256";
|
|
2770
|
+
}];
|
|
2771
|
+
readonly name: "ERC721InsufficientApproval";
|
|
2772
|
+
}, {
|
|
2773
|
+
readonly type: "error";
|
|
2774
|
+
readonly inputs: readonly [{
|
|
2775
|
+
readonly name: "approver";
|
|
2776
|
+
readonly internalType: "address";
|
|
2777
|
+
readonly type: "address";
|
|
2778
|
+
}];
|
|
2779
|
+
readonly name: "ERC721InvalidApprover";
|
|
2780
|
+
}, {
|
|
2781
|
+
readonly type: "error";
|
|
2782
|
+
readonly inputs: readonly [{
|
|
2783
|
+
readonly name: "operator";
|
|
2784
|
+
readonly internalType: "address";
|
|
2785
|
+
readonly type: "address";
|
|
2786
|
+
}];
|
|
2787
|
+
readonly name: "ERC721InvalidOperator";
|
|
2788
|
+
}, {
|
|
2789
|
+
readonly type: "error";
|
|
2790
|
+
readonly inputs: readonly [{
|
|
2791
|
+
readonly name: "owner";
|
|
2792
|
+
readonly internalType: "address";
|
|
2793
|
+
readonly type: "address";
|
|
2794
|
+
}];
|
|
2795
|
+
readonly name: "ERC721InvalidOwner";
|
|
2796
|
+
}, {
|
|
2797
|
+
readonly type: "error";
|
|
2798
|
+
readonly inputs: readonly [{
|
|
2799
|
+
readonly name: "receiver";
|
|
2800
|
+
readonly internalType: "address";
|
|
2801
|
+
readonly type: "address";
|
|
2802
|
+
}];
|
|
2803
|
+
readonly name: "ERC721InvalidReceiver";
|
|
2804
|
+
}, {
|
|
2805
|
+
readonly type: "error";
|
|
2806
|
+
readonly inputs: readonly [{
|
|
2807
|
+
readonly name: "sender";
|
|
2808
|
+
readonly internalType: "address";
|
|
2809
|
+
readonly type: "address";
|
|
2810
|
+
}];
|
|
2811
|
+
readonly name: "ERC721InvalidSender";
|
|
2812
|
+
}, {
|
|
2813
|
+
readonly type: "error";
|
|
2814
|
+
readonly inputs: readonly [{
|
|
2815
|
+
readonly name: "tokenId";
|
|
2816
|
+
readonly internalType: "uint256";
|
|
2817
|
+
readonly type: "uint256";
|
|
2818
|
+
}];
|
|
2819
|
+
readonly name: "ERC721NonexistentToken";
|
|
2820
|
+
}, {
|
|
2821
|
+
readonly type: "error";
|
|
2822
|
+
readonly inputs: readonly [{
|
|
2823
|
+
readonly name: "owner";
|
|
2824
|
+
readonly internalType: "address";
|
|
2825
|
+
readonly type: "address";
|
|
2826
|
+
}];
|
|
2827
|
+
readonly name: "OwnableInvalidOwner";
|
|
2828
|
+
}, {
|
|
2829
|
+
readonly type: "error";
|
|
2830
|
+
readonly inputs: readonly [{
|
|
2831
|
+
readonly name: "account";
|
|
2832
|
+
readonly internalType: "address";
|
|
2833
|
+
readonly type: "address";
|
|
2834
|
+
}];
|
|
2835
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
2836
|
+
}];
|
|
2837
|
+
export declare const testNftAddress: "0xBa46623aD94AB45850c4ecbA9555D26328917c3B";
|
|
2838
|
+
export declare const testNftConfig: {
|
|
2839
|
+
readonly address: "0xBa46623aD94AB45850c4ecbA9555D26328917c3B";
|
|
2840
|
+
readonly abi: readonly [{
|
|
2841
|
+
readonly type: "constructor";
|
|
2964
2842
|
readonly inputs: readonly [{
|
|
2965
|
-
readonly name: "
|
|
2966
|
-
readonly internalType: "address";
|
|
2967
|
-
readonly type: "address";
|
|
2968
|
-
readonly indexed: true;
|
|
2969
|
-
}, {
|
|
2970
|
-
readonly name: "to";
|
|
2843
|
+
readonly name: "initialOwner";
|
|
2971
2844
|
readonly internalType: "address";
|
|
2972
2845
|
readonly type: "address";
|
|
2973
|
-
readonly indexed: true;
|
|
2974
|
-
}, {
|
|
2975
|
-
readonly name: "tokenId";
|
|
2976
|
-
readonly internalType: "uint256";
|
|
2977
|
-
readonly type: "uint256";
|
|
2978
|
-
readonly indexed: true;
|
|
2979
2846
|
}];
|
|
2980
|
-
readonly
|
|
2847
|
+
readonly stateMutability: "nonpayable";
|
|
2981
2848
|
}, {
|
|
2982
2849
|
readonly type: "function";
|
|
2983
2850
|
readonly inputs: readonly [{
|
|
@@ -3216,301 +3083,254 @@ export declare const testNftConfig: {
|
|
|
3216
3083
|
readonly name: "transferOwnership";
|
|
3217
3084
|
readonly outputs: readonly [];
|
|
3218
3085
|
readonly stateMutability: "nonpayable";
|
|
3219
|
-
}];
|
|
3220
|
-
};
|
|
3221
|
-
export declare const testTokenAbi: readonly [{
|
|
3222
|
-
readonly type: "constructor";
|
|
3223
|
-
readonly inputs: readonly [{
|
|
3224
|
-
readonly name: "initialAuthority";
|
|
3225
|
-
readonly internalType: "address";
|
|
3226
|
-
readonly type: "address";
|
|
3227
|
-
}];
|
|
3228
|
-
readonly stateMutability: "nonpayable";
|
|
3229
|
-
}, {
|
|
3230
|
-
readonly type: "error";
|
|
3231
|
-
readonly inputs: readonly [{
|
|
3232
|
-
readonly name: "authority";
|
|
3233
|
-
readonly internalType: "address";
|
|
3234
|
-
readonly type: "address";
|
|
3235
|
-
}];
|
|
3236
|
-
readonly name: "AccessManagedInvalidAuthority";
|
|
3237
|
-
}, {
|
|
3238
|
-
readonly type: "error";
|
|
3239
|
-
readonly inputs: readonly [{
|
|
3240
|
-
readonly name: "caller";
|
|
3241
|
-
readonly internalType: "address";
|
|
3242
|
-
readonly type: "address";
|
|
3243
3086
|
}, {
|
|
3244
|
-
readonly
|
|
3245
|
-
readonly
|
|
3246
|
-
readonly
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3087
|
+
readonly type: "event";
|
|
3088
|
+
readonly anonymous: false;
|
|
3089
|
+
readonly inputs: readonly [{
|
|
3090
|
+
readonly name: "owner";
|
|
3091
|
+
readonly internalType: "address";
|
|
3092
|
+
readonly type: "address";
|
|
3093
|
+
readonly indexed: true;
|
|
3094
|
+
}, {
|
|
3095
|
+
readonly name: "approved";
|
|
3096
|
+
readonly internalType: "address";
|
|
3097
|
+
readonly type: "address";
|
|
3098
|
+
readonly indexed: true;
|
|
3099
|
+
}, {
|
|
3100
|
+
readonly name: "tokenId";
|
|
3101
|
+
readonly internalType: "uint256";
|
|
3102
|
+
readonly type: "uint256";
|
|
3103
|
+
readonly indexed: true;
|
|
3104
|
+
}];
|
|
3105
|
+
readonly name: "Approval";
|
|
3106
|
+
}, {
|
|
3107
|
+
readonly type: "event";
|
|
3108
|
+
readonly anonymous: false;
|
|
3109
|
+
readonly inputs: readonly [{
|
|
3110
|
+
readonly name: "owner";
|
|
3111
|
+
readonly internalType: "address";
|
|
3112
|
+
readonly type: "address";
|
|
3113
|
+
readonly indexed: true;
|
|
3114
|
+
}, {
|
|
3115
|
+
readonly name: "operator";
|
|
3116
|
+
readonly internalType: "address";
|
|
3117
|
+
readonly type: "address";
|
|
3118
|
+
readonly indexed: true;
|
|
3119
|
+
}, {
|
|
3120
|
+
readonly name: "approved";
|
|
3121
|
+
readonly internalType: "bool";
|
|
3122
|
+
readonly type: "bool";
|
|
3123
|
+
readonly indexed: false;
|
|
3124
|
+
}];
|
|
3125
|
+
readonly name: "ApprovalForAll";
|
|
3126
|
+
}, {
|
|
3127
|
+
readonly type: "event";
|
|
3128
|
+
readonly anonymous: false;
|
|
3129
|
+
readonly inputs: readonly [{
|
|
3130
|
+
readonly name: "_fromTokenId";
|
|
3131
|
+
readonly internalType: "uint256";
|
|
3132
|
+
readonly type: "uint256";
|
|
3133
|
+
readonly indexed: false;
|
|
3134
|
+
}, {
|
|
3135
|
+
readonly name: "_toTokenId";
|
|
3136
|
+
readonly internalType: "uint256";
|
|
3137
|
+
readonly type: "uint256";
|
|
3138
|
+
readonly indexed: false;
|
|
3139
|
+
}];
|
|
3140
|
+
readonly name: "BatchMetadataUpdate";
|
|
3141
|
+
}, {
|
|
3142
|
+
readonly type: "event";
|
|
3143
|
+
readonly anonymous: false;
|
|
3144
|
+
readonly inputs: readonly [{
|
|
3145
|
+
readonly name: "_tokenId";
|
|
3146
|
+
readonly internalType: "uint256";
|
|
3147
|
+
readonly type: "uint256";
|
|
3148
|
+
readonly indexed: false;
|
|
3149
|
+
}];
|
|
3150
|
+
readonly name: "MetadataUpdate";
|
|
3151
|
+
}, {
|
|
3152
|
+
readonly type: "event";
|
|
3153
|
+
readonly anonymous: false;
|
|
3154
|
+
readonly inputs: readonly [{
|
|
3155
|
+
readonly name: "previousOwner";
|
|
3156
|
+
readonly internalType: "address";
|
|
3157
|
+
readonly type: "address";
|
|
3158
|
+
readonly indexed: true;
|
|
3159
|
+
}, {
|
|
3160
|
+
readonly name: "newOwner";
|
|
3161
|
+
readonly internalType: "address";
|
|
3162
|
+
readonly type: "address";
|
|
3163
|
+
readonly indexed: true;
|
|
3164
|
+
}];
|
|
3165
|
+
readonly name: "OwnershipTransferred";
|
|
3166
|
+
}, {
|
|
3167
|
+
readonly type: "event";
|
|
3168
|
+
readonly anonymous: false;
|
|
3169
|
+
readonly inputs: readonly [{
|
|
3170
|
+
readonly name: "from";
|
|
3171
|
+
readonly internalType: "address";
|
|
3172
|
+
readonly type: "address";
|
|
3173
|
+
readonly indexed: true;
|
|
3174
|
+
}, {
|
|
3175
|
+
readonly name: "to";
|
|
3176
|
+
readonly internalType: "address";
|
|
3177
|
+
readonly type: "address";
|
|
3178
|
+
readonly indexed: true;
|
|
3179
|
+
}, {
|
|
3180
|
+
readonly name: "tokenId";
|
|
3181
|
+
readonly internalType: "uint256";
|
|
3182
|
+
readonly type: "uint256";
|
|
3183
|
+
readonly indexed: true;
|
|
3184
|
+
}];
|
|
3185
|
+
readonly name: "Transfer";
|
|
3186
|
+
}, {
|
|
3187
|
+
readonly type: "error";
|
|
3188
|
+
readonly inputs: readonly [{
|
|
3189
|
+
readonly name: "sender";
|
|
3190
|
+
readonly internalType: "address";
|
|
3191
|
+
readonly type: "address";
|
|
3192
|
+
}, {
|
|
3193
|
+
readonly name: "tokenId";
|
|
3194
|
+
readonly internalType: "uint256";
|
|
3195
|
+
readonly type: "uint256";
|
|
3196
|
+
}, {
|
|
3197
|
+
readonly name: "owner";
|
|
3198
|
+
readonly internalType: "address";
|
|
3199
|
+
readonly type: "address";
|
|
3200
|
+
}];
|
|
3201
|
+
readonly name: "ERC721IncorrectOwner";
|
|
3202
|
+
}, {
|
|
3203
|
+
readonly type: "error";
|
|
3204
|
+
readonly inputs: readonly [{
|
|
3205
|
+
readonly name: "operator";
|
|
3206
|
+
readonly internalType: "address";
|
|
3207
|
+
readonly type: "address";
|
|
3208
|
+
}, {
|
|
3209
|
+
readonly name: "tokenId";
|
|
3210
|
+
readonly internalType: "uint256";
|
|
3211
|
+
readonly type: "uint256";
|
|
3212
|
+
}];
|
|
3213
|
+
readonly name: "ERC721InsufficientApproval";
|
|
3214
|
+
}, {
|
|
3215
|
+
readonly type: "error";
|
|
3216
|
+
readonly inputs: readonly [{
|
|
3217
|
+
readonly name: "approver";
|
|
3218
|
+
readonly internalType: "address";
|
|
3219
|
+
readonly type: "address";
|
|
3220
|
+
}];
|
|
3221
|
+
readonly name: "ERC721InvalidApprover";
|
|
3222
|
+
}, {
|
|
3223
|
+
readonly type: "error";
|
|
3224
|
+
readonly inputs: readonly [{
|
|
3225
|
+
readonly name: "operator";
|
|
3226
|
+
readonly internalType: "address";
|
|
3227
|
+
readonly type: "address";
|
|
3228
|
+
}];
|
|
3229
|
+
readonly name: "ERC721InvalidOperator";
|
|
3230
|
+
}, {
|
|
3231
|
+
readonly type: "error";
|
|
3232
|
+
readonly inputs: readonly [{
|
|
3233
|
+
readonly name: "owner";
|
|
3234
|
+
readonly internalType: "address";
|
|
3235
|
+
readonly type: "address";
|
|
3236
|
+
}];
|
|
3237
|
+
readonly name: "ERC721InvalidOwner";
|
|
3238
|
+
}, {
|
|
3239
|
+
readonly type: "error";
|
|
3240
|
+
readonly inputs: readonly [{
|
|
3241
|
+
readonly name: "receiver";
|
|
3242
|
+
readonly internalType: "address";
|
|
3243
|
+
readonly type: "address";
|
|
3244
|
+
}];
|
|
3245
|
+
readonly name: "ERC721InvalidReceiver";
|
|
3246
|
+
}, {
|
|
3247
|
+
readonly type: "error";
|
|
3248
|
+
readonly inputs: readonly [{
|
|
3249
|
+
readonly name: "sender";
|
|
3250
|
+
readonly internalType: "address";
|
|
3251
|
+
readonly type: "address";
|
|
3252
|
+
}];
|
|
3253
|
+
readonly name: "ERC721InvalidSender";
|
|
3254
|
+
}, {
|
|
3255
|
+
readonly type: "error";
|
|
3256
|
+
readonly inputs: readonly [{
|
|
3257
|
+
readonly name: "tokenId";
|
|
3258
|
+
readonly internalType: "uint256";
|
|
3259
|
+
readonly type: "uint256";
|
|
3260
|
+
}];
|
|
3261
|
+
readonly name: "ERC721NonexistentToken";
|
|
3262
|
+
}, {
|
|
3263
|
+
readonly type: "error";
|
|
3264
|
+
readonly inputs: readonly [{
|
|
3265
|
+
readonly name: "owner";
|
|
3266
|
+
readonly internalType: "address";
|
|
3267
|
+
readonly type: "address";
|
|
3268
|
+
}];
|
|
3269
|
+
readonly name: "OwnableInvalidOwner";
|
|
3270
|
+
}, {
|
|
3271
|
+
readonly type: "error";
|
|
3272
|
+
readonly inputs: readonly [{
|
|
3273
|
+
readonly name: "account";
|
|
3274
|
+
readonly internalType: "address";
|
|
3275
|
+
readonly type: "address";
|
|
3276
|
+
}];
|
|
3277
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
3278
|
+
}];
|
|
3279
|
+
};
|
|
3280
|
+
export declare const testTokenAbi: readonly [{
|
|
3281
|
+
readonly type: "constructor";
|
|
3282
|
+
readonly inputs: readonly [{
|
|
3283
|
+
readonly name: "initialAuthority";
|
|
3253
3284
|
readonly internalType: "address";
|
|
3254
3285
|
readonly type: "address";
|
|
3255
3286
|
}];
|
|
3256
|
-
readonly
|
|
3287
|
+
readonly stateMutability: "nonpayable";
|
|
3257
3288
|
}, {
|
|
3258
|
-
readonly type: "
|
|
3289
|
+
readonly type: "function";
|
|
3259
3290
|
readonly inputs: readonly [];
|
|
3260
|
-
readonly name: "
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
readonly inputs: readonly [{
|
|
3264
|
-
readonly name: "length";
|
|
3265
|
-
readonly internalType: "uint256";
|
|
3266
|
-
readonly type: "uint256";
|
|
3267
|
-
}];
|
|
3268
|
-
readonly name: "ECDSAInvalidSignatureLength";
|
|
3269
|
-
}, {
|
|
3270
|
-
readonly type: "error";
|
|
3271
|
-
readonly inputs: readonly [{
|
|
3272
|
-
readonly name: "s";
|
|
3291
|
+
readonly name: "DOMAIN_SEPARATOR";
|
|
3292
|
+
readonly outputs: readonly [{
|
|
3293
|
+
readonly name: "";
|
|
3273
3294
|
readonly internalType: "bytes32";
|
|
3274
3295
|
readonly type: "bytes32";
|
|
3275
3296
|
}];
|
|
3276
|
-
readonly
|
|
3297
|
+
readonly stateMutability: "view";
|
|
3277
3298
|
}, {
|
|
3278
|
-
readonly type: "
|
|
3299
|
+
readonly type: "function";
|
|
3279
3300
|
readonly inputs: readonly [{
|
|
3280
|
-
readonly name: "
|
|
3301
|
+
readonly name: "owner";
|
|
3281
3302
|
readonly internalType: "address";
|
|
3282
3303
|
readonly type: "address";
|
|
3283
3304
|
}, {
|
|
3284
|
-
readonly name: "
|
|
3285
|
-
readonly internalType: "
|
|
3286
|
-
readonly type: "
|
|
3287
|
-
}
|
|
3288
|
-
|
|
3305
|
+
readonly name: "spender";
|
|
3306
|
+
readonly internalType: "address";
|
|
3307
|
+
readonly type: "address";
|
|
3308
|
+
}];
|
|
3309
|
+
readonly name: "allowance";
|
|
3310
|
+
readonly outputs: readonly [{
|
|
3311
|
+
readonly name: "";
|
|
3289
3312
|
readonly internalType: "uint256";
|
|
3290
3313
|
readonly type: "uint256";
|
|
3291
3314
|
}];
|
|
3292
|
-
readonly
|
|
3315
|
+
readonly stateMutability: "view";
|
|
3293
3316
|
}, {
|
|
3294
|
-
readonly type: "
|
|
3317
|
+
readonly type: "function";
|
|
3295
3318
|
readonly inputs: readonly [{
|
|
3296
|
-
readonly name: "
|
|
3319
|
+
readonly name: "spender";
|
|
3297
3320
|
readonly internalType: "address";
|
|
3298
3321
|
readonly type: "address";
|
|
3299
3322
|
}, {
|
|
3300
|
-
readonly name: "
|
|
3301
|
-
readonly internalType: "uint256";
|
|
3302
|
-
readonly type: "uint256";
|
|
3303
|
-
}, {
|
|
3304
|
-
readonly name: "needed";
|
|
3323
|
+
readonly name: "value";
|
|
3305
3324
|
readonly internalType: "uint256";
|
|
3306
3325
|
readonly type: "uint256";
|
|
3307
3326
|
}];
|
|
3308
|
-
readonly name: "
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
readonly
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
}];
|
|
3316
|
-
readonly name: "ERC20InvalidApprover";
|
|
3317
|
-
}, {
|
|
3318
|
-
readonly type: "error";
|
|
3319
|
-
readonly inputs: readonly [{
|
|
3320
|
-
readonly name: "receiver";
|
|
3321
|
-
readonly internalType: "address";
|
|
3322
|
-
readonly type: "address";
|
|
3323
|
-
}];
|
|
3324
|
-
readonly name: "ERC20InvalidReceiver";
|
|
3325
|
-
}, {
|
|
3326
|
-
readonly type: "error";
|
|
3327
|
-
readonly inputs: readonly [{
|
|
3328
|
-
readonly name: "sender";
|
|
3329
|
-
readonly internalType: "address";
|
|
3330
|
-
readonly type: "address";
|
|
3331
|
-
}];
|
|
3332
|
-
readonly name: "ERC20InvalidSender";
|
|
3333
|
-
}, {
|
|
3334
|
-
readonly type: "error";
|
|
3335
|
-
readonly inputs: readonly [{
|
|
3336
|
-
readonly name: "spender";
|
|
3337
|
-
readonly internalType: "address";
|
|
3338
|
-
readonly type: "address";
|
|
3339
|
-
}];
|
|
3340
|
-
readonly name: "ERC20InvalidSpender";
|
|
3341
|
-
}, {
|
|
3342
|
-
readonly type: "error";
|
|
3343
|
-
readonly inputs: readonly [{
|
|
3344
|
-
readonly name: "deadline";
|
|
3345
|
-
readonly internalType: "uint256";
|
|
3346
|
-
readonly type: "uint256";
|
|
3347
|
-
}];
|
|
3348
|
-
readonly name: "ERC2612ExpiredSignature";
|
|
3349
|
-
}, {
|
|
3350
|
-
readonly type: "error";
|
|
3351
|
-
readonly inputs: readonly [{
|
|
3352
|
-
readonly name: "signer";
|
|
3353
|
-
readonly internalType: "address";
|
|
3354
|
-
readonly type: "address";
|
|
3355
|
-
}, {
|
|
3356
|
-
readonly name: "owner";
|
|
3357
|
-
readonly internalType: "address";
|
|
3358
|
-
readonly type: "address";
|
|
3359
|
-
}];
|
|
3360
|
-
readonly name: "ERC2612InvalidSigner";
|
|
3361
|
-
}, {
|
|
3362
|
-
readonly type: "error";
|
|
3363
|
-
readonly inputs: readonly [];
|
|
3364
|
-
readonly name: "EnforcedPause";
|
|
3365
|
-
}, {
|
|
3366
|
-
readonly type: "error";
|
|
3367
|
-
readonly inputs: readonly [];
|
|
3368
|
-
readonly name: "ExpectedPause";
|
|
3369
|
-
}, {
|
|
3370
|
-
readonly type: "error";
|
|
3371
|
-
readonly inputs: readonly [{
|
|
3372
|
-
readonly name: "account";
|
|
3373
|
-
readonly internalType: "address";
|
|
3374
|
-
readonly type: "address";
|
|
3375
|
-
}, {
|
|
3376
|
-
readonly name: "currentNonce";
|
|
3377
|
-
readonly internalType: "uint256";
|
|
3378
|
-
readonly type: "uint256";
|
|
3379
|
-
}];
|
|
3380
|
-
readonly name: "InvalidAccountNonce";
|
|
3381
|
-
}, {
|
|
3382
|
-
readonly type: "error";
|
|
3383
|
-
readonly inputs: readonly [];
|
|
3384
|
-
readonly name: "InvalidShortString";
|
|
3385
|
-
}, {
|
|
3386
|
-
readonly type: "error";
|
|
3387
|
-
readonly inputs: readonly [{
|
|
3388
|
-
readonly name: "str";
|
|
3389
|
-
readonly internalType: "string";
|
|
3390
|
-
readonly type: "string";
|
|
3391
|
-
}];
|
|
3392
|
-
readonly name: "StringTooLong";
|
|
3393
|
-
}, {
|
|
3394
|
-
readonly type: "event";
|
|
3395
|
-
readonly anonymous: false;
|
|
3396
|
-
readonly inputs: readonly [{
|
|
3397
|
-
readonly name: "owner";
|
|
3398
|
-
readonly internalType: "address";
|
|
3399
|
-
readonly type: "address";
|
|
3400
|
-
readonly indexed: true;
|
|
3401
|
-
}, {
|
|
3402
|
-
readonly name: "spender";
|
|
3403
|
-
readonly internalType: "address";
|
|
3404
|
-
readonly type: "address";
|
|
3405
|
-
readonly indexed: true;
|
|
3406
|
-
}, {
|
|
3407
|
-
readonly name: "value";
|
|
3408
|
-
readonly internalType: "uint256";
|
|
3409
|
-
readonly type: "uint256";
|
|
3410
|
-
readonly indexed: false;
|
|
3411
|
-
}];
|
|
3412
|
-
readonly name: "Approval";
|
|
3413
|
-
}, {
|
|
3414
|
-
readonly type: "event";
|
|
3415
|
-
readonly anonymous: false;
|
|
3416
|
-
readonly inputs: readonly [{
|
|
3417
|
-
readonly name: "authority";
|
|
3418
|
-
readonly internalType: "address";
|
|
3419
|
-
readonly type: "address";
|
|
3420
|
-
readonly indexed: false;
|
|
3421
|
-
}];
|
|
3422
|
-
readonly name: "AuthorityUpdated";
|
|
3423
|
-
}, {
|
|
3424
|
-
readonly type: "event";
|
|
3425
|
-
readonly anonymous: false;
|
|
3426
|
-
readonly inputs: readonly [];
|
|
3427
|
-
readonly name: "EIP712DomainChanged";
|
|
3428
|
-
}, {
|
|
3429
|
-
readonly type: "event";
|
|
3430
|
-
readonly anonymous: false;
|
|
3431
|
-
readonly inputs: readonly [{
|
|
3432
|
-
readonly name: "account";
|
|
3433
|
-
readonly internalType: "address";
|
|
3434
|
-
readonly type: "address";
|
|
3435
|
-
readonly indexed: false;
|
|
3436
|
-
}];
|
|
3437
|
-
readonly name: "Paused";
|
|
3438
|
-
}, {
|
|
3439
|
-
readonly type: "event";
|
|
3440
|
-
readonly anonymous: false;
|
|
3441
|
-
readonly inputs: readonly [{
|
|
3442
|
-
readonly name: "from";
|
|
3443
|
-
readonly internalType: "address";
|
|
3444
|
-
readonly type: "address";
|
|
3445
|
-
readonly indexed: true;
|
|
3446
|
-
}, {
|
|
3447
|
-
readonly name: "to";
|
|
3448
|
-
readonly internalType: "address";
|
|
3449
|
-
readonly type: "address";
|
|
3450
|
-
readonly indexed: true;
|
|
3451
|
-
}, {
|
|
3452
|
-
readonly name: "value";
|
|
3453
|
-
readonly internalType: "uint256";
|
|
3454
|
-
readonly type: "uint256";
|
|
3455
|
-
readonly indexed: false;
|
|
3456
|
-
}];
|
|
3457
|
-
readonly name: "Transfer";
|
|
3458
|
-
}, {
|
|
3459
|
-
readonly type: "event";
|
|
3460
|
-
readonly anonymous: false;
|
|
3461
|
-
readonly inputs: readonly [{
|
|
3462
|
-
readonly name: "account";
|
|
3463
|
-
readonly internalType: "address";
|
|
3464
|
-
readonly type: "address";
|
|
3465
|
-
readonly indexed: false;
|
|
3466
|
-
}];
|
|
3467
|
-
readonly name: "Unpaused";
|
|
3468
|
-
}, {
|
|
3469
|
-
readonly type: "function";
|
|
3470
|
-
readonly inputs: readonly [];
|
|
3471
|
-
readonly name: "DOMAIN_SEPARATOR";
|
|
3472
|
-
readonly outputs: readonly [{
|
|
3473
|
-
readonly name: "";
|
|
3474
|
-
readonly internalType: "bytes32";
|
|
3475
|
-
readonly type: "bytes32";
|
|
3476
|
-
}];
|
|
3477
|
-
readonly stateMutability: "view";
|
|
3478
|
-
}, {
|
|
3479
|
-
readonly type: "function";
|
|
3480
|
-
readonly inputs: readonly [{
|
|
3481
|
-
readonly name: "owner";
|
|
3482
|
-
readonly internalType: "address";
|
|
3483
|
-
readonly type: "address";
|
|
3484
|
-
}, {
|
|
3485
|
-
readonly name: "spender";
|
|
3486
|
-
readonly internalType: "address";
|
|
3487
|
-
readonly type: "address";
|
|
3488
|
-
}];
|
|
3489
|
-
readonly name: "allowance";
|
|
3490
|
-
readonly outputs: readonly [{
|
|
3491
|
-
readonly name: "";
|
|
3492
|
-
readonly internalType: "uint256";
|
|
3493
|
-
readonly type: "uint256";
|
|
3494
|
-
}];
|
|
3495
|
-
readonly stateMutability: "view";
|
|
3496
|
-
}, {
|
|
3497
|
-
readonly type: "function";
|
|
3498
|
-
readonly inputs: readonly [{
|
|
3499
|
-
readonly name: "spender";
|
|
3500
|
-
readonly internalType: "address";
|
|
3501
|
-
readonly type: "address";
|
|
3502
|
-
}, {
|
|
3503
|
-
readonly name: "value";
|
|
3504
|
-
readonly internalType: "uint256";
|
|
3505
|
-
readonly type: "uint256";
|
|
3506
|
-
}];
|
|
3507
|
-
readonly name: "approve";
|
|
3508
|
-
readonly outputs: readonly [{
|
|
3509
|
-
readonly name: "";
|
|
3510
|
-
readonly internalType: "bool";
|
|
3511
|
-
readonly type: "bool";
|
|
3512
|
-
}];
|
|
3513
|
-
readonly stateMutability: "nonpayable";
|
|
3327
|
+
readonly name: "approve";
|
|
3328
|
+
readonly outputs: readonly [{
|
|
3329
|
+
readonly name: "";
|
|
3330
|
+
readonly internalType: "bool";
|
|
3331
|
+
readonly type: "bool";
|
|
3332
|
+
}];
|
|
3333
|
+
readonly stateMutability: "nonpayable";
|
|
3514
3334
|
}, {
|
|
3515
3335
|
readonly type: "function";
|
|
3516
3336
|
readonly inputs: readonly [];
|
|
@@ -3763,257 +3583,257 @@ export declare const testTokenAbi: readonly [{
|
|
|
3763
3583
|
readonly name: "unpause";
|
|
3764
3584
|
readonly outputs: readonly [];
|
|
3765
3585
|
readonly stateMutability: "nonpayable";
|
|
3766
|
-
}
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
readonly
|
|
3770
|
-
|
|
3771
|
-
readonly
|
|
3772
|
-
readonly
|
|
3773
|
-
|
|
3774
|
-
readonly internalType: "address";
|
|
3775
|
-
readonly type: "address";
|
|
3776
|
-
}];
|
|
3777
|
-
readonly stateMutability: "nonpayable";
|
|
3778
|
-
}, {
|
|
3779
|
-
readonly type: "error";
|
|
3780
|
-
readonly inputs: readonly [{
|
|
3781
|
-
readonly name: "authority";
|
|
3782
|
-
readonly internalType: "address";
|
|
3783
|
-
readonly type: "address";
|
|
3784
|
-
}];
|
|
3785
|
-
readonly name: "AccessManagedInvalidAuthority";
|
|
3786
|
-
}, {
|
|
3787
|
-
readonly type: "error";
|
|
3788
|
-
readonly inputs: readonly [{
|
|
3789
|
-
readonly name: "caller";
|
|
3790
|
-
readonly internalType: "address";
|
|
3791
|
-
readonly type: "address";
|
|
3792
|
-
}, {
|
|
3793
|
-
readonly name: "delay";
|
|
3794
|
-
readonly internalType: "uint32";
|
|
3795
|
-
readonly type: "uint32";
|
|
3796
|
-
}];
|
|
3797
|
-
readonly name: "AccessManagedRequiredDelay";
|
|
3586
|
+
}, {
|
|
3587
|
+
readonly type: "event";
|
|
3588
|
+
readonly anonymous: false;
|
|
3589
|
+
readonly inputs: readonly [{
|
|
3590
|
+
readonly name: "owner";
|
|
3591
|
+
readonly internalType: "address";
|
|
3592
|
+
readonly type: "address";
|
|
3593
|
+
readonly indexed: true;
|
|
3798
3594
|
}, {
|
|
3799
|
-
readonly
|
|
3800
|
-
readonly
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
readonly type: "address";
|
|
3804
|
-
}];
|
|
3805
|
-
readonly name: "AccessManagedUnauthorized";
|
|
3595
|
+
readonly name: "spender";
|
|
3596
|
+
readonly internalType: "address";
|
|
3597
|
+
readonly type: "address";
|
|
3598
|
+
readonly indexed: true;
|
|
3806
3599
|
}, {
|
|
3807
|
-
readonly
|
|
3808
|
-
readonly
|
|
3809
|
-
readonly
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
readonly name: "
|
|
3818
|
-
|
|
3819
|
-
readonly type: "
|
|
3820
|
-
readonly
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
readonly
|
|
3844
|
-
readonly
|
|
3845
|
-
|
|
3846
|
-
readonly internalType: "address";
|
|
3847
|
-
readonly type: "address";
|
|
3848
|
-
}, {
|
|
3849
|
-
readonly name: "balance";
|
|
3850
|
-
readonly internalType: "uint256";
|
|
3851
|
-
readonly type: "uint256";
|
|
3852
|
-
}, {
|
|
3853
|
-
readonly name: "needed";
|
|
3854
|
-
readonly internalType: "uint256";
|
|
3855
|
-
readonly type: "uint256";
|
|
3856
|
-
}];
|
|
3857
|
-
readonly name: "ERC20InsufficientBalance";
|
|
3858
|
-
}, {
|
|
3859
|
-
readonly type: "error";
|
|
3860
|
-
readonly inputs: readonly [{
|
|
3861
|
-
readonly name: "approver";
|
|
3862
|
-
readonly internalType: "address";
|
|
3863
|
-
readonly type: "address";
|
|
3864
|
-
}];
|
|
3865
|
-
readonly name: "ERC20InvalidApprover";
|
|
3866
|
-
}, {
|
|
3867
|
-
readonly type: "error";
|
|
3868
|
-
readonly inputs: readonly [{
|
|
3869
|
-
readonly name: "receiver";
|
|
3870
|
-
readonly internalType: "address";
|
|
3871
|
-
readonly type: "address";
|
|
3872
|
-
}];
|
|
3873
|
-
readonly name: "ERC20InvalidReceiver";
|
|
3874
|
-
}, {
|
|
3875
|
-
readonly type: "error";
|
|
3876
|
-
readonly inputs: readonly [{
|
|
3877
|
-
readonly name: "sender";
|
|
3878
|
-
readonly internalType: "address";
|
|
3879
|
-
readonly type: "address";
|
|
3880
|
-
}];
|
|
3881
|
-
readonly name: "ERC20InvalidSender";
|
|
3882
|
-
}, {
|
|
3883
|
-
readonly type: "error";
|
|
3884
|
-
readonly inputs: readonly [{
|
|
3885
|
-
readonly name: "spender";
|
|
3886
|
-
readonly internalType: "address";
|
|
3887
|
-
readonly type: "address";
|
|
3888
|
-
}];
|
|
3889
|
-
readonly name: "ERC20InvalidSpender";
|
|
3890
|
-
}, {
|
|
3891
|
-
readonly type: "error";
|
|
3892
|
-
readonly inputs: readonly [{
|
|
3893
|
-
readonly name: "deadline";
|
|
3894
|
-
readonly internalType: "uint256";
|
|
3895
|
-
readonly type: "uint256";
|
|
3896
|
-
}];
|
|
3897
|
-
readonly name: "ERC2612ExpiredSignature";
|
|
3898
|
-
}, {
|
|
3899
|
-
readonly type: "error";
|
|
3900
|
-
readonly inputs: readonly [{
|
|
3901
|
-
readonly name: "signer";
|
|
3902
|
-
readonly internalType: "address";
|
|
3903
|
-
readonly type: "address";
|
|
3904
|
-
}, {
|
|
3905
|
-
readonly name: "owner";
|
|
3906
|
-
readonly internalType: "address";
|
|
3907
|
-
readonly type: "address";
|
|
3908
|
-
}];
|
|
3909
|
-
readonly name: "ERC2612InvalidSigner";
|
|
3910
|
-
}, {
|
|
3911
|
-
readonly type: "error";
|
|
3912
|
-
readonly inputs: readonly [];
|
|
3913
|
-
readonly name: "EnforcedPause";
|
|
3914
|
-
}, {
|
|
3915
|
-
readonly type: "error";
|
|
3916
|
-
readonly inputs: readonly [];
|
|
3917
|
-
readonly name: "ExpectedPause";
|
|
3600
|
+
readonly name: "value";
|
|
3601
|
+
readonly internalType: "uint256";
|
|
3602
|
+
readonly type: "uint256";
|
|
3603
|
+
readonly indexed: false;
|
|
3604
|
+
}];
|
|
3605
|
+
readonly name: "Approval";
|
|
3606
|
+
}, {
|
|
3607
|
+
readonly type: "event";
|
|
3608
|
+
readonly anonymous: false;
|
|
3609
|
+
readonly inputs: readonly [{
|
|
3610
|
+
readonly name: "authority";
|
|
3611
|
+
readonly internalType: "address";
|
|
3612
|
+
readonly type: "address";
|
|
3613
|
+
readonly indexed: false;
|
|
3614
|
+
}];
|
|
3615
|
+
readonly name: "AuthorityUpdated";
|
|
3616
|
+
}, {
|
|
3617
|
+
readonly type: "event";
|
|
3618
|
+
readonly anonymous: false;
|
|
3619
|
+
readonly inputs: readonly [];
|
|
3620
|
+
readonly name: "EIP712DomainChanged";
|
|
3621
|
+
}, {
|
|
3622
|
+
readonly type: "event";
|
|
3623
|
+
readonly anonymous: false;
|
|
3624
|
+
readonly inputs: readonly [{
|
|
3625
|
+
readonly name: "account";
|
|
3626
|
+
readonly internalType: "address";
|
|
3627
|
+
readonly type: "address";
|
|
3628
|
+
readonly indexed: false;
|
|
3629
|
+
}];
|
|
3630
|
+
readonly name: "Paused";
|
|
3631
|
+
}, {
|
|
3632
|
+
readonly type: "event";
|
|
3633
|
+
readonly anonymous: false;
|
|
3634
|
+
readonly inputs: readonly [{
|
|
3635
|
+
readonly name: "from";
|
|
3636
|
+
readonly internalType: "address";
|
|
3637
|
+
readonly type: "address";
|
|
3638
|
+
readonly indexed: true;
|
|
3918
3639
|
}, {
|
|
3919
|
-
readonly
|
|
3920
|
-
readonly
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
readonly type: "address";
|
|
3924
|
-
}, {
|
|
3925
|
-
readonly name: "currentNonce";
|
|
3926
|
-
readonly internalType: "uint256";
|
|
3927
|
-
readonly type: "uint256";
|
|
3928
|
-
}];
|
|
3929
|
-
readonly name: "InvalidAccountNonce";
|
|
3640
|
+
readonly name: "to";
|
|
3641
|
+
readonly internalType: "address";
|
|
3642
|
+
readonly type: "address";
|
|
3643
|
+
readonly indexed: true;
|
|
3930
3644
|
}, {
|
|
3931
|
-
readonly
|
|
3932
|
-
readonly
|
|
3933
|
-
readonly
|
|
3645
|
+
readonly name: "value";
|
|
3646
|
+
readonly internalType: "uint256";
|
|
3647
|
+
readonly type: "uint256";
|
|
3648
|
+
readonly indexed: false;
|
|
3649
|
+
}];
|
|
3650
|
+
readonly name: "Transfer";
|
|
3651
|
+
}, {
|
|
3652
|
+
readonly type: "event";
|
|
3653
|
+
readonly anonymous: false;
|
|
3654
|
+
readonly inputs: readonly [{
|
|
3655
|
+
readonly name: "account";
|
|
3656
|
+
readonly internalType: "address";
|
|
3657
|
+
readonly type: "address";
|
|
3658
|
+
readonly indexed: false;
|
|
3659
|
+
}];
|
|
3660
|
+
readonly name: "Unpaused";
|
|
3661
|
+
}, {
|
|
3662
|
+
readonly type: "error";
|
|
3663
|
+
readonly inputs: readonly [{
|
|
3664
|
+
readonly name: "authority";
|
|
3665
|
+
readonly internalType: "address";
|
|
3666
|
+
readonly type: "address";
|
|
3667
|
+
}];
|
|
3668
|
+
readonly name: "AccessManagedInvalidAuthority";
|
|
3669
|
+
}, {
|
|
3670
|
+
readonly type: "error";
|
|
3671
|
+
readonly inputs: readonly [{
|
|
3672
|
+
readonly name: "caller";
|
|
3673
|
+
readonly internalType: "address";
|
|
3674
|
+
readonly type: "address";
|
|
3934
3675
|
}, {
|
|
3935
|
-
readonly
|
|
3936
|
-
readonly
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3676
|
+
readonly name: "delay";
|
|
3677
|
+
readonly internalType: "uint32";
|
|
3678
|
+
readonly type: "uint32";
|
|
3679
|
+
}];
|
|
3680
|
+
readonly name: "AccessManagedRequiredDelay";
|
|
3681
|
+
}, {
|
|
3682
|
+
readonly type: "error";
|
|
3683
|
+
readonly inputs: readonly [{
|
|
3684
|
+
readonly name: "caller";
|
|
3685
|
+
readonly internalType: "address";
|
|
3686
|
+
readonly type: "address";
|
|
3687
|
+
}];
|
|
3688
|
+
readonly name: "AccessManagedUnauthorized";
|
|
3689
|
+
}, {
|
|
3690
|
+
readonly type: "error";
|
|
3691
|
+
readonly inputs: readonly [];
|
|
3692
|
+
readonly name: "ECDSAInvalidSignature";
|
|
3693
|
+
}, {
|
|
3694
|
+
readonly type: "error";
|
|
3695
|
+
readonly inputs: readonly [{
|
|
3696
|
+
readonly name: "length";
|
|
3697
|
+
readonly internalType: "uint256";
|
|
3698
|
+
readonly type: "uint256";
|
|
3699
|
+
}];
|
|
3700
|
+
readonly name: "ECDSAInvalidSignatureLength";
|
|
3701
|
+
}, {
|
|
3702
|
+
readonly type: "error";
|
|
3703
|
+
readonly inputs: readonly [{
|
|
3704
|
+
readonly name: "s";
|
|
3705
|
+
readonly internalType: "bytes32";
|
|
3706
|
+
readonly type: "bytes32";
|
|
3707
|
+
}];
|
|
3708
|
+
readonly name: "ECDSAInvalidSignatureS";
|
|
3709
|
+
}, {
|
|
3710
|
+
readonly type: "error";
|
|
3711
|
+
readonly inputs: readonly [{
|
|
3712
|
+
readonly name: "spender";
|
|
3713
|
+
readonly internalType: "address";
|
|
3714
|
+
readonly type: "address";
|
|
3942
3715
|
}, {
|
|
3943
|
-
readonly
|
|
3944
|
-
readonly
|
|
3945
|
-
readonly
|
|
3946
|
-
readonly name: "owner";
|
|
3947
|
-
readonly internalType: "address";
|
|
3948
|
-
readonly type: "address";
|
|
3949
|
-
readonly indexed: true;
|
|
3950
|
-
}, {
|
|
3951
|
-
readonly name: "spender";
|
|
3952
|
-
readonly internalType: "address";
|
|
3953
|
-
readonly type: "address";
|
|
3954
|
-
readonly indexed: true;
|
|
3955
|
-
}, {
|
|
3956
|
-
readonly name: "value";
|
|
3957
|
-
readonly internalType: "uint256";
|
|
3958
|
-
readonly type: "uint256";
|
|
3959
|
-
readonly indexed: false;
|
|
3960
|
-
}];
|
|
3961
|
-
readonly name: "Approval";
|
|
3716
|
+
readonly name: "allowance";
|
|
3717
|
+
readonly internalType: "uint256";
|
|
3718
|
+
readonly type: "uint256";
|
|
3962
3719
|
}, {
|
|
3963
|
-
readonly
|
|
3964
|
-
readonly
|
|
3965
|
-
readonly
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
readonly name: "
|
|
3720
|
+
readonly name: "needed";
|
|
3721
|
+
readonly internalType: "uint256";
|
|
3722
|
+
readonly type: "uint256";
|
|
3723
|
+
}];
|
|
3724
|
+
readonly name: "ERC20InsufficientAllowance";
|
|
3725
|
+
}, {
|
|
3726
|
+
readonly type: "error";
|
|
3727
|
+
readonly inputs: readonly [{
|
|
3728
|
+
readonly name: "sender";
|
|
3729
|
+
readonly internalType: "address";
|
|
3730
|
+
readonly type: "address";
|
|
3972
3731
|
}, {
|
|
3973
|
-
readonly
|
|
3974
|
-
readonly
|
|
3975
|
-
readonly
|
|
3976
|
-
readonly name: "EIP712DomainChanged";
|
|
3732
|
+
readonly name: "balance";
|
|
3733
|
+
readonly internalType: "uint256";
|
|
3734
|
+
readonly type: "uint256";
|
|
3977
3735
|
}, {
|
|
3978
|
-
readonly
|
|
3979
|
-
readonly
|
|
3980
|
-
readonly
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
readonly name: "
|
|
3736
|
+
readonly name: "needed";
|
|
3737
|
+
readonly internalType: "uint256";
|
|
3738
|
+
readonly type: "uint256";
|
|
3739
|
+
}];
|
|
3740
|
+
readonly name: "ERC20InsufficientBalance";
|
|
3741
|
+
}, {
|
|
3742
|
+
readonly type: "error";
|
|
3743
|
+
readonly inputs: readonly [{
|
|
3744
|
+
readonly name: "approver";
|
|
3745
|
+
readonly internalType: "address";
|
|
3746
|
+
readonly type: "address";
|
|
3747
|
+
}];
|
|
3748
|
+
readonly name: "ERC20InvalidApprover";
|
|
3749
|
+
}, {
|
|
3750
|
+
readonly type: "error";
|
|
3751
|
+
readonly inputs: readonly [{
|
|
3752
|
+
readonly name: "receiver";
|
|
3753
|
+
readonly internalType: "address";
|
|
3754
|
+
readonly type: "address";
|
|
3755
|
+
}];
|
|
3756
|
+
readonly name: "ERC20InvalidReceiver";
|
|
3757
|
+
}, {
|
|
3758
|
+
readonly type: "error";
|
|
3759
|
+
readonly inputs: readonly [{
|
|
3760
|
+
readonly name: "sender";
|
|
3761
|
+
readonly internalType: "address";
|
|
3762
|
+
readonly type: "address";
|
|
3763
|
+
}];
|
|
3764
|
+
readonly name: "ERC20InvalidSender";
|
|
3765
|
+
}, {
|
|
3766
|
+
readonly type: "error";
|
|
3767
|
+
readonly inputs: readonly [{
|
|
3768
|
+
readonly name: "spender";
|
|
3769
|
+
readonly internalType: "address";
|
|
3770
|
+
readonly type: "address";
|
|
3771
|
+
}];
|
|
3772
|
+
readonly name: "ERC20InvalidSpender";
|
|
3773
|
+
}, {
|
|
3774
|
+
readonly type: "error";
|
|
3775
|
+
readonly inputs: readonly [{
|
|
3776
|
+
readonly name: "deadline";
|
|
3777
|
+
readonly internalType: "uint256";
|
|
3778
|
+
readonly type: "uint256";
|
|
3779
|
+
}];
|
|
3780
|
+
readonly name: "ERC2612ExpiredSignature";
|
|
3781
|
+
}, {
|
|
3782
|
+
readonly type: "error";
|
|
3783
|
+
readonly inputs: readonly [{
|
|
3784
|
+
readonly name: "signer";
|
|
3785
|
+
readonly internalType: "address";
|
|
3786
|
+
readonly type: "address";
|
|
3987
3787
|
}, {
|
|
3988
|
-
readonly
|
|
3989
|
-
readonly
|
|
3990
|
-
readonly
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
readonly
|
|
3788
|
+
readonly name: "owner";
|
|
3789
|
+
readonly internalType: "address";
|
|
3790
|
+
readonly type: "address";
|
|
3791
|
+
}];
|
|
3792
|
+
readonly name: "ERC2612InvalidSigner";
|
|
3793
|
+
}, {
|
|
3794
|
+
readonly type: "error";
|
|
3795
|
+
readonly inputs: readonly [];
|
|
3796
|
+
readonly name: "EnforcedPause";
|
|
3797
|
+
}, {
|
|
3798
|
+
readonly type: "error";
|
|
3799
|
+
readonly inputs: readonly [];
|
|
3800
|
+
readonly name: "ExpectedPause";
|
|
3801
|
+
}, {
|
|
3802
|
+
readonly type: "error";
|
|
3803
|
+
readonly inputs: readonly [{
|
|
3804
|
+
readonly name: "account";
|
|
3805
|
+
readonly internalType: "address";
|
|
3806
|
+
readonly type: "address";
|
|
4007
3807
|
}, {
|
|
4008
|
-
readonly
|
|
4009
|
-
readonly
|
|
3808
|
+
readonly name: "currentNonce";
|
|
3809
|
+
readonly internalType: "uint256";
|
|
3810
|
+
readonly type: "uint256";
|
|
3811
|
+
}];
|
|
3812
|
+
readonly name: "InvalidAccountNonce";
|
|
3813
|
+
}, {
|
|
3814
|
+
readonly type: "error";
|
|
3815
|
+
readonly inputs: readonly [];
|
|
3816
|
+
readonly name: "InvalidShortString";
|
|
3817
|
+
}, {
|
|
3818
|
+
readonly type: "error";
|
|
3819
|
+
readonly inputs: readonly [{
|
|
3820
|
+
readonly name: "str";
|
|
3821
|
+
readonly internalType: "string";
|
|
3822
|
+
readonly type: "string";
|
|
3823
|
+
}];
|
|
3824
|
+
readonly name: "StringTooLong";
|
|
3825
|
+
}];
|
|
3826
|
+
export declare const testTokenAddress: "0xFBdB734EF6a23aD76863CbA6f10d0C5CBBD8342C";
|
|
3827
|
+
export declare const testTokenConfig: {
|
|
3828
|
+
readonly address: "0xFBdB734EF6a23aD76863CbA6f10d0C5CBBD8342C";
|
|
3829
|
+
readonly abi: readonly [{
|
|
3830
|
+
readonly type: "constructor";
|
|
4010
3831
|
readonly inputs: readonly [{
|
|
4011
|
-
readonly name: "
|
|
3832
|
+
readonly name: "initialAuthority";
|
|
4012
3833
|
readonly internalType: "address";
|
|
4013
3834
|
readonly type: "address";
|
|
4014
|
-
readonly indexed: false;
|
|
4015
3835
|
}];
|
|
4016
|
-
readonly
|
|
3836
|
+
readonly stateMutability: "nonpayable";
|
|
4017
3837
|
}, {
|
|
4018
3838
|
readonly type: "function";
|
|
4019
3839
|
readonly inputs: readonly [];
|
|
@@ -4312,6 +4132,245 @@ export declare const testTokenConfig: {
|
|
|
4312
4132
|
readonly name: "unpause";
|
|
4313
4133
|
readonly outputs: readonly [];
|
|
4314
4134
|
readonly stateMutability: "nonpayable";
|
|
4135
|
+
}, {
|
|
4136
|
+
readonly type: "event";
|
|
4137
|
+
readonly anonymous: false;
|
|
4138
|
+
readonly inputs: readonly [{
|
|
4139
|
+
readonly name: "owner";
|
|
4140
|
+
readonly internalType: "address";
|
|
4141
|
+
readonly type: "address";
|
|
4142
|
+
readonly indexed: true;
|
|
4143
|
+
}, {
|
|
4144
|
+
readonly name: "spender";
|
|
4145
|
+
readonly internalType: "address";
|
|
4146
|
+
readonly type: "address";
|
|
4147
|
+
readonly indexed: true;
|
|
4148
|
+
}, {
|
|
4149
|
+
readonly name: "value";
|
|
4150
|
+
readonly internalType: "uint256";
|
|
4151
|
+
readonly type: "uint256";
|
|
4152
|
+
readonly indexed: false;
|
|
4153
|
+
}];
|
|
4154
|
+
readonly name: "Approval";
|
|
4155
|
+
}, {
|
|
4156
|
+
readonly type: "event";
|
|
4157
|
+
readonly anonymous: false;
|
|
4158
|
+
readonly inputs: readonly [{
|
|
4159
|
+
readonly name: "authority";
|
|
4160
|
+
readonly internalType: "address";
|
|
4161
|
+
readonly type: "address";
|
|
4162
|
+
readonly indexed: false;
|
|
4163
|
+
}];
|
|
4164
|
+
readonly name: "AuthorityUpdated";
|
|
4165
|
+
}, {
|
|
4166
|
+
readonly type: "event";
|
|
4167
|
+
readonly anonymous: false;
|
|
4168
|
+
readonly inputs: readonly [];
|
|
4169
|
+
readonly name: "EIP712DomainChanged";
|
|
4170
|
+
}, {
|
|
4171
|
+
readonly type: "event";
|
|
4172
|
+
readonly anonymous: false;
|
|
4173
|
+
readonly inputs: readonly [{
|
|
4174
|
+
readonly name: "account";
|
|
4175
|
+
readonly internalType: "address";
|
|
4176
|
+
readonly type: "address";
|
|
4177
|
+
readonly indexed: false;
|
|
4178
|
+
}];
|
|
4179
|
+
readonly name: "Paused";
|
|
4180
|
+
}, {
|
|
4181
|
+
readonly type: "event";
|
|
4182
|
+
readonly anonymous: false;
|
|
4183
|
+
readonly inputs: readonly [{
|
|
4184
|
+
readonly name: "from";
|
|
4185
|
+
readonly internalType: "address";
|
|
4186
|
+
readonly type: "address";
|
|
4187
|
+
readonly indexed: true;
|
|
4188
|
+
}, {
|
|
4189
|
+
readonly name: "to";
|
|
4190
|
+
readonly internalType: "address";
|
|
4191
|
+
readonly type: "address";
|
|
4192
|
+
readonly indexed: true;
|
|
4193
|
+
}, {
|
|
4194
|
+
readonly name: "value";
|
|
4195
|
+
readonly internalType: "uint256";
|
|
4196
|
+
readonly type: "uint256";
|
|
4197
|
+
readonly indexed: false;
|
|
4198
|
+
}];
|
|
4199
|
+
readonly name: "Transfer";
|
|
4200
|
+
}, {
|
|
4201
|
+
readonly type: "event";
|
|
4202
|
+
readonly anonymous: false;
|
|
4203
|
+
readonly inputs: readonly [{
|
|
4204
|
+
readonly name: "account";
|
|
4205
|
+
readonly internalType: "address";
|
|
4206
|
+
readonly type: "address";
|
|
4207
|
+
readonly indexed: false;
|
|
4208
|
+
}];
|
|
4209
|
+
readonly name: "Unpaused";
|
|
4210
|
+
}, {
|
|
4211
|
+
readonly type: "error";
|
|
4212
|
+
readonly inputs: readonly [{
|
|
4213
|
+
readonly name: "authority";
|
|
4214
|
+
readonly internalType: "address";
|
|
4215
|
+
readonly type: "address";
|
|
4216
|
+
}];
|
|
4217
|
+
readonly name: "AccessManagedInvalidAuthority";
|
|
4218
|
+
}, {
|
|
4219
|
+
readonly type: "error";
|
|
4220
|
+
readonly inputs: readonly [{
|
|
4221
|
+
readonly name: "caller";
|
|
4222
|
+
readonly internalType: "address";
|
|
4223
|
+
readonly type: "address";
|
|
4224
|
+
}, {
|
|
4225
|
+
readonly name: "delay";
|
|
4226
|
+
readonly internalType: "uint32";
|
|
4227
|
+
readonly type: "uint32";
|
|
4228
|
+
}];
|
|
4229
|
+
readonly name: "AccessManagedRequiredDelay";
|
|
4230
|
+
}, {
|
|
4231
|
+
readonly type: "error";
|
|
4232
|
+
readonly inputs: readonly [{
|
|
4233
|
+
readonly name: "caller";
|
|
4234
|
+
readonly internalType: "address";
|
|
4235
|
+
readonly type: "address";
|
|
4236
|
+
}];
|
|
4237
|
+
readonly name: "AccessManagedUnauthorized";
|
|
4238
|
+
}, {
|
|
4239
|
+
readonly type: "error";
|
|
4240
|
+
readonly inputs: readonly [];
|
|
4241
|
+
readonly name: "ECDSAInvalidSignature";
|
|
4242
|
+
}, {
|
|
4243
|
+
readonly type: "error";
|
|
4244
|
+
readonly inputs: readonly [{
|
|
4245
|
+
readonly name: "length";
|
|
4246
|
+
readonly internalType: "uint256";
|
|
4247
|
+
readonly type: "uint256";
|
|
4248
|
+
}];
|
|
4249
|
+
readonly name: "ECDSAInvalidSignatureLength";
|
|
4250
|
+
}, {
|
|
4251
|
+
readonly type: "error";
|
|
4252
|
+
readonly inputs: readonly [{
|
|
4253
|
+
readonly name: "s";
|
|
4254
|
+
readonly internalType: "bytes32";
|
|
4255
|
+
readonly type: "bytes32";
|
|
4256
|
+
}];
|
|
4257
|
+
readonly name: "ECDSAInvalidSignatureS";
|
|
4258
|
+
}, {
|
|
4259
|
+
readonly type: "error";
|
|
4260
|
+
readonly inputs: readonly [{
|
|
4261
|
+
readonly name: "spender";
|
|
4262
|
+
readonly internalType: "address";
|
|
4263
|
+
readonly type: "address";
|
|
4264
|
+
}, {
|
|
4265
|
+
readonly name: "allowance";
|
|
4266
|
+
readonly internalType: "uint256";
|
|
4267
|
+
readonly type: "uint256";
|
|
4268
|
+
}, {
|
|
4269
|
+
readonly name: "needed";
|
|
4270
|
+
readonly internalType: "uint256";
|
|
4271
|
+
readonly type: "uint256";
|
|
4272
|
+
}];
|
|
4273
|
+
readonly name: "ERC20InsufficientAllowance";
|
|
4274
|
+
}, {
|
|
4275
|
+
readonly type: "error";
|
|
4276
|
+
readonly inputs: readonly [{
|
|
4277
|
+
readonly name: "sender";
|
|
4278
|
+
readonly internalType: "address";
|
|
4279
|
+
readonly type: "address";
|
|
4280
|
+
}, {
|
|
4281
|
+
readonly name: "balance";
|
|
4282
|
+
readonly internalType: "uint256";
|
|
4283
|
+
readonly type: "uint256";
|
|
4284
|
+
}, {
|
|
4285
|
+
readonly name: "needed";
|
|
4286
|
+
readonly internalType: "uint256";
|
|
4287
|
+
readonly type: "uint256";
|
|
4288
|
+
}];
|
|
4289
|
+
readonly name: "ERC20InsufficientBalance";
|
|
4290
|
+
}, {
|
|
4291
|
+
readonly type: "error";
|
|
4292
|
+
readonly inputs: readonly [{
|
|
4293
|
+
readonly name: "approver";
|
|
4294
|
+
readonly internalType: "address";
|
|
4295
|
+
readonly type: "address";
|
|
4296
|
+
}];
|
|
4297
|
+
readonly name: "ERC20InvalidApprover";
|
|
4298
|
+
}, {
|
|
4299
|
+
readonly type: "error";
|
|
4300
|
+
readonly inputs: readonly [{
|
|
4301
|
+
readonly name: "receiver";
|
|
4302
|
+
readonly internalType: "address";
|
|
4303
|
+
readonly type: "address";
|
|
4304
|
+
}];
|
|
4305
|
+
readonly name: "ERC20InvalidReceiver";
|
|
4306
|
+
}, {
|
|
4307
|
+
readonly type: "error";
|
|
4308
|
+
readonly inputs: readonly [{
|
|
4309
|
+
readonly name: "sender";
|
|
4310
|
+
readonly internalType: "address";
|
|
4311
|
+
readonly type: "address";
|
|
4312
|
+
}];
|
|
4313
|
+
readonly name: "ERC20InvalidSender";
|
|
4314
|
+
}, {
|
|
4315
|
+
readonly type: "error";
|
|
4316
|
+
readonly inputs: readonly [{
|
|
4317
|
+
readonly name: "spender";
|
|
4318
|
+
readonly internalType: "address";
|
|
4319
|
+
readonly type: "address";
|
|
4320
|
+
}];
|
|
4321
|
+
readonly name: "ERC20InvalidSpender";
|
|
4322
|
+
}, {
|
|
4323
|
+
readonly type: "error";
|
|
4324
|
+
readonly inputs: readonly [{
|
|
4325
|
+
readonly name: "deadline";
|
|
4326
|
+
readonly internalType: "uint256";
|
|
4327
|
+
readonly type: "uint256";
|
|
4328
|
+
}];
|
|
4329
|
+
readonly name: "ERC2612ExpiredSignature";
|
|
4330
|
+
}, {
|
|
4331
|
+
readonly type: "error";
|
|
4332
|
+
readonly inputs: readonly [{
|
|
4333
|
+
readonly name: "signer";
|
|
4334
|
+
readonly internalType: "address";
|
|
4335
|
+
readonly type: "address";
|
|
4336
|
+
}, {
|
|
4337
|
+
readonly name: "owner";
|
|
4338
|
+
readonly internalType: "address";
|
|
4339
|
+
readonly type: "address";
|
|
4340
|
+
}];
|
|
4341
|
+
readonly name: "ERC2612InvalidSigner";
|
|
4342
|
+
}, {
|
|
4343
|
+
readonly type: "error";
|
|
4344
|
+
readonly inputs: readonly [];
|
|
4345
|
+
readonly name: "EnforcedPause";
|
|
4346
|
+
}, {
|
|
4347
|
+
readonly type: "error";
|
|
4348
|
+
readonly inputs: readonly [];
|
|
4349
|
+
readonly name: "ExpectedPause";
|
|
4350
|
+
}, {
|
|
4351
|
+
readonly type: "error";
|
|
4352
|
+
readonly inputs: readonly [{
|
|
4353
|
+
readonly name: "account";
|
|
4354
|
+
readonly internalType: "address";
|
|
4355
|
+
readonly type: "address";
|
|
4356
|
+
}, {
|
|
4357
|
+
readonly name: "currentNonce";
|
|
4358
|
+
readonly internalType: "uint256";
|
|
4359
|
+
readonly type: "uint256";
|
|
4360
|
+
}];
|
|
4361
|
+
readonly name: "InvalidAccountNonce";
|
|
4362
|
+
}, {
|
|
4363
|
+
readonly type: "error";
|
|
4364
|
+
readonly inputs: readonly [];
|
|
4365
|
+
readonly name: "InvalidShortString";
|
|
4366
|
+
}, {
|
|
4367
|
+
readonly type: "error";
|
|
4368
|
+
readonly inputs: readonly [{
|
|
4369
|
+
readonly name: "str";
|
|
4370
|
+
readonly internalType: "string";
|
|
4371
|
+
readonly type: "string";
|
|
4372
|
+
}];
|
|
4373
|
+
readonly name: "StringTooLong";
|
|
4315
4374
|
}];
|
|
4316
4375
|
};
|
|
4317
4376
|
//# sourceMappingURL=contracts.d.ts.map
|