@flarenetwork/flare-periphery-contract-artifacts 0.1.34 → 0.1.36
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/LICENSE +1 -1
- package/{README.root.md → README.md} +19 -16
- package/coston/README.md +7 -0
- package/coston/artifacts/contracts/IAgentOwnerRegistry.sol/IAgentOwnerRegistry.json +233 -0
- package/coston/artifacts/contracts/IAssetManager.sol/IAssetManager.json +62 -1023
- package/coston/artifacts/contracts/IAssetManagerEvents.sol/IAssetManagerEvents.json +19 -233
- package/{coston2/artifacts/contracts/ICoreVault.sol/ICoreVault.json → coston/artifacts/contracts/ICoreVaultClient.sol/ICoreVaultClient.json} +5 -24
- package/{coston2/artifacts/contracts/ICoreVaultSettings.sol/ICoreVaultSettings.json → coston/artifacts/contracts/ICoreVaultClientSettings.sol/ICoreVaultClientSettings.json} +0 -26
- package/coston/artifacts/contracts/IFdcVerification.sol/IFdcVerification.json +107 -107
- package/coston/artifacts/contracts/IWeb2JsonVerification.sol/IWeb2JsonVerification.json +1 -1
- package/coston2/README.md +7 -0
- package/coston2/artifacts/contracts/IAgentOwnerRegistry.sol/IAgentOwnerRegistry.json +233 -0
- package/coston2/artifacts/contracts/IAssetManager.sol/IAssetManager.json +62 -1023
- package/coston2/artifacts/contracts/IAssetManagerEvents.sol/IAssetManagerEvents.json +19 -233
- package/{coston/artifacts/contracts/ICoreVault.sol/ICoreVault.json → coston2/artifacts/contracts/ICoreVaultClient.sol/ICoreVaultClient.json} +5 -24
- package/{coston/artifacts/contracts/ICoreVaultSettings.sol/ICoreVaultSettings.json → coston2/artifacts/contracts/ICoreVaultClientSettings.sol/ICoreVaultClientSettings.json} +0 -26
- package/coston2/artifacts/contracts/IFdcVerification.sol/IFdcVerification.json +107 -107
- package/coston2/artifacts/contracts/IWeb2JsonVerification.sol/IWeb2JsonVerification.json +1 -1
- package/flare/README.md +7 -0
- package/flare/artifacts/contracts/IAgentOwnerRegistry.sol/IAgentOwnerRegistry.json +223 -0
- package/flare/artifacts/contracts/IFdcVerification.sol/IFdcVerification.json +107 -107
- package/flare/artifacts/contracts/IWeb2JsonVerification.sol/IWeb2JsonVerification.json +1 -1
- package/flare/artifacts/contracts/IWhitelist.sol/IWhitelist.json +47 -0
- package/package.json +22 -6
- package/songbird/README.md +7 -0
- package/songbird/artifacts/contracts/IAgentOwnerRegistry.sol/IAgentOwnerRegistry.json +223 -0
- package/songbird/artifacts/contracts/IFdcVerification.sol/IFdcVerification.json +107 -107
- package/songbird/artifacts/contracts/IWeb2JsonVerification.sol/IWeb2JsonVerification.json +1 -1
- package/songbird/artifacts/contracts/IWhitelist.sol/IWhitelist.json +47 -0
- package/coston/artifacts/contracts/ITransferFees.sol/ITransferFees.json +0 -394
- package/coston2/artifacts/contracts/ITransferFees.sol/ITransferFees.json +0 -394
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"anonymous": false,
|
|
4
|
+
"inputs": [
|
|
5
|
+
{
|
|
6
|
+
"indexed": true,
|
|
7
|
+
"internalType": "address",
|
|
8
|
+
"name": "managementAddress",
|
|
9
|
+
"type": "address"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"indexed": false,
|
|
13
|
+
"internalType": "string",
|
|
14
|
+
"name": "name",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"indexed": false,
|
|
19
|
+
"internalType": "string",
|
|
20
|
+
"name": "description",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"indexed": false,
|
|
25
|
+
"internalType": "string",
|
|
26
|
+
"name": "iconUrl",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"indexed": false,
|
|
31
|
+
"internalType": "string",
|
|
32
|
+
"name": "termsOfUseUrl",
|
|
33
|
+
"type": "string"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "AgentDataChanged",
|
|
37
|
+
"type": "event"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"anonymous": false,
|
|
41
|
+
"inputs": [
|
|
42
|
+
{
|
|
43
|
+
"indexed": false,
|
|
44
|
+
"internalType": "address",
|
|
45
|
+
"name": "value",
|
|
46
|
+
"type": "address"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"name": "Whitelisted",
|
|
50
|
+
"type": "event"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"anonymous": false,
|
|
54
|
+
"inputs": [
|
|
55
|
+
{
|
|
56
|
+
"indexed": false,
|
|
57
|
+
"internalType": "address",
|
|
58
|
+
"name": "value",
|
|
59
|
+
"type": "address"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"name": "WhitelistingRevoked",
|
|
63
|
+
"type": "event"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"anonymous": false,
|
|
67
|
+
"inputs": [
|
|
68
|
+
{
|
|
69
|
+
"indexed": true,
|
|
70
|
+
"internalType": "address",
|
|
71
|
+
"name": "managementAddress",
|
|
72
|
+
"type": "address"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"indexed": false,
|
|
76
|
+
"internalType": "address",
|
|
77
|
+
"name": "prevWorkAddress",
|
|
78
|
+
"type": "address"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"indexed": false,
|
|
82
|
+
"internalType": "address",
|
|
83
|
+
"name": "workAddress",
|
|
84
|
+
"type": "address"
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
"name": "WorkAddressChanged",
|
|
88
|
+
"type": "event"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"inputs": [
|
|
92
|
+
{
|
|
93
|
+
"internalType": "address",
|
|
94
|
+
"name": "_managementAddress",
|
|
95
|
+
"type": "address"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"name": "getAgentDescription",
|
|
99
|
+
"outputs": [
|
|
100
|
+
{
|
|
101
|
+
"internalType": "string",
|
|
102
|
+
"name": "",
|
|
103
|
+
"type": "string"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"stateMutability": "view",
|
|
107
|
+
"type": "function"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"inputs": [
|
|
111
|
+
{
|
|
112
|
+
"internalType": "address",
|
|
113
|
+
"name": "_managementAddress",
|
|
114
|
+
"type": "address"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"name": "getAgentIconUrl",
|
|
118
|
+
"outputs": [
|
|
119
|
+
{
|
|
120
|
+
"internalType": "string",
|
|
121
|
+
"name": "",
|
|
122
|
+
"type": "string"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"stateMutability": "view",
|
|
126
|
+
"type": "function"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"inputs": [
|
|
130
|
+
{
|
|
131
|
+
"internalType": "address",
|
|
132
|
+
"name": "_managementAddress",
|
|
133
|
+
"type": "address"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"name": "getAgentName",
|
|
137
|
+
"outputs": [
|
|
138
|
+
{
|
|
139
|
+
"internalType": "string",
|
|
140
|
+
"name": "",
|
|
141
|
+
"type": "string"
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"stateMutability": "view",
|
|
145
|
+
"type": "function"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"inputs": [
|
|
149
|
+
{
|
|
150
|
+
"internalType": "address",
|
|
151
|
+
"name": "_managementAddress",
|
|
152
|
+
"type": "address"
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"name": "getAgentTermsOfUseUrl",
|
|
156
|
+
"outputs": [
|
|
157
|
+
{
|
|
158
|
+
"internalType": "string",
|
|
159
|
+
"name": "",
|
|
160
|
+
"type": "string"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"stateMutability": "view",
|
|
164
|
+
"type": "function"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"inputs": [
|
|
168
|
+
{
|
|
169
|
+
"internalType": "address",
|
|
170
|
+
"name": "_workAddress",
|
|
171
|
+
"type": "address"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"name": "getManagementAddress",
|
|
175
|
+
"outputs": [
|
|
176
|
+
{
|
|
177
|
+
"internalType": "address",
|
|
178
|
+
"name": "",
|
|
179
|
+
"type": "address"
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"stateMutability": "view",
|
|
183
|
+
"type": "function"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"inputs": [
|
|
187
|
+
{
|
|
188
|
+
"internalType": "address",
|
|
189
|
+
"name": "_managementAddress",
|
|
190
|
+
"type": "address"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"name": "getWorkAddress",
|
|
194
|
+
"outputs": [
|
|
195
|
+
{
|
|
196
|
+
"internalType": "address",
|
|
197
|
+
"name": "",
|
|
198
|
+
"type": "address"
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
"stateMutability": "view",
|
|
202
|
+
"type": "function"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"inputs": [
|
|
206
|
+
{
|
|
207
|
+
"internalType": "address",
|
|
208
|
+
"name": "_address",
|
|
209
|
+
"type": "address"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"name": "isWhitelisted",
|
|
213
|
+
"outputs": [
|
|
214
|
+
{
|
|
215
|
+
"internalType": "bool",
|
|
216
|
+
"name": "",
|
|
217
|
+
"type": "bool"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"stateMutability": "view",
|
|
221
|
+
"type": "function"
|
|
222
|
+
}
|
|
223
|
+
]
|
|
@@ -475,113 +475,6 @@
|
|
|
475
475
|
"stateMutability": "view",
|
|
476
476
|
"type": "function"
|
|
477
477
|
},
|
|
478
|
-
{
|
|
479
|
-
"inputs": [
|
|
480
|
-
{
|
|
481
|
-
"components": [
|
|
482
|
-
{
|
|
483
|
-
"internalType": "bytes32[]",
|
|
484
|
-
"name": "merkleProof",
|
|
485
|
-
"type": "bytes32[]"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"components": [
|
|
489
|
-
{
|
|
490
|
-
"internalType": "bytes32",
|
|
491
|
-
"name": "attestationType",
|
|
492
|
-
"type": "bytes32"
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
"internalType": "bytes32",
|
|
496
|
-
"name": "sourceId",
|
|
497
|
-
"type": "bytes32"
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"internalType": "uint64",
|
|
501
|
-
"name": "votingRound",
|
|
502
|
-
"type": "uint64"
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
"internalType": "uint64",
|
|
506
|
-
"name": "lowestUsedTimestamp",
|
|
507
|
-
"type": "uint64"
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"components": [
|
|
511
|
-
{
|
|
512
|
-
"internalType": "string",
|
|
513
|
-
"name": "url",
|
|
514
|
-
"type": "string"
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"internalType": "string",
|
|
518
|
-
"name": "httpMethod",
|
|
519
|
-
"type": "string"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"internalType": "string",
|
|
523
|
-
"name": "headers",
|
|
524
|
-
"type": "string"
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
"internalType": "string",
|
|
528
|
-
"name": "queryParams",
|
|
529
|
-
"type": "string"
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"internalType": "string",
|
|
533
|
-
"name": "body",
|
|
534
|
-
"type": "string"
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
"internalType": "string",
|
|
538
|
-
"name": "postProcessJq",
|
|
539
|
-
"type": "string"
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"internalType": "string",
|
|
543
|
-
"name": "abiSignature",
|
|
544
|
-
"type": "string"
|
|
545
|
-
}
|
|
546
|
-
],
|
|
547
|
-
"internalType": "struct IWeb2Json.RequestBody",
|
|
548
|
-
"name": "requestBody",
|
|
549
|
-
"type": "tuple"
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
"components": [
|
|
553
|
-
{
|
|
554
|
-
"internalType": "bytes",
|
|
555
|
-
"name": "abiEncodedData",
|
|
556
|
-
"type": "bytes"
|
|
557
|
-
}
|
|
558
|
-
],
|
|
559
|
-
"internalType": "struct IWeb2Json.ResponseBody",
|
|
560
|
-
"name": "responseBody",
|
|
561
|
-
"type": "tuple"
|
|
562
|
-
}
|
|
563
|
-
],
|
|
564
|
-
"internalType": "struct IWeb2Json.Response",
|
|
565
|
-
"name": "data",
|
|
566
|
-
"type": "tuple"
|
|
567
|
-
}
|
|
568
|
-
],
|
|
569
|
-
"internalType": "struct IWeb2Json.Proof",
|
|
570
|
-
"name": "_proof",
|
|
571
|
-
"type": "tuple"
|
|
572
|
-
}
|
|
573
|
-
],
|
|
574
|
-
"name": "verifyJsonApi",
|
|
575
|
-
"outputs": [
|
|
576
|
-
{
|
|
577
|
-
"internalType": "bool",
|
|
578
|
-
"name": "_proved",
|
|
579
|
-
"type": "bool"
|
|
580
|
-
}
|
|
581
|
-
],
|
|
582
|
-
"stateMutability": "view",
|
|
583
|
-
"type": "function"
|
|
584
|
-
},
|
|
585
478
|
{
|
|
586
479
|
"inputs": [
|
|
587
480
|
{
|
|
@@ -850,5 +743,112 @@
|
|
|
850
743
|
],
|
|
851
744
|
"stateMutability": "view",
|
|
852
745
|
"type": "function"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"inputs": [
|
|
749
|
+
{
|
|
750
|
+
"components": [
|
|
751
|
+
{
|
|
752
|
+
"internalType": "bytes32[]",
|
|
753
|
+
"name": "merkleProof",
|
|
754
|
+
"type": "bytes32[]"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"components": [
|
|
758
|
+
{
|
|
759
|
+
"internalType": "bytes32",
|
|
760
|
+
"name": "attestationType",
|
|
761
|
+
"type": "bytes32"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"internalType": "bytes32",
|
|
765
|
+
"name": "sourceId",
|
|
766
|
+
"type": "bytes32"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"internalType": "uint64",
|
|
770
|
+
"name": "votingRound",
|
|
771
|
+
"type": "uint64"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"internalType": "uint64",
|
|
775
|
+
"name": "lowestUsedTimestamp",
|
|
776
|
+
"type": "uint64"
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"components": [
|
|
780
|
+
{
|
|
781
|
+
"internalType": "string",
|
|
782
|
+
"name": "url",
|
|
783
|
+
"type": "string"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"internalType": "string",
|
|
787
|
+
"name": "httpMethod",
|
|
788
|
+
"type": "string"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"internalType": "string",
|
|
792
|
+
"name": "headers",
|
|
793
|
+
"type": "string"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"internalType": "string",
|
|
797
|
+
"name": "queryParams",
|
|
798
|
+
"type": "string"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"internalType": "string",
|
|
802
|
+
"name": "body",
|
|
803
|
+
"type": "string"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"internalType": "string",
|
|
807
|
+
"name": "postProcessJq",
|
|
808
|
+
"type": "string"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"internalType": "string",
|
|
812
|
+
"name": "abiSignature",
|
|
813
|
+
"type": "string"
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"internalType": "struct IWeb2Json.RequestBody",
|
|
817
|
+
"name": "requestBody",
|
|
818
|
+
"type": "tuple"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"components": [
|
|
822
|
+
{
|
|
823
|
+
"internalType": "bytes",
|
|
824
|
+
"name": "abiEncodedData",
|
|
825
|
+
"type": "bytes"
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"internalType": "struct IWeb2Json.ResponseBody",
|
|
829
|
+
"name": "responseBody",
|
|
830
|
+
"type": "tuple"
|
|
831
|
+
}
|
|
832
|
+
],
|
|
833
|
+
"internalType": "struct IWeb2Json.Response",
|
|
834
|
+
"name": "data",
|
|
835
|
+
"type": "tuple"
|
|
836
|
+
}
|
|
837
|
+
],
|
|
838
|
+
"internalType": "struct IWeb2Json.Proof",
|
|
839
|
+
"name": "_proof",
|
|
840
|
+
"type": "tuple"
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
"name": "verifyWeb2Json",
|
|
844
|
+
"outputs": [
|
|
845
|
+
{
|
|
846
|
+
"internalType": "bool",
|
|
847
|
+
"name": "_proved",
|
|
848
|
+
"type": "bool"
|
|
849
|
+
}
|
|
850
|
+
],
|
|
851
|
+
"stateMutability": "view",
|
|
852
|
+
"type": "function"
|
|
853
853
|
}
|
|
854
854
|
]
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"anonymous": false,
|
|
4
|
+
"inputs": [
|
|
5
|
+
{
|
|
6
|
+
"indexed": false,
|
|
7
|
+
"internalType": "address",
|
|
8
|
+
"name": "value",
|
|
9
|
+
"type": "address"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"name": "Whitelisted",
|
|
13
|
+
"type": "event"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"anonymous": false,
|
|
17
|
+
"inputs": [
|
|
18
|
+
{
|
|
19
|
+
"indexed": false,
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "value",
|
|
22
|
+
"type": "address"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"name": "WhitelistingRevoked",
|
|
26
|
+
"type": "event"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"inputs": [
|
|
30
|
+
{
|
|
31
|
+
"internalType": "address",
|
|
32
|
+
"name": "_address",
|
|
33
|
+
"type": "address"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "isWhitelisted",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"internalType": "bool",
|
|
40
|
+
"name": "",
|
|
41
|
+
"type": "bool"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"stateMutability": "view",
|
|
45
|
+
"type": "function"
|
|
46
|
+
}
|
|
47
|
+
]
|