@verified-network/verified-sdk 0.8.0 → 0.8.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.
@@ -0,0 +1,861 @@
1
+ {
2
+ "contractName": "VerifiedProducts",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "address",
8
+ "name": "_issue",
9
+ "type": "address"
10
+ },
11
+ {
12
+ "internalType": "bytes32",
13
+ "name": "_ref",
14
+ "type": "bytes32"
15
+ },
16
+ {
17
+ "internalType": "bytes32",
18
+ "name": "_hashedMessage",
19
+ "type": "bytes32"
20
+ },
21
+ {
22
+ "internalType": "uint8",
23
+ "name": "_v",
24
+ "type": "uint8"
25
+ },
26
+ {
27
+ "internalType": "bytes32",
28
+ "name": "_r",
29
+ "type": "bytes32"
30
+ },
31
+ {
32
+ "internalType": "bytes32",
33
+ "name": "_s",
34
+ "type": "bytes32"
35
+ }
36
+ ],
37
+ "name": "issueProduct",
38
+ "outputs": [],
39
+ "stateMutability": "nonpayable",
40
+ "type": "function"
41
+ },
42
+ {
43
+ "inputs": [
44
+ {
45
+ "internalType": "address",
46
+ "name": "_issue",
47
+ "type": "address"
48
+ }
49
+ ],
50
+ "name": "checkProduct",
51
+ "outputs": [
52
+ {
53
+ "internalType": "bool",
54
+ "name": "",
55
+ "type": "bool"
56
+ }
57
+ ],
58
+ "stateMutability": "view",
59
+ "type": "function"
60
+ },
61
+ {
62
+ "inputs": [
63
+ {
64
+ "internalType": "address",
65
+ "name": "_signer",
66
+ "type": "address"
67
+ }
68
+ ],
69
+ "name": "setSigner",
70
+ "outputs": [],
71
+ "stateMutability": "nonpayable",
72
+ "type": "function"
73
+ }
74
+ ],
75
+ "metadata": "{\"compiler\":{\"version\":\"0.7.1+commit.f4a555be\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_issue\",\"type\":\"address\"}],\"name\":\"checkProduct\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_issue\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"_ref\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_hashedMessage\",\"type\":\"bytes32\"},{\"internalType\":\"uint8\",\"name\":\"_v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"_r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_s\",\"type\":\"bytes32\"}],\"name\":\"issueProduct\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_signer\",\"type\":\"address\"}],\"name\":\"setSigner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project:/contracts/interfaces/VerifiedProducts.sol\":\"VerifiedProducts\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"project:/contracts/interfaces/VerifiedProducts.sol\":{\"keccak256\":\"0xe75b9f762a14597117f13d09202346f26f3b67d5a2d6b057c523539989221425\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://25ca1a77b4d6fae1f8a475384a4c16f368d1305b11824fd52b85b027ed3cb97a\",\"dweb:/ipfs/QmWK4YQbv62XQmYuUmMbuYusiw7nTYBF2o29W9hNcQjssJ\"]}},\"version\":1}",
76
+ "bytecode": "0x",
77
+ "deployedBytecode": "0x",
78
+ "immutableReferences": {},
79
+ "sourceMap": "",
80
+ "deployedSourceMap": "",
81
+ "source": "// Interface of Verified financial products\r\n// (c) Kallol Borah, 2021\r\n\r\n//\"SPDX-License-Identifier: UNLICENSED\"\r\n\r\npragma solidity 0.7.1;\r\n\r\ninterface VerifiedProducts{\r\n\r\n function issueProduct(address _issue, bytes32 _ref, bytes32 _hashedMessage, uint8 _v, bytes32 _r, bytes32 _s) external;\r\n\r\n function checkProduct(address _issue) external view returns(bool);\r\n\r\n function setSigner(address _signer) external;\r\n\r\n}",
82
+ "sourcePath": "D:\\Code\\verified-quorum\\balancer\\contracts\\interfaces\\VerifiedProducts.sol",
83
+ "ast": {
84
+ "absolutePath": "project:/contracts/interfaces/VerifiedProducts.sol",
85
+ "exportedSymbols": {
86
+ "VerifiedProducts": [
87
+ 11677
88
+ ]
89
+ },
90
+ "id": 11678,
91
+ "license": "UNLICENSED",
92
+ "nodeType": "SourceUnit",
93
+ "nodes": [
94
+ {
95
+ "id": 11649,
96
+ "literals": [
97
+ "solidity",
98
+ "0.7",
99
+ ".1"
100
+ ],
101
+ "nodeType": "PragmaDirective",
102
+ "src": "117:22:46"
103
+ },
104
+ {
105
+ "abstract": false,
106
+ "baseContracts": [],
107
+ "contractDependencies": [],
108
+ "contractKind": "interface",
109
+ "fullyImplemented": false,
110
+ "id": 11677,
111
+ "linearizedBaseContracts": [
112
+ 11677
113
+ ],
114
+ "name": "VerifiedProducts",
115
+ "nodeType": "ContractDefinition",
116
+ "nodes": [
117
+ {
118
+ "functionSelector": "e45f837e",
119
+ "id": 11664,
120
+ "implemented": false,
121
+ "kind": "function",
122
+ "modifiers": [],
123
+ "name": "issueProduct",
124
+ "nodeType": "FunctionDefinition",
125
+ "parameters": {
126
+ "id": 11662,
127
+ "nodeType": "ParameterList",
128
+ "parameters": [
129
+ {
130
+ "constant": false,
131
+ "id": 11651,
132
+ "mutability": "mutable",
133
+ "name": "_issue",
134
+ "nodeType": "VariableDeclaration",
135
+ "scope": 11664,
136
+ "src": "200:14:46",
137
+ "stateVariable": false,
138
+ "storageLocation": "default",
139
+ "typeDescriptions": {
140
+ "typeIdentifier": "t_address",
141
+ "typeString": "address"
142
+ },
143
+ "typeName": {
144
+ "id": 11650,
145
+ "name": "address",
146
+ "nodeType": "ElementaryTypeName",
147
+ "src": "200:7:46",
148
+ "stateMutability": "nonpayable",
149
+ "typeDescriptions": {
150
+ "typeIdentifier": "t_address",
151
+ "typeString": "address"
152
+ }
153
+ },
154
+ "visibility": "internal"
155
+ },
156
+ {
157
+ "constant": false,
158
+ "id": 11653,
159
+ "mutability": "mutable",
160
+ "name": "_ref",
161
+ "nodeType": "VariableDeclaration",
162
+ "scope": 11664,
163
+ "src": "216:12:46",
164
+ "stateVariable": false,
165
+ "storageLocation": "default",
166
+ "typeDescriptions": {
167
+ "typeIdentifier": "t_bytes32",
168
+ "typeString": "bytes32"
169
+ },
170
+ "typeName": {
171
+ "id": 11652,
172
+ "name": "bytes32",
173
+ "nodeType": "ElementaryTypeName",
174
+ "src": "216:7:46",
175
+ "typeDescriptions": {
176
+ "typeIdentifier": "t_bytes32",
177
+ "typeString": "bytes32"
178
+ }
179
+ },
180
+ "visibility": "internal"
181
+ },
182
+ {
183
+ "constant": false,
184
+ "id": 11655,
185
+ "mutability": "mutable",
186
+ "name": "_hashedMessage",
187
+ "nodeType": "VariableDeclaration",
188
+ "scope": 11664,
189
+ "src": "230:22:46",
190
+ "stateVariable": false,
191
+ "storageLocation": "default",
192
+ "typeDescriptions": {
193
+ "typeIdentifier": "t_bytes32",
194
+ "typeString": "bytes32"
195
+ },
196
+ "typeName": {
197
+ "id": 11654,
198
+ "name": "bytes32",
199
+ "nodeType": "ElementaryTypeName",
200
+ "src": "230:7:46",
201
+ "typeDescriptions": {
202
+ "typeIdentifier": "t_bytes32",
203
+ "typeString": "bytes32"
204
+ }
205
+ },
206
+ "visibility": "internal"
207
+ },
208
+ {
209
+ "constant": false,
210
+ "id": 11657,
211
+ "mutability": "mutable",
212
+ "name": "_v",
213
+ "nodeType": "VariableDeclaration",
214
+ "scope": 11664,
215
+ "src": "254:8:46",
216
+ "stateVariable": false,
217
+ "storageLocation": "default",
218
+ "typeDescriptions": {
219
+ "typeIdentifier": "t_uint8",
220
+ "typeString": "uint8"
221
+ },
222
+ "typeName": {
223
+ "id": 11656,
224
+ "name": "uint8",
225
+ "nodeType": "ElementaryTypeName",
226
+ "src": "254:5:46",
227
+ "typeDescriptions": {
228
+ "typeIdentifier": "t_uint8",
229
+ "typeString": "uint8"
230
+ }
231
+ },
232
+ "visibility": "internal"
233
+ },
234
+ {
235
+ "constant": false,
236
+ "id": 11659,
237
+ "mutability": "mutable",
238
+ "name": "_r",
239
+ "nodeType": "VariableDeclaration",
240
+ "scope": 11664,
241
+ "src": "264:10:46",
242
+ "stateVariable": false,
243
+ "storageLocation": "default",
244
+ "typeDescriptions": {
245
+ "typeIdentifier": "t_bytes32",
246
+ "typeString": "bytes32"
247
+ },
248
+ "typeName": {
249
+ "id": 11658,
250
+ "name": "bytes32",
251
+ "nodeType": "ElementaryTypeName",
252
+ "src": "264:7:46",
253
+ "typeDescriptions": {
254
+ "typeIdentifier": "t_bytes32",
255
+ "typeString": "bytes32"
256
+ }
257
+ },
258
+ "visibility": "internal"
259
+ },
260
+ {
261
+ "constant": false,
262
+ "id": 11661,
263
+ "mutability": "mutable",
264
+ "name": "_s",
265
+ "nodeType": "VariableDeclaration",
266
+ "scope": 11664,
267
+ "src": "276:10:46",
268
+ "stateVariable": false,
269
+ "storageLocation": "default",
270
+ "typeDescriptions": {
271
+ "typeIdentifier": "t_bytes32",
272
+ "typeString": "bytes32"
273
+ },
274
+ "typeName": {
275
+ "id": 11660,
276
+ "name": "bytes32",
277
+ "nodeType": "ElementaryTypeName",
278
+ "src": "276:7:46",
279
+ "typeDescriptions": {
280
+ "typeIdentifier": "t_bytes32",
281
+ "typeString": "bytes32"
282
+ }
283
+ },
284
+ "visibility": "internal"
285
+ }
286
+ ],
287
+ "src": "199:88:46"
288
+ },
289
+ "returnParameters": {
290
+ "id": 11663,
291
+ "nodeType": "ParameterList",
292
+ "parameters": [],
293
+ "src": "296:0:46"
294
+ },
295
+ "scope": 11677,
296
+ "src": "178:119:46",
297
+ "stateMutability": "nonpayable",
298
+ "virtual": false,
299
+ "visibility": "external"
300
+ },
301
+ {
302
+ "functionSelector": "3ea6c82d",
303
+ "id": 11671,
304
+ "implemented": false,
305
+ "kind": "function",
306
+ "modifiers": [],
307
+ "name": "checkProduct",
308
+ "nodeType": "FunctionDefinition",
309
+ "parameters": {
310
+ "id": 11667,
311
+ "nodeType": "ParameterList",
312
+ "parameters": [
313
+ {
314
+ "constant": false,
315
+ "id": 11666,
316
+ "mutability": "mutable",
317
+ "name": "_issue",
318
+ "nodeType": "VariableDeclaration",
319
+ "scope": 11671,
320
+ "src": "327:14:46",
321
+ "stateVariable": false,
322
+ "storageLocation": "default",
323
+ "typeDescriptions": {
324
+ "typeIdentifier": "t_address",
325
+ "typeString": "address"
326
+ },
327
+ "typeName": {
328
+ "id": 11665,
329
+ "name": "address",
330
+ "nodeType": "ElementaryTypeName",
331
+ "src": "327:7:46",
332
+ "stateMutability": "nonpayable",
333
+ "typeDescriptions": {
334
+ "typeIdentifier": "t_address",
335
+ "typeString": "address"
336
+ }
337
+ },
338
+ "visibility": "internal"
339
+ }
340
+ ],
341
+ "src": "326:16:46"
342
+ },
343
+ "returnParameters": {
344
+ "id": 11670,
345
+ "nodeType": "ParameterList",
346
+ "parameters": [
347
+ {
348
+ "constant": false,
349
+ "id": 11669,
350
+ "mutability": "mutable",
351
+ "name": "",
352
+ "nodeType": "VariableDeclaration",
353
+ "scope": 11671,
354
+ "src": "365:4:46",
355
+ "stateVariable": false,
356
+ "storageLocation": "default",
357
+ "typeDescriptions": {
358
+ "typeIdentifier": "t_bool",
359
+ "typeString": "bool"
360
+ },
361
+ "typeName": {
362
+ "id": 11668,
363
+ "name": "bool",
364
+ "nodeType": "ElementaryTypeName",
365
+ "src": "365:4:46",
366
+ "typeDescriptions": {
367
+ "typeIdentifier": "t_bool",
368
+ "typeString": "bool"
369
+ }
370
+ },
371
+ "visibility": "internal"
372
+ }
373
+ ],
374
+ "src": "364:6:46"
375
+ },
376
+ "scope": 11677,
377
+ "src": "305:66:46",
378
+ "stateMutability": "view",
379
+ "virtual": false,
380
+ "visibility": "external"
381
+ },
382
+ {
383
+ "functionSelector": "6c19e783",
384
+ "id": 11676,
385
+ "implemented": false,
386
+ "kind": "function",
387
+ "modifiers": [],
388
+ "name": "setSigner",
389
+ "nodeType": "FunctionDefinition",
390
+ "parameters": {
391
+ "id": 11674,
392
+ "nodeType": "ParameterList",
393
+ "parameters": [
394
+ {
395
+ "constant": false,
396
+ "id": 11673,
397
+ "mutability": "mutable",
398
+ "name": "_signer",
399
+ "nodeType": "VariableDeclaration",
400
+ "scope": 11676,
401
+ "src": "398:15:46",
402
+ "stateVariable": false,
403
+ "storageLocation": "default",
404
+ "typeDescriptions": {
405
+ "typeIdentifier": "t_address",
406
+ "typeString": "address"
407
+ },
408
+ "typeName": {
409
+ "id": 11672,
410
+ "name": "address",
411
+ "nodeType": "ElementaryTypeName",
412
+ "src": "398:7:46",
413
+ "stateMutability": "nonpayable",
414
+ "typeDescriptions": {
415
+ "typeIdentifier": "t_address",
416
+ "typeString": "address"
417
+ }
418
+ },
419
+ "visibility": "internal"
420
+ }
421
+ ],
422
+ "src": "397:17:46"
423
+ },
424
+ "returnParameters": {
425
+ "id": 11675,
426
+ "nodeType": "ParameterList",
427
+ "parameters": [],
428
+ "src": "423:0:46"
429
+ },
430
+ "scope": 11677,
431
+ "src": "379:45:46",
432
+ "stateMutability": "nonpayable",
433
+ "virtual": false,
434
+ "visibility": "external"
435
+ }
436
+ ],
437
+ "scope": 11678,
438
+ "src": "143:286:46"
439
+ }
440
+ ],
441
+ "src": "117:312:46"
442
+ },
443
+ "legacyAST": {
444
+ "attributes": {
445
+ "absolutePath": "project:/contracts/interfaces/VerifiedProducts.sol",
446
+ "exportedSymbols": {
447
+ "VerifiedProducts": [
448
+ 11677
449
+ ]
450
+ },
451
+ "license": "UNLICENSED"
452
+ },
453
+ "children": [
454
+ {
455
+ "attributes": {
456
+ "literals": [
457
+ "solidity",
458
+ "0.7",
459
+ ".1"
460
+ ]
461
+ },
462
+ "id": 11649,
463
+ "name": "PragmaDirective",
464
+ "src": "117:22:46"
465
+ },
466
+ {
467
+ "attributes": {
468
+ "abstract": false,
469
+ "baseContracts": [
470
+ null
471
+ ],
472
+ "contractDependencies": [
473
+ null
474
+ ],
475
+ "contractKind": "interface",
476
+ "fullyImplemented": false,
477
+ "linearizedBaseContracts": [
478
+ 11677
479
+ ],
480
+ "name": "VerifiedProducts",
481
+ "scope": 11678
482
+ },
483
+ "children": [
484
+ {
485
+ "attributes": {
486
+ "functionSelector": "e45f837e",
487
+ "implemented": false,
488
+ "isConstructor": false,
489
+ "kind": "function",
490
+ "modifiers": [
491
+ null
492
+ ],
493
+ "name": "issueProduct",
494
+ "scope": 11677,
495
+ "stateMutability": "nonpayable",
496
+ "virtual": false,
497
+ "visibility": "external"
498
+ },
499
+ "children": [
500
+ {
501
+ "children": [
502
+ {
503
+ "attributes": {
504
+ "constant": false,
505
+ "mutability": "mutable",
506
+ "name": "_issue",
507
+ "scope": 11664,
508
+ "stateVariable": false,
509
+ "storageLocation": "default",
510
+ "type": "address",
511
+ "visibility": "internal"
512
+ },
513
+ "children": [
514
+ {
515
+ "attributes": {
516
+ "name": "address",
517
+ "stateMutability": "nonpayable",
518
+ "type": "address"
519
+ },
520
+ "id": 11650,
521
+ "name": "ElementaryTypeName",
522
+ "src": "200:7:46"
523
+ }
524
+ ],
525
+ "id": 11651,
526
+ "name": "VariableDeclaration",
527
+ "src": "200:14:46"
528
+ },
529
+ {
530
+ "attributes": {
531
+ "constant": false,
532
+ "mutability": "mutable",
533
+ "name": "_ref",
534
+ "scope": 11664,
535
+ "stateVariable": false,
536
+ "storageLocation": "default",
537
+ "type": "bytes32",
538
+ "visibility": "internal"
539
+ },
540
+ "children": [
541
+ {
542
+ "attributes": {
543
+ "name": "bytes32",
544
+ "type": "bytes32"
545
+ },
546
+ "id": 11652,
547
+ "name": "ElementaryTypeName",
548
+ "src": "216:7:46"
549
+ }
550
+ ],
551
+ "id": 11653,
552
+ "name": "VariableDeclaration",
553
+ "src": "216:12:46"
554
+ },
555
+ {
556
+ "attributes": {
557
+ "constant": false,
558
+ "mutability": "mutable",
559
+ "name": "_hashedMessage",
560
+ "scope": 11664,
561
+ "stateVariable": false,
562
+ "storageLocation": "default",
563
+ "type": "bytes32",
564
+ "visibility": "internal"
565
+ },
566
+ "children": [
567
+ {
568
+ "attributes": {
569
+ "name": "bytes32",
570
+ "type": "bytes32"
571
+ },
572
+ "id": 11654,
573
+ "name": "ElementaryTypeName",
574
+ "src": "230:7:46"
575
+ }
576
+ ],
577
+ "id": 11655,
578
+ "name": "VariableDeclaration",
579
+ "src": "230:22:46"
580
+ },
581
+ {
582
+ "attributes": {
583
+ "constant": false,
584
+ "mutability": "mutable",
585
+ "name": "_v",
586
+ "scope": 11664,
587
+ "stateVariable": false,
588
+ "storageLocation": "default",
589
+ "type": "uint8",
590
+ "visibility": "internal"
591
+ },
592
+ "children": [
593
+ {
594
+ "attributes": {
595
+ "name": "uint8",
596
+ "type": "uint8"
597
+ },
598
+ "id": 11656,
599
+ "name": "ElementaryTypeName",
600
+ "src": "254:5:46"
601
+ }
602
+ ],
603
+ "id": 11657,
604
+ "name": "VariableDeclaration",
605
+ "src": "254:8:46"
606
+ },
607
+ {
608
+ "attributes": {
609
+ "constant": false,
610
+ "mutability": "mutable",
611
+ "name": "_r",
612
+ "scope": 11664,
613
+ "stateVariable": false,
614
+ "storageLocation": "default",
615
+ "type": "bytes32",
616
+ "visibility": "internal"
617
+ },
618
+ "children": [
619
+ {
620
+ "attributes": {
621
+ "name": "bytes32",
622
+ "type": "bytes32"
623
+ },
624
+ "id": 11658,
625
+ "name": "ElementaryTypeName",
626
+ "src": "264:7:46"
627
+ }
628
+ ],
629
+ "id": 11659,
630
+ "name": "VariableDeclaration",
631
+ "src": "264:10:46"
632
+ },
633
+ {
634
+ "attributes": {
635
+ "constant": false,
636
+ "mutability": "mutable",
637
+ "name": "_s",
638
+ "scope": 11664,
639
+ "stateVariable": false,
640
+ "storageLocation": "default",
641
+ "type": "bytes32",
642
+ "visibility": "internal"
643
+ },
644
+ "children": [
645
+ {
646
+ "attributes": {
647
+ "name": "bytes32",
648
+ "type": "bytes32"
649
+ },
650
+ "id": 11660,
651
+ "name": "ElementaryTypeName",
652
+ "src": "276:7:46"
653
+ }
654
+ ],
655
+ "id": 11661,
656
+ "name": "VariableDeclaration",
657
+ "src": "276:10:46"
658
+ }
659
+ ],
660
+ "id": 11662,
661
+ "name": "ParameterList",
662
+ "src": "199:88:46"
663
+ },
664
+ {
665
+ "attributes": {
666
+ "parameters": [
667
+ null
668
+ ]
669
+ },
670
+ "children": [],
671
+ "id": 11663,
672
+ "name": "ParameterList",
673
+ "src": "296:0:46"
674
+ }
675
+ ],
676
+ "id": 11664,
677
+ "name": "FunctionDefinition",
678
+ "src": "178:119:46"
679
+ },
680
+ {
681
+ "attributes": {
682
+ "functionSelector": "3ea6c82d",
683
+ "implemented": false,
684
+ "isConstructor": false,
685
+ "kind": "function",
686
+ "modifiers": [
687
+ null
688
+ ],
689
+ "name": "checkProduct",
690
+ "scope": 11677,
691
+ "stateMutability": "view",
692
+ "virtual": false,
693
+ "visibility": "external"
694
+ },
695
+ "children": [
696
+ {
697
+ "children": [
698
+ {
699
+ "attributes": {
700
+ "constant": false,
701
+ "mutability": "mutable",
702
+ "name": "_issue",
703
+ "scope": 11671,
704
+ "stateVariable": false,
705
+ "storageLocation": "default",
706
+ "type": "address",
707
+ "visibility": "internal"
708
+ },
709
+ "children": [
710
+ {
711
+ "attributes": {
712
+ "name": "address",
713
+ "stateMutability": "nonpayable",
714
+ "type": "address"
715
+ },
716
+ "id": 11665,
717
+ "name": "ElementaryTypeName",
718
+ "src": "327:7:46"
719
+ }
720
+ ],
721
+ "id": 11666,
722
+ "name": "VariableDeclaration",
723
+ "src": "327:14:46"
724
+ }
725
+ ],
726
+ "id": 11667,
727
+ "name": "ParameterList",
728
+ "src": "326:16:46"
729
+ },
730
+ {
731
+ "children": [
732
+ {
733
+ "attributes": {
734
+ "constant": false,
735
+ "mutability": "mutable",
736
+ "name": "",
737
+ "scope": 11671,
738
+ "stateVariable": false,
739
+ "storageLocation": "default",
740
+ "type": "bool",
741
+ "visibility": "internal"
742
+ },
743
+ "children": [
744
+ {
745
+ "attributes": {
746
+ "name": "bool",
747
+ "type": "bool"
748
+ },
749
+ "id": 11668,
750
+ "name": "ElementaryTypeName",
751
+ "src": "365:4:46"
752
+ }
753
+ ],
754
+ "id": 11669,
755
+ "name": "VariableDeclaration",
756
+ "src": "365:4:46"
757
+ }
758
+ ],
759
+ "id": 11670,
760
+ "name": "ParameterList",
761
+ "src": "364:6:46"
762
+ }
763
+ ],
764
+ "id": 11671,
765
+ "name": "FunctionDefinition",
766
+ "src": "305:66:46"
767
+ },
768
+ {
769
+ "attributes": {
770
+ "functionSelector": "6c19e783",
771
+ "implemented": false,
772
+ "isConstructor": false,
773
+ "kind": "function",
774
+ "modifiers": [
775
+ null
776
+ ],
777
+ "name": "setSigner",
778
+ "scope": 11677,
779
+ "stateMutability": "nonpayable",
780
+ "virtual": false,
781
+ "visibility": "external"
782
+ },
783
+ "children": [
784
+ {
785
+ "children": [
786
+ {
787
+ "attributes": {
788
+ "constant": false,
789
+ "mutability": "mutable",
790
+ "name": "_signer",
791
+ "scope": 11676,
792
+ "stateVariable": false,
793
+ "storageLocation": "default",
794
+ "type": "address",
795
+ "visibility": "internal"
796
+ },
797
+ "children": [
798
+ {
799
+ "attributes": {
800
+ "name": "address",
801
+ "stateMutability": "nonpayable",
802
+ "type": "address"
803
+ },
804
+ "id": 11672,
805
+ "name": "ElementaryTypeName",
806
+ "src": "398:7:46"
807
+ }
808
+ ],
809
+ "id": 11673,
810
+ "name": "VariableDeclaration",
811
+ "src": "398:15:46"
812
+ }
813
+ ],
814
+ "id": 11674,
815
+ "name": "ParameterList",
816
+ "src": "397:17:46"
817
+ },
818
+ {
819
+ "attributes": {
820
+ "parameters": [
821
+ null
822
+ ]
823
+ },
824
+ "children": [],
825
+ "id": 11675,
826
+ "name": "ParameterList",
827
+ "src": "423:0:46"
828
+ }
829
+ ],
830
+ "id": 11676,
831
+ "name": "FunctionDefinition",
832
+ "src": "379:45:46"
833
+ }
834
+ ],
835
+ "id": 11677,
836
+ "name": "ContractDefinition",
837
+ "src": "143:286:46"
838
+ }
839
+ ],
840
+ "id": 11678,
841
+ "name": "SourceUnit",
842
+ "src": "117:312:46"
843
+ },
844
+ "compiler": {
845
+ "name": "solc",
846
+ "version": "0.7.1+commit.f4a555be.Emscripten.clang"
847
+ },
848
+ "networks": {},
849
+ "schemaVersion": "3.4.3",
850
+ "updatedAt": "2022-06-02T10:20:22.694Z",
851
+ "devdoc": {
852
+ "kind": "dev",
853
+ "methods": {},
854
+ "version": 1
855
+ },
856
+ "userdoc": {
857
+ "kind": "user",
858
+ "methods": {},
859
+ "version": 1
860
+ }
861
+ }