@certik/skynet 0.22.0 → 0.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/abi.js CHANGED
@@ -1,616 +1,565 @@
1
- // @bun
2
- var __create = Object.create;
3
- var __getProtoOf = Object.getPrototypeOf;
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __toESM = (mod, isNodeMode, target) => {
9
- target = mod != null ? __create(__getProtoOf(mod)) : {};
10
- const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
11
- for (let key of __getOwnPropNames(mod))
12
- if (!__hasOwnProp.call(to, key))
13
- __defProp(to, key, {
14
- get: () => mod[key],
15
- enumerable: true
16
- });
17
- return to;
18
- };
19
- var __moduleCache = /* @__PURE__ */ new WeakMap;
20
- var __toCommonJS = (from) => {
21
- var entry = __moduleCache.get(from), desc;
22
- if (entry)
23
- return entry;
24
- entry = __defProp({}, "__esModule", { value: true });
25
- if (from && typeof from === "object" || typeof from === "function")
26
- __getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
27
- get: () => from[key],
28
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
29
- }));
30
- __moduleCache.set(from, entry);
31
- return entry;
32
- };
33
- var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
34
- var __export = (target, all) => {
35
- for (var name in all)
36
- __defProp(target, name, {
37
- get: all[name],
38
- enumerable: true,
39
- configurable: true,
40
- set: (newValue) => all[name] = () => newValue
41
- });
42
- };
43
- var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
44
- var __require = import.meta.require;
45
-
46
- // abi.ts
47
- var ERC20 = [
48
- {
49
- constant: true,
50
- inputs: [],
51
- name: "name",
52
- outputs: [
53
- {
54
- name: "",
55
- type: "string"
56
- }
57
- ],
58
- payable: false,
59
- stateMutability: "view",
60
- type: "function"
61
- },
62
- {
63
- constant: false,
64
- inputs: [
65
- {
66
- name: "_spender",
67
- type: "address"
68
- },
69
- {
70
- name: "_value",
71
- type: "uint256"
72
- }
73
- ],
74
- name: "approve",
75
- outputs: [
76
- {
77
- name: "",
78
- type: "bool"
79
- }
80
- ],
81
- payable: false,
82
- stateMutability: "nonpayable",
83
- type: "function"
84
- },
85
- {
86
- constant: true,
87
- inputs: [],
88
- name: "totalSupply",
89
- outputs: [
90
- {
91
- name: "",
92
- type: "uint256"
93
- }
94
- ],
95
- payable: false,
96
- stateMutability: "view",
97
- type: "function"
98
- },
99
- {
100
- constant: false,
101
- inputs: [
102
- {
103
- name: "_from",
104
- type: "address"
105
- },
106
- {
107
- name: "_to",
108
- type: "address"
109
- },
110
- {
111
- name: "_value",
112
- type: "uint256"
113
- }
114
- ],
115
- name: "transferFrom",
116
- outputs: [
117
- {
118
- name: "",
119
- type: "bool"
120
- }
121
- ],
122
- payable: false,
123
- stateMutability: "nonpayable",
124
- type: "function"
125
- },
126
- {
127
- constant: true,
128
- inputs: [],
129
- name: "decimals",
130
- outputs: [
131
- {
132
- name: "",
133
- type: "uint8"
134
- }
135
- ],
136
- payable: false,
137
- stateMutability: "view",
138
- type: "function"
139
- },
140
- {
141
- constant: true,
142
- inputs: [
143
- {
144
- name: "_owner",
145
- type: "address"
146
- }
147
- ],
148
- name: "balanceOf",
149
- outputs: [
150
- {
151
- name: "balance",
152
- type: "uint256"
153
- }
154
- ],
155
- payable: false,
156
- stateMutability: "view",
157
- type: "function"
158
- },
159
- {
160
- constant: true,
161
- inputs: [],
162
- name: "symbol",
163
- outputs: [
164
- {
165
- name: "",
166
- type: "string"
167
- }
168
- ],
169
- payable: false,
170
- stateMutability: "view",
171
- type: "function"
172
- },
173
- {
174
- constant: false,
175
- inputs: [
176
- {
177
- name: "_to",
178
- type: "address"
179
- },
180
- {
181
- name: "_value",
182
- type: "uint256"
183
- }
184
- ],
185
- name: "transfer",
186
- outputs: [
187
- {
188
- name: "",
189
- type: "bool"
190
- }
191
- ],
192
- payable: false,
193
- stateMutability: "nonpayable",
194
- type: "function"
195
- },
196
- {
197
- constant: true,
198
- inputs: [
199
- {
200
- name: "_owner",
201
- type: "address"
202
- },
203
- {
204
- name: "_spender",
205
- type: "address"
206
- }
207
- ],
208
- name: "allowance",
209
- outputs: [
210
- {
211
- name: "",
212
- type: "uint256"
213
- }
214
- ],
215
- payable: false,
216
- stateMutability: "view",
217
- type: "function"
218
- },
219
- {
220
- name: "Approval",
221
- payable: true,
222
- stateMutability: "payable",
223
- type: "fallback"
224
- },
225
- {
226
- inputs: [
227
- {
228
- indexed: true,
229
- name: "owner",
230
- type: "address"
231
- },
232
- {
233
- indexed: true,
234
- name: "spender",
235
- type: "address"
236
- },
237
- {
238
- indexed: false,
239
- name: "value",
240
- type: "uint256"
241
- }
242
- ],
243
- name: "Approval",
244
- type: "event"
245
- },
246
- {
247
- inputs: [
248
- {
249
- indexed: true,
250
- name: "from",
251
- type: "address"
252
- },
253
- {
254
- indexed: true,
255
- name: "to",
256
- type: "address"
257
- },
258
- {
259
- indexed: false,
260
- name: "value",
261
- type: "uint256"
262
- }
263
- ],
264
- name: "Transfer",
265
- type: "event"
266
- }
1
+ export const ERC20 = [
2
+ {
3
+ constant: true,
4
+ inputs: [],
5
+ name: "name",
6
+ outputs: [
7
+ {
8
+ name: "",
9
+ type: "string",
10
+ },
11
+ ],
12
+ payable: false,
13
+ stateMutability: "view",
14
+ type: "function",
15
+ },
16
+ {
17
+ constant: false,
18
+ inputs: [
19
+ {
20
+ name: "_spender",
21
+ type: "address",
22
+ },
23
+ {
24
+ name: "_value",
25
+ type: "uint256",
26
+ },
27
+ ],
28
+ name: "approve",
29
+ outputs: [
30
+ {
31
+ name: "",
32
+ type: "bool",
33
+ },
34
+ ],
35
+ payable: false,
36
+ stateMutability: "nonpayable",
37
+ type: "function",
38
+ },
39
+ {
40
+ constant: true,
41
+ inputs: [],
42
+ name: "totalSupply",
43
+ outputs: [
44
+ {
45
+ name: "",
46
+ type: "uint256",
47
+ },
48
+ ],
49
+ payable: false,
50
+ stateMutability: "view",
51
+ type: "function",
52
+ },
53
+ {
54
+ constant: false,
55
+ inputs: [
56
+ {
57
+ name: "_from",
58
+ type: "address",
59
+ },
60
+ {
61
+ name: "_to",
62
+ type: "address",
63
+ },
64
+ {
65
+ name: "_value",
66
+ type: "uint256",
67
+ },
68
+ ],
69
+ name: "transferFrom",
70
+ outputs: [
71
+ {
72
+ name: "",
73
+ type: "bool",
74
+ },
75
+ ],
76
+ payable: false,
77
+ stateMutability: "nonpayable",
78
+ type: "function",
79
+ },
80
+ {
81
+ constant: true,
82
+ inputs: [],
83
+ name: "decimals",
84
+ outputs: [
85
+ {
86
+ name: "",
87
+ type: "uint8",
88
+ },
89
+ ],
90
+ payable: false,
91
+ stateMutability: "view",
92
+ type: "function",
93
+ },
94
+ {
95
+ constant: true,
96
+ inputs: [
97
+ {
98
+ name: "_owner",
99
+ type: "address",
100
+ },
101
+ ],
102
+ name: "balanceOf",
103
+ outputs: [
104
+ {
105
+ name: "balance",
106
+ type: "uint256",
107
+ },
108
+ ],
109
+ payable: false,
110
+ stateMutability: "view",
111
+ type: "function",
112
+ },
113
+ {
114
+ constant: true,
115
+ inputs: [],
116
+ name: "symbol",
117
+ outputs: [
118
+ {
119
+ name: "",
120
+ type: "string",
121
+ },
122
+ ],
123
+ payable: false,
124
+ stateMutability: "view",
125
+ type: "function",
126
+ },
127
+ {
128
+ constant: false,
129
+ inputs: [
130
+ {
131
+ name: "_to",
132
+ type: "address",
133
+ },
134
+ {
135
+ name: "_value",
136
+ type: "uint256",
137
+ },
138
+ ],
139
+ name: "transfer",
140
+ outputs: [
141
+ {
142
+ name: "",
143
+ type: "bool",
144
+ },
145
+ ],
146
+ payable: false,
147
+ stateMutability: "nonpayable",
148
+ type: "function",
149
+ },
150
+ {
151
+ constant: true,
152
+ inputs: [
153
+ {
154
+ name: "_owner",
155
+ type: "address",
156
+ },
157
+ {
158
+ name: "_spender",
159
+ type: "address",
160
+ },
161
+ ],
162
+ name: "allowance",
163
+ outputs: [
164
+ {
165
+ name: "",
166
+ type: "uint256",
167
+ },
168
+ ],
169
+ payable: false,
170
+ stateMutability: "view",
171
+ type: "function",
172
+ },
173
+ {
174
+ name: "Approval",
175
+ payable: true,
176
+ stateMutability: "payable",
177
+ type: "fallback",
178
+ },
179
+ {
180
+ inputs: [
181
+ {
182
+ indexed: true,
183
+ name: "owner",
184
+ type: "address",
185
+ },
186
+ {
187
+ indexed: true,
188
+ name: "spender",
189
+ type: "address",
190
+ },
191
+ {
192
+ indexed: false,
193
+ name: "value",
194
+ type: "uint256",
195
+ },
196
+ ],
197
+ name: "Approval",
198
+ type: "event",
199
+ },
200
+ {
201
+ inputs: [
202
+ {
203
+ indexed: true,
204
+ name: "from",
205
+ type: "address",
206
+ },
207
+ {
208
+ indexed: true,
209
+ name: "to",
210
+ type: "address",
211
+ },
212
+ {
213
+ indexed: false,
214
+ name: "value",
215
+ type: "uint256",
216
+ },
217
+ ],
218
+ name: "Transfer",
219
+ type: "event",
220
+ },
267
221
  ];
268
- var ERC721 = [
269
- {
270
- inputs: [
271
- {
272
- indexed: true,
273
- internalType: "address",
274
- name: "owner",
275
- type: "address"
276
- },
277
- {
278
- indexed: true,
279
- internalType: "address",
280
- name: "approved",
281
- type: "address"
282
- },
283
- {
284
- indexed: true,
285
- internalType: "uint256",
286
- name: "tokenId",
287
- type: "uint256"
288
- }
289
- ],
290
- name: "Approval",
291
- type: "event"
292
- },
293
- {
294
- inputs: [
295
- {
296
- indexed: true,
297
- internalType: "address",
298
- name: "owner",
299
- type: "address"
300
- },
301
- {
302
- indexed: true,
303
- internalType: "address",
304
- name: "operator",
305
- type: "address"
306
- },
307
- {
308
- indexed: false,
309
- internalType: "bool",
310
- name: "approved",
311
- type: "bool"
312
- }
313
- ],
314
- name: "ApprovalForAll",
315
- type: "event"
316
- },
317
- {
318
- inputs: [
319
- {
320
- indexed: true,
321
- internalType: "address",
322
- name: "from",
323
- type: "address"
324
- },
325
- {
326
- indexed: true,
327
- internalType: "address",
328
- name: "to",
329
- type: "address"
330
- },
331
- {
332
- indexed: true,
333
- internalType: "uint256",
334
- name: "tokenId",
335
- type: "uint256"
336
- }
337
- ],
338
- name: "Transfer",
339
- type: "event"
340
- },
341
- {
342
- inputs: [
343
- {
344
- internalType: "address",
345
- name: "to",
346
- type: "address"
347
- },
348
- {
349
- internalType: "uint256",
350
- name: "tokenId",
351
- type: "uint256"
352
- }
353
- ],
354
- name: "approve",
355
- outputs: [],
356
- stateMutability: "nonpayable",
357
- type: "function"
358
- },
359
- {
360
- constant: true,
361
- inputs: [],
362
- name: "totalSupply",
363
- outputs: [
364
- {
365
- name: "",
366
- type: "uint256"
367
- }
368
- ],
369
- payable: false,
370
- stateMutability: "view",
371
- type: "function"
372
- },
373
- {
374
- inputs: [
375
- {
376
- internalType: "address",
377
- name: "owner",
378
- type: "address"
379
- }
380
- ],
381
- name: "balanceOf",
382
- outputs: [
383
- {
384
- internalType: "uint256",
385
- name: "balance",
386
- type: "uint256"
387
- }
388
- ],
389
- stateMutability: "view",
390
- type: "function"
391
- },
392
- {
393
- inputs: [
394
- {
395
- internalType: "uint256",
396
- name: "tokenId",
397
- type: "uint256"
398
- }
399
- ],
400
- name: "getApproved",
401
- outputs: [
402
- {
403
- internalType: "address",
404
- name: "operator",
405
- type: "address"
406
- }
407
- ],
408
- stateMutability: "view",
409
- type: "function"
410
- },
411
- {
412
- inputs: [
413
- {
414
- internalType: "address",
415
- name: "owner",
416
- type: "address"
417
- },
418
- {
419
- internalType: "address",
420
- name: "operator",
421
- type: "address"
422
- }
423
- ],
424
- name: "isApprovedForAll",
425
- outputs: [
426
- {
427
- internalType: "bool",
428
- name: "",
429
- type: "bool"
430
- }
431
- ],
432
- stateMutability: "view",
433
- type: "function"
434
- },
435
- {
436
- inputs: [],
437
- name: "name",
438
- outputs: [
439
- {
440
- internalType: "string",
441
- name: "",
442
- type: "string"
443
- }
444
- ],
445
- stateMutability: "view",
446
- type: "function"
447
- },
448
- {
449
- inputs: [
450
- {
451
- internalType: "uint256",
452
- name: "tokenId",
453
- type: "uint256"
454
- }
455
- ],
456
- name: "ownerOf",
457
- outputs: [
458
- {
459
- internalType: "address",
460
- name: "owner",
461
- type: "address"
462
- }
463
- ],
464
- stateMutability: "view",
465
- type: "function"
466
- },
467
- {
468
- inputs: [
469
- {
470
- internalType: "address",
471
- name: "from",
472
- type: "address"
473
- },
474
- {
475
- internalType: "address",
476
- name: "to",
477
- type: "address"
478
- },
479
- {
480
- internalType: "uint256",
481
- name: "tokenId",
482
- type: "uint256"
483
- }
484
- ],
485
- name: "safeTransferFrom",
486
- outputs: [],
487
- stateMutability: "nonpayable",
488
- type: "function"
489
- },
490
- {
491
- inputs: [
492
- {
493
- internalType: "address",
494
- name: "from",
495
- type: "address"
496
- },
497
- {
498
- internalType: "address",
499
- name: "to",
500
- type: "address"
501
- },
502
- {
503
- internalType: "uint256",
504
- name: "tokenId",
505
- type: "uint256"
506
- },
507
- {
508
- internalType: "bytes",
509
- name: "data",
510
- type: "bytes"
511
- }
512
- ],
513
- name: "safeTransferFrom",
514
- outputs: [],
515
- stateMutability: "nonpayable",
516
- type: "function"
517
- },
518
- {
519
- inputs: [
520
- {
521
- internalType: "address",
522
- name: "operator",
523
- type: "address"
524
- },
525
- {
526
- internalType: "bool",
527
- name: "_approved",
528
- type: "bool"
529
- }
530
- ],
531
- name: "setApprovalForAll",
532
- outputs: [],
533
- stateMutability: "nonpayable",
534
- type: "function"
535
- },
536
- {
537
- inputs: [
538
- {
539
- internalType: "bytes4",
540
- name: "interfaceId",
541
- type: "bytes4"
542
- }
543
- ],
544
- name: "supportsInterface",
545
- outputs: [
546
- {
547
- internalType: "bool",
548
- name: "",
549
- type: "bool"
550
- }
551
- ],
552
- stateMutability: "view",
553
- type: "function"
554
- },
555
- {
556
- inputs: [],
557
- name: "symbol",
558
- outputs: [
559
- {
560
- internalType: "string",
561
- name: "",
562
- type: "string"
563
- }
564
- ],
565
- stateMutability: "view",
566
- type: "function"
567
- },
568
- {
569
- inputs: [
570
- {
571
- internalType: "uint256",
572
- name: "tokenId",
573
- type: "uint256"
574
- }
575
- ],
576
- name: "tokenURI",
577
- outputs: [
578
- {
579
- internalType: "string",
580
- name: "",
581
- type: "string"
582
- }
583
- ],
584
- stateMutability: "view",
585
- type: "function"
586
- },
587
- {
588
- inputs: [
589
- {
590
- internalType: "address",
591
- name: "from",
592
- type: "address"
593
- },
594
- {
595
- internalType: "address",
596
- name: "to",
597
- type: "address"
598
- },
599
- {
600
- internalType: "uint256",
601
- name: "tokenId",
602
- type: "uint256"
603
- }
604
- ],
605
- name: "transferFrom",
606
- outputs: [],
607
- stateMutability: "nonpayable",
608
- type: "function"
609
- }
222
+ export const ERC721 = [
223
+ {
224
+ inputs: [
225
+ {
226
+ indexed: true,
227
+ internalType: "address",
228
+ name: "owner",
229
+ type: "address",
230
+ },
231
+ {
232
+ indexed: true,
233
+ internalType: "address",
234
+ name: "approved",
235
+ type: "address",
236
+ },
237
+ {
238
+ indexed: true,
239
+ internalType: "uint256",
240
+ name: "tokenId",
241
+ type: "uint256",
242
+ },
243
+ ],
244
+ name: "Approval",
245
+ type: "event",
246
+ },
247
+ {
248
+ inputs: [
249
+ {
250
+ indexed: true,
251
+ internalType: "address",
252
+ name: "owner",
253
+ type: "address",
254
+ },
255
+ {
256
+ indexed: true,
257
+ internalType: "address",
258
+ name: "operator",
259
+ type: "address",
260
+ },
261
+ {
262
+ indexed: false,
263
+ internalType: "bool",
264
+ name: "approved",
265
+ type: "bool",
266
+ },
267
+ ],
268
+ name: "ApprovalForAll",
269
+ type: "event",
270
+ },
271
+ {
272
+ inputs: [
273
+ {
274
+ indexed: true,
275
+ internalType: "address",
276
+ name: "from",
277
+ type: "address",
278
+ },
279
+ {
280
+ indexed: true,
281
+ internalType: "address",
282
+ name: "to",
283
+ type: "address",
284
+ },
285
+ {
286
+ indexed: true,
287
+ internalType: "uint256",
288
+ name: "tokenId",
289
+ type: "uint256",
290
+ },
291
+ ],
292
+ name: "Transfer",
293
+ type: "event",
294
+ },
295
+ {
296
+ inputs: [
297
+ {
298
+ internalType: "address",
299
+ name: "to",
300
+ type: "address",
301
+ },
302
+ {
303
+ internalType: "uint256",
304
+ name: "tokenId",
305
+ type: "uint256",
306
+ },
307
+ ],
308
+ name: "approve",
309
+ outputs: [],
310
+ stateMutability: "nonpayable",
311
+ type: "function",
312
+ },
313
+ {
314
+ constant: true,
315
+ inputs: [],
316
+ name: "totalSupply",
317
+ outputs: [
318
+ {
319
+ name: "",
320
+ type: "uint256",
321
+ },
322
+ ],
323
+ payable: false,
324
+ stateMutability: "view",
325
+ type: "function",
326
+ },
327
+ {
328
+ inputs: [
329
+ {
330
+ internalType: "address",
331
+ name: "owner",
332
+ type: "address",
333
+ },
334
+ ],
335
+ name: "balanceOf",
336
+ outputs: [
337
+ {
338
+ internalType: "uint256",
339
+ name: "balance",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ stateMutability: "view",
344
+ type: "function",
345
+ },
346
+ {
347
+ inputs: [
348
+ {
349
+ internalType: "uint256",
350
+ name: "tokenId",
351
+ type: "uint256",
352
+ },
353
+ ],
354
+ name: "getApproved",
355
+ outputs: [
356
+ {
357
+ internalType: "address",
358
+ name: "operator",
359
+ type: "address",
360
+ },
361
+ ],
362
+ stateMutability: "view",
363
+ type: "function",
364
+ },
365
+ {
366
+ inputs: [
367
+ {
368
+ internalType: "address",
369
+ name: "owner",
370
+ type: "address",
371
+ },
372
+ {
373
+ internalType: "address",
374
+ name: "operator",
375
+ type: "address",
376
+ },
377
+ ],
378
+ name: "isApprovedForAll",
379
+ outputs: [
380
+ {
381
+ internalType: "bool",
382
+ name: "",
383
+ type: "bool",
384
+ },
385
+ ],
386
+ stateMutability: "view",
387
+ type: "function",
388
+ },
389
+ {
390
+ inputs: [],
391
+ name: "name",
392
+ outputs: [
393
+ {
394
+ internalType: "string",
395
+ name: "",
396
+ type: "string",
397
+ },
398
+ ],
399
+ stateMutability: "view",
400
+ type: "function",
401
+ },
402
+ {
403
+ inputs: [
404
+ {
405
+ internalType: "uint256",
406
+ name: "tokenId",
407
+ type: "uint256",
408
+ },
409
+ ],
410
+ name: "ownerOf",
411
+ outputs: [
412
+ {
413
+ internalType: "address",
414
+ name: "owner",
415
+ type: "address",
416
+ },
417
+ ],
418
+ stateMutability: "view",
419
+ type: "function",
420
+ },
421
+ {
422
+ inputs: [
423
+ {
424
+ internalType: "address",
425
+ name: "from",
426
+ type: "address",
427
+ },
428
+ {
429
+ internalType: "address",
430
+ name: "to",
431
+ type: "address",
432
+ },
433
+ {
434
+ internalType: "uint256",
435
+ name: "tokenId",
436
+ type: "uint256",
437
+ },
438
+ ],
439
+ name: "safeTransferFrom",
440
+ outputs: [],
441
+ stateMutability: "nonpayable",
442
+ type: "function",
443
+ },
444
+ {
445
+ inputs: [
446
+ {
447
+ internalType: "address",
448
+ name: "from",
449
+ type: "address",
450
+ },
451
+ {
452
+ internalType: "address",
453
+ name: "to",
454
+ type: "address",
455
+ },
456
+ {
457
+ internalType: "uint256",
458
+ name: "tokenId",
459
+ type: "uint256",
460
+ },
461
+ {
462
+ internalType: "bytes",
463
+ name: "data",
464
+ type: "bytes",
465
+ },
466
+ ],
467
+ name: "safeTransferFrom",
468
+ outputs: [],
469
+ stateMutability: "nonpayable",
470
+ type: "function",
471
+ },
472
+ {
473
+ inputs: [
474
+ {
475
+ internalType: "address",
476
+ name: "operator",
477
+ type: "address",
478
+ },
479
+ {
480
+ internalType: "bool",
481
+ name: "_approved",
482
+ type: "bool",
483
+ },
484
+ ],
485
+ name: "setApprovalForAll",
486
+ outputs: [],
487
+ stateMutability: "nonpayable",
488
+ type: "function",
489
+ },
490
+ {
491
+ inputs: [
492
+ {
493
+ internalType: "bytes4",
494
+ name: "interfaceId",
495
+ type: "bytes4",
496
+ },
497
+ ],
498
+ name: "supportsInterface",
499
+ outputs: [
500
+ {
501
+ internalType: "bool",
502
+ name: "",
503
+ type: "bool",
504
+ },
505
+ ],
506
+ stateMutability: "view",
507
+ type: "function",
508
+ },
509
+ {
510
+ inputs: [],
511
+ name: "symbol",
512
+ outputs: [
513
+ {
514
+ internalType: "string",
515
+ name: "",
516
+ type: "string",
517
+ },
518
+ ],
519
+ stateMutability: "view",
520
+ type: "function",
521
+ },
522
+ {
523
+ inputs: [
524
+ {
525
+ internalType: "uint256",
526
+ name: "tokenId",
527
+ type: "uint256",
528
+ },
529
+ ],
530
+ name: "tokenURI",
531
+ outputs: [
532
+ {
533
+ internalType: "string",
534
+ name: "",
535
+ type: "string",
536
+ },
537
+ ],
538
+ stateMutability: "view",
539
+ type: "function",
540
+ },
541
+ {
542
+ inputs: [
543
+ {
544
+ internalType: "address",
545
+ name: "from",
546
+ type: "address",
547
+ },
548
+ {
549
+ internalType: "address",
550
+ name: "to",
551
+ type: "address",
552
+ },
553
+ {
554
+ internalType: "uint256",
555
+ name: "tokenId",
556
+ type: "uint256",
557
+ },
558
+ ],
559
+ name: "transferFrom",
560
+ outputs: [],
561
+ stateMutability: "nonpayable",
562
+ type: "function",
563
+ },
610
564
  ];
611
- var BEP20 = ERC20;
612
- export {
613
- ERC721,
614
- ERC20,
615
- BEP20
616
- };
565
+ export const BEP20 = ERC20;