@show-karma/karma-gap-sdk 0.4.15 → 0.4.16

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.
Files changed (188) hide show
  1. package/.cursorrules +43 -0
  2. package/core/abi/AirdropNFT.json +1 -1
  3. package/core/abi/Allo.json +860 -860
  4. package/core/abi/AlloRegistry.json +578 -578
  5. package/core/abi/CommunityResolverABI.json +506 -506
  6. package/core/abi/Donations.json +251 -251
  7. package/core/abi/EAS.json +1 -1
  8. package/core/abi/MultiAttester.json +746 -746
  9. package/core/abi/ProjectResolver.json +574 -574
  10. package/core/abi/SchemaRegistry.json +1 -1
  11. package/core/abi/index.ts +21 -0
  12. package/core/class/AllGapSchemas.ts +21 -0
  13. package/core/class/Attestation.ts +429 -0
  14. package/core/class/Fetcher.ts +224 -0
  15. package/core/class/GAP.ts +481 -0
  16. package/core/class/GapSchema.ts +93 -0
  17. package/core/class/Gelato/{Gelato.js → Gelato.ts} +23 -0
  18. package/core/class/GrantProgramRegistry/Allo.ts +188 -0
  19. package/core/class/GrantProgramRegistry/AlloRegistry.ts +101 -0
  20. package/core/class/GraphQL/AxiosGQL.ts +29 -0
  21. package/core/class/GraphQL/EASClient.ts +34 -0
  22. package/core/class/GraphQL/GapEasClient.ts +869 -0
  23. package/core/class/Schema.ts +659 -0
  24. package/core/class/SchemaError.ts +42 -0
  25. package/core/class/contract/GapContract.ts +457 -0
  26. package/core/class/entities/Community.ts +148 -0
  27. package/core/class/entities/ContributorProfile.ts +108 -0
  28. package/core/class/entities/Grant.ts +321 -0
  29. package/core/class/entities/GrantUpdate.ts +187 -0
  30. package/core/class/entities/MemberOf.ts +52 -0
  31. package/core/class/entities/Milestone.ts +898 -0
  32. package/core/class/entities/Project.ts +672 -0
  33. package/core/class/entities/ProjectImpact.ts +170 -0
  34. package/core/class/entities/ProjectMilestone.ts +254 -0
  35. package/core/class/entities/ProjectPointer.ts +39 -0
  36. package/core/class/entities/ProjectUpdate.ts +176 -0
  37. package/core/class/entities/Track.ts +32 -0
  38. package/core/class/karma-indexer/GapIndexerClient.ts +383 -0
  39. package/core/class/karma-indexer/api/GapIndexerApi.ts +446 -0
  40. package/core/class/karma-indexer/api/types.ts +313 -0
  41. package/core/class/remote-storage/IpfsStorage.ts +76 -0
  42. package/core/class/remote-storage/RemoteStorage.ts +65 -0
  43. package/core/class/types/allo.ts +93 -0
  44. package/core/class/types/attestations.ts +223 -0
  45. package/core/consts.ts +775 -0
  46. package/core/scripts/create-grant.ts +102 -0
  47. package/core/scripts/create-program.ts +43 -0
  48. package/core/scripts/create-schemas.ts +65 -0
  49. package/core/scripts/deploy.ts +65 -0
  50. package/core/scripts/index.ts +1 -0
  51. package/core/scripts/milestone-multi-grants.ts +125 -0
  52. package/core/shared/types.ts +13 -0
  53. package/core/types.ts +224 -0
  54. package/core/utils/gelato/send-gelato-txn.ts +114 -0
  55. package/core/utils/gelato/sponsor-handler.ts +77 -0
  56. package/core/utils/gelato/watch-gelato-txn.ts +67 -0
  57. package/core/utils/get-date.ts +3 -0
  58. package/core/utils/get-ipfs-data.ts +13 -0
  59. package/core/utils/get-web3-provider.ts +18 -0
  60. package/core/utils/gql-queries.ts +133 -0
  61. package/core/utils/map-filter.ts +21 -0
  62. package/core/utils/serialize-bigint.ts +7 -0
  63. package/core/utils/to-unix.ts +18 -0
  64. package/create-community-example.ts +119 -0
  65. package/csv-upload/README.md +74 -0
  66. package/csv-upload/config.ts +41 -0
  67. package/csv-upload/example.csv +2 -0
  68. package/csv-upload/keys.example.json +8 -0
  69. package/csv-upload/scripts/run.ts +417 -0
  70. package/csv-upload/types.ts +39 -0
  71. package/docs/.gitkeep +0 -0
  72. package/docs/images/attestation-architecture.png +0 -0
  73. package/docs/images/dfd-get-projects.png +0 -0
  74. package/gap-schema.yaml +155 -0
  75. package/milestone-workflow-example.ts +353 -0
  76. package/package.json +45 -39
  77. package/readme.md +872 -0
  78. package/schemas/.gitkeep +0 -0
  79. package/schemas/GAP-schemas-1692135812877.json +33 -0
  80. package/test-file-indexer-api.ts +25 -0
  81. package/tsconfig.json +26 -0
  82. package/core/abi/index.d.ts +0 -1114
  83. package/core/abi/index.js +0 -26
  84. package/core/class/AllGapSchemas.d.ts +0 -9
  85. package/core/class/AllGapSchemas.js +0 -19
  86. package/core/class/Attestation.d.ts +0 -173
  87. package/core/class/Attestation.js +0 -333
  88. package/core/class/Fetcher.d.ts +0 -175
  89. package/core/class/Fetcher.js +0 -13
  90. package/core/class/GAP.d.ts +0 -254
  91. package/core/class/GAP.js +0 -289
  92. package/core/class/GapSchema.d.ts +0 -34
  93. package/core/class/GapSchema.js +0 -62
  94. package/core/class/GrantProgramRegistry/Allo.d.ts +0 -17
  95. package/core/class/GrantProgramRegistry/Allo.js +0 -137
  96. package/core/class/GrantProgramRegistry/AlloRegistry.d.ts +0 -15
  97. package/core/class/GrantProgramRegistry/AlloRegistry.js +0 -70
  98. package/core/class/GraphQL/AxiosGQL.d.ts +0 -6
  99. package/core/class/GraphQL/AxiosGQL.js +0 -25
  100. package/core/class/GraphQL/EASClient.d.ts +0 -16
  101. package/core/class/GraphQL/EASClient.js +0 -26
  102. package/core/class/GraphQL/GapEasClient.d.ts +0 -71
  103. package/core/class/GraphQL/GapEasClient.js +0 -451
  104. package/core/class/GraphQL/index.js +0 -19
  105. package/core/class/Schema.d.ts +0 -233
  106. package/core/class/Schema.js +0 -488
  107. package/core/class/SchemaError.d.ts +0 -30
  108. package/core/class/SchemaError.js +0 -39
  109. package/core/class/contract/GapContract.d.ts +0 -102
  110. package/core/class/contract/GapContract.js +0 -285
  111. package/core/class/entities/Community.d.ts +0 -34
  112. package/core/class/entities/Community.js +0 -109
  113. package/core/class/entities/ContributorProfile.d.ts +0 -41
  114. package/core/class/entities/ContributorProfile.js +0 -69
  115. package/core/class/entities/Grant.d.ts +0 -54
  116. package/core/class/entities/Grant.js +0 -223
  117. package/core/class/entities/GrantUpdate.d.ts +0 -40
  118. package/core/class/entities/GrantUpdate.js +0 -114
  119. package/core/class/entities/MemberOf.d.ts +0 -11
  120. package/core/class/entities/MemberOf.js +0 -33
  121. package/core/class/entities/Milestone.d.ts +0 -168
  122. package/core/class/entities/Milestone.js +0 -657
  123. package/core/class/entities/Project.d.ts +0 -92
  124. package/core/class/entities/Project.js +0 -418
  125. package/core/class/entities/ProjectImpact.d.ts +0 -50
  126. package/core/class/entities/ProjectImpact.js +0 -112
  127. package/core/class/entities/ProjectMilestone.d.ts +0 -60
  128. package/core/class/entities/ProjectMilestone.js +0 -174
  129. package/core/class/entities/ProjectPointer.d.ts +0 -12
  130. package/core/class/entities/ProjectPointer.js +0 -22
  131. package/core/class/entities/ProjectUpdate.d.ts +0 -50
  132. package/core/class/entities/ProjectUpdate.js +0 -110
  133. package/core/class/entities/Track.d.ts +0 -16
  134. package/core/class/entities/Track.js +0 -21
  135. package/core/class/entities/index.js +0 -26
  136. package/core/class/index.js +0 -26
  137. package/core/class/karma-indexer/GapIndexerClient.d.ts +0 -66
  138. package/core/class/karma-indexer/GapIndexerClient.js +0 -207
  139. package/core/class/karma-indexer/api/GapIndexerApi.d.ts +0 -73
  140. package/core/class/karma-indexer/api/GapIndexerApi.js +0 -256
  141. package/core/class/karma-indexer/api/types.d.ts +0 -295
  142. package/core/class/karma-indexer/api/types.js +0 -2
  143. package/core/class/remote-storage/IpfsStorage.d.ts +0 -23
  144. package/core/class/remote-storage/IpfsStorage.js +0 -56
  145. package/core/class/remote-storage/RemoteStorage.d.ts +0 -41
  146. package/core/class/remote-storage/RemoteStorage.js +0 -38
  147. package/core/class/types/allo.d.ts +0 -78
  148. package/core/class/types/allo.js +0 -2
  149. package/core/class/types/attestations.d.ts +0 -168
  150. package/core/class/types/attestations.js +0 -66
  151. package/core/consts.d.ts +0 -48
  152. package/core/consts.js +0 -641
  153. package/core/index.js +0 -24
  154. package/core/shared/types.d.ts +0 -6
  155. package/core/shared/types.js +0 -2
  156. package/core/types.d.ts +0 -131
  157. package/core/types.js +0 -13
  158. package/core/utils/gelato/index.js +0 -19
  159. package/core/utils/gelato/send-gelato-txn.d.ts +0 -55
  160. package/core/utils/gelato/send-gelato-txn.js +0 -100
  161. package/core/utils/gelato/sponsor-handler.d.ts +0 -9
  162. package/core/utils/gelato/sponsor-handler.js +0 -60
  163. package/core/utils/gelato/watch-gelato-txn.d.ts +0 -7
  164. package/core/utils/gelato/watch-gelato-txn.js +0 -63
  165. package/core/utils/get-date.d.ts +0 -1
  166. package/core/utils/get-date.js +0 -7
  167. package/core/utils/get-ipfs-data.d.ts +0 -1
  168. package/core/utils/get-ipfs-data.js +0 -20
  169. package/core/utils/get-web3-provider.d.ts +0 -2
  170. package/core/utils/get-web3-provider.js +0 -18
  171. package/core/utils/gql-queries.d.ts +0 -12
  172. package/core/utils/gql-queries.js +0 -90
  173. package/core/utils/index.js +0 -23
  174. package/core/utils/map-filter.d.ts +0 -8
  175. package/core/utils/map-filter.js +0 -20
  176. package/core/utils/serialize-bigint.d.ts +0 -1
  177. package/core/utils/serialize-bigint.js +0 -8
  178. package/core/utils/to-unix.d.ts +0 -1
  179. package/core/utils/to-unix.js +0 -25
  180. package/index.js +0 -17
  181. /package/core/class/GraphQL/{index.d.ts → index.ts} +0 -0
  182. /package/core/class/entities/{index.d.ts → index.ts} +0 -0
  183. /package/core/class/{index.d.ts → index.ts} +0 -0
  184. /package/core/{index.d.ts → index.ts} +0 -0
  185. /package/core/utils/gelato/{index.d.ts → index.ts} +0 -0
  186. /package/core/utils/{index.d.ts → index.ts} +0 -0
  187. /package/{core/class/Gelato/Gelato.d.ts → csv-upload/.gitkeep} +0 -0
  188. /package/{index.d.ts → index.ts} +0 -0
@@ -1,821 +1,821 @@
1
1
  [
2
2
  {
3
- "inputs": [],
4
- "stateMutability": "nonpayable",
5
- "type": "constructor"
3
+ "inputs": [],
4
+ "stateMutability": "nonpayable",
5
+ "type": "constructor"
6
6
  },
7
7
  {
8
- "anonymous": false,
9
- "inputs": [],
10
- "name": "EIP712DomainChanged",
11
- "type": "event"
8
+ "anonymous": false,
9
+ "inputs": [],
10
+ "name": "EIP712DomainChanged",
11
+ "type": "event"
12
12
  },
13
13
  {
14
- "anonymous": false,
15
- "inputs": [
16
- {
17
- "indexed": true,
18
- "internalType": "address",
19
- "name": "attester",
20
- "type": "address"
21
- },
22
- {
23
- "indexed": false,
24
- "internalType": "bytes32",
25
- "name": "uid",
26
- "type": "bytes32"
27
- }
28
- ],
29
- "name": "GapAttested",
30
- "type": "event"
14
+ "anonymous": false,
15
+ "inputs": [
16
+ {
17
+ "indexed": true,
18
+ "internalType": "address",
19
+ "name": "attester",
20
+ "type": "address"
21
+ },
22
+ {
23
+ "indexed": false,
24
+ "internalType": "bytes32",
25
+ "name": "uid",
26
+ "type": "bytes32"
27
+ }
28
+ ],
29
+ "name": "GapAttested",
30
+ "type": "event"
31
31
  },
32
32
  {
33
- "anonymous": false,
34
- "inputs": [
35
- {
36
- "indexed": false,
37
- "internalType": "uint8",
38
- "name": "version",
39
- "type": "uint8"
40
- }
41
- ],
42
- "name": "Initialized",
43
- "type": "event"
33
+ "anonymous": false,
34
+ "inputs": [
35
+ {
36
+ "indexed": false,
37
+ "internalType": "uint8",
38
+ "name": "version",
39
+ "type": "uint8"
40
+ }
41
+ ],
42
+ "name": "Initialized",
43
+ "type": "event"
44
44
  },
45
45
  {
46
- "anonymous": false,
47
- "inputs": [
48
- {
49
- "indexed": true,
50
- "internalType": "address",
51
- "name": "previousOwner",
52
- "type": "address"
53
- },
54
- {
55
- "indexed": true,
56
- "internalType": "address",
57
- "name": "newOwner",
58
- "type": "address"
59
- }
60
- ],
61
- "name": "OwnershipTransferred",
62
- "type": "event"
46
+ "anonymous": false,
47
+ "inputs": [
48
+ {
49
+ "indexed": true,
50
+ "internalType": "address",
51
+ "name": "previousOwner",
52
+ "type": "address"
53
+ },
54
+ {
55
+ "indexed": true,
56
+ "internalType": "address",
57
+ "name": "newOwner",
58
+ "type": "address"
59
+ }
60
+ ],
61
+ "name": "OwnershipTransferred",
62
+ "type": "event"
63
63
  },
64
64
  {
65
- "inputs": [],
66
- "name": "ATTEST_TYPEHASH",
67
- "outputs": [
68
- {
69
- "internalType": "bytes32",
70
- "name": "",
71
- "type": "bytes32"
72
- }
73
- ],
74
- "stateMutability": "view",
75
- "type": "function"
65
+ "inputs": [],
66
+ "name": "ATTEST_TYPEHASH",
67
+ "outputs": [
68
+ {
69
+ "internalType": "bytes32",
70
+ "name": "",
71
+ "type": "bytes32"
72
+ }
73
+ ],
74
+ "stateMutability": "view",
75
+ "type": "function"
76
76
  },
77
77
  {
78
- "inputs": [],
79
- "name": "_grantSchemaUid",
80
- "outputs": [
81
- {
82
- "internalType": "bytes32",
83
- "name": "",
84
- "type": "bytes32"
85
- }
86
- ],
87
- "stateMutability": "view",
88
- "type": "function"
78
+ "inputs": [],
79
+ "name": "_grantSchemaUid",
80
+ "outputs": [
81
+ {
82
+ "internalType": "bytes32",
83
+ "name": "",
84
+ "type": "bytes32"
85
+ }
86
+ ],
87
+ "stateMutability": "view",
88
+ "type": "function"
89
89
  },
90
90
  {
91
- "inputs": [],
92
- "name": "_projectResolver",
93
- "outputs": [
94
- {
95
- "internalType": "contract IProjectResolver",
96
- "name": "",
97
- "type": "address"
98
- }
99
- ],
100
- "stateMutability": "view",
101
- "type": "function"
91
+ "inputs": [],
92
+ "name": "_projectResolver",
93
+ "outputs": [
94
+ {
95
+ "internalType": "contract IProjectResolver",
96
+ "name": "",
97
+ "type": "address"
98
+ }
99
+ ],
100
+ "stateMutability": "view",
101
+ "type": "function"
102
102
  },
103
103
  {
104
- "inputs": [],
105
- "name": "_projectSchemaUid",
106
- "outputs": [
107
- {
108
- "internalType": "bytes32",
109
- "name": "",
110
- "type": "bytes32"
111
- }
112
- ],
113
- "stateMutability": "view",
114
- "type": "function"
104
+ "inputs": [],
105
+ "name": "_projectSchemaUid",
106
+ "outputs": [
107
+ {
108
+ "internalType": "bytes32",
109
+ "name": "",
110
+ "type": "bytes32"
111
+ }
112
+ ],
113
+ "stateMutability": "view",
114
+ "type": "function"
115
115
  },
116
116
  {
117
- "inputs": [
118
- {
119
- "internalType": "bytes32",
120
- "name": "projectUid",
121
- "type": "bytes32"
122
- },
123
- {
124
- "internalType": "address",
125
- "name": "addr",
126
- "type": "address"
127
- }
128
- ],
129
- "name": "addProjectAdmin",
130
- "outputs": [],
131
- "stateMutability": "nonpayable",
132
- "type": "function"
117
+ "inputs": [
118
+ {
119
+ "internalType": "bytes32",
120
+ "name": "projectUid",
121
+ "type": "bytes32"
122
+ },
123
+ {
124
+ "internalType": "address",
125
+ "name": "addr",
126
+ "type": "address"
127
+ }
128
+ ],
129
+ "name": "addProjectAdmin",
130
+ "outputs": [],
131
+ "stateMutability": "nonpayable",
132
+ "type": "function"
133
133
  },
134
134
  {
135
- "inputs": [
136
- {
137
- "components": [
138
- {
139
- "internalType": "bytes32",
140
- "name": "schema",
141
- "type": "bytes32"
142
- },
143
- {
144
- "components": [
145
- {
146
- "internalType": "address",
147
- "name": "recipient",
148
- "type": "address"
149
- },
150
- {
151
- "internalType": "uint64",
152
- "name": "expirationTime",
153
- "type": "uint64"
154
- },
155
- {
156
- "internalType": "bool",
157
- "name": "revocable",
158
- "type": "bool"
159
- },
160
- {
161
- "internalType": "bytes32",
162
- "name": "refUID",
163
- "type": "bytes32"
164
- },
165
- {
166
- "internalType": "bytes",
167
- "name": "data",
168
- "type": "bytes"
169
- },
170
- {
171
- "internalType": "uint256",
172
- "name": "value",
173
- "type": "uint256"
174
- }
175
- ],
176
- "internalType": "struct AttestationRequestData",
177
- "name": "data",
178
- "type": "tuple"
179
- }
180
- ],
181
- "internalType": "struct AttestationRequest",
182
- "name": "request",
183
- "type": "tuple"
184
- }
185
- ],
186
- "name": "attest",
187
- "outputs": [
188
- {
189
- "internalType": "bytes32",
190
- "name": "",
191
- "type": "bytes32"
192
- }
193
- ],
194
- "stateMutability": "payable",
195
- "type": "function"
135
+ "inputs": [
136
+ {
137
+ "components": [
138
+ {
139
+ "internalType": "bytes32",
140
+ "name": "schema",
141
+ "type": "bytes32"
142
+ },
143
+ {
144
+ "components": [
145
+ {
146
+ "internalType": "address",
147
+ "name": "recipient",
148
+ "type": "address"
149
+ },
150
+ {
151
+ "internalType": "uint64",
152
+ "name": "expirationTime",
153
+ "type": "uint64"
154
+ },
155
+ {
156
+ "internalType": "bool",
157
+ "name": "revocable",
158
+ "type": "bool"
159
+ },
160
+ {
161
+ "internalType": "bytes32",
162
+ "name": "refUID",
163
+ "type": "bytes32"
164
+ },
165
+ {
166
+ "internalType": "bytes",
167
+ "name": "data",
168
+ "type": "bytes"
169
+ },
170
+ {
171
+ "internalType": "uint256",
172
+ "name": "value",
173
+ "type": "uint256"
174
+ }
175
+ ],
176
+ "internalType": "struct AttestationRequestData",
177
+ "name": "data",
178
+ "type": "tuple"
179
+ }
180
+ ],
181
+ "internalType": "struct AttestationRequest",
182
+ "name": "request",
183
+ "type": "tuple"
184
+ }
185
+ ],
186
+ "name": "attest",
187
+ "outputs": [
188
+ {
189
+ "internalType": "bytes32",
190
+ "name": "",
191
+ "type": "bytes32"
192
+ }
193
+ ],
194
+ "stateMutability": "payable",
195
+ "type": "function"
196
196
  },
197
197
  {
198
- "inputs": [
199
- {
200
- "components": [
201
- {
202
- "internalType": "bytes32",
203
- "name": "schema",
204
- "type": "bytes32"
205
- },
206
- {
207
- "components": [
208
- {
209
- "internalType": "address",
210
- "name": "recipient",
211
- "type": "address"
212
- },
213
- {
214
- "internalType": "uint64",
215
- "name": "expirationTime",
216
- "type": "uint64"
217
- },
218
- {
219
- "internalType": "bool",
220
- "name": "revocable",
221
- "type": "bool"
222
- },
223
- {
224
- "internalType": "bytes32",
225
- "name": "refUID",
226
- "type": "bytes32"
227
- },
228
- {
229
- "internalType": "bytes",
230
- "name": "data",
231
- "type": "bytes"
232
- },
233
- {
234
- "internalType": "uint256",
235
- "name": "value",
236
- "type": "uint256"
237
- }
238
- ],
239
- "internalType": "struct AttestationRequestData",
240
- "name": "data",
241
- "type": "tuple"
242
- }
243
- ],
244
- "internalType": "struct AttestationRequest",
245
- "name": "request",
246
- "type": "tuple"
247
- },
248
- {
249
- "internalType": "string",
250
- "name": "payloadHash",
251
- "type": "string"
252
- },
253
- {
254
- "internalType": "address",
255
- "name": "attester",
256
- "type": "address"
257
- },
258
- {
259
- "internalType": "uint256",
260
- "name": "nonce",
261
- "type": "uint256"
262
- },
263
- {
264
- "internalType": "uint256",
265
- "name": "expiry",
266
- "type": "uint256"
267
- },
268
- {
269
- "internalType": "uint8",
270
- "name": "v",
271
- "type": "uint8"
272
- },
273
- {
274
- "internalType": "bytes32",
275
- "name": "r",
276
- "type": "bytes32"
277
- },
278
- {
279
- "internalType": "bytes32",
280
- "name": "s",
281
- "type": "bytes32"
282
- }
283
- ],
284
- "name": "attestBySig",
285
- "outputs": [
286
- {
287
- "internalType": "bytes32",
288
- "name": "",
289
- "type": "bytes32"
290
- }
291
- ],
292
- "stateMutability": "nonpayable",
293
- "type": "function"
198
+ "inputs": [
199
+ {
200
+ "components": [
201
+ {
202
+ "internalType": "bytes32",
203
+ "name": "schema",
204
+ "type": "bytes32"
205
+ },
206
+ {
207
+ "components": [
208
+ {
209
+ "internalType": "address",
210
+ "name": "recipient",
211
+ "type": "address"
212
+ },
213
+ {
214
+ "internalType": "uint64",
215
+ "name": "expirationTime",
216
+ "type": "uint64"
217
+ },
218
+ {
219
+ "internalType": "bool",
220
+ "name": "revocable",
221
+ "type": "bool"
222
+ },
223
+ {
224
+ "internalType": "bytes32",
225
+ "name": "refUID",
226
+ "type": "bytes32"
227
+ },
228
+ {
229
+ "internalType": "bytes",
230
+ "name": "data",
231
+ "type": "bytes"
232
+ },
233
+ {
234
+ "internalType": "uint256",
235
+ "name": "value",
236
+ "type": "uint256"
237
+ }
238
+ ],
239
+ "internalType": "struct AttestationRequestData",
240
+ "name": "data",
241
+ "type": "tuple"
242
+ }
243
+ ],
244
+ "internalType": "struct AttestationRequest",
245
+ "name": "request",
246
+ "type": "tuple"
247
+ },
248
+ {
249
+ "internalType": "string",
250
+ "name": "payloadHash",
251
+ "type": "string"
252
+ },
253
+ {
254
+ "internalType": "address",
255
+ "name": "attester",
256
+ "type": "address"
257
+ },
258
+ {
259
+ "internalType": "uint256",
260
+ "name": "nonce",
261
+ "type": "uint256"
262
+ },
263
+ {
264
+ "internalType": "uint256",
265
+ "name": "expiry",
266
+ "type": "uint256"
267
+ },
268
+ {
269
+ "internalType": "uint8",
270
+ "name": "v",
271
+ "type": "uint8"
272
+ },
273
+ {
274
+ "internalType": "bytes32",
275
+ "name": "r",
276
+ "type": "bytes32"
277
+ },
278
+ {
279
+ "internalType": "bytes32",
280
+ "name": "s",
281
+ "type": "bytes32"
282
+ }
283
+ ],
284
+ "name": "attestBySig",
285
+ "outputs": [
286
+ {
287
+ "internalType": "bytes32",
288
+ "name": "",
289
+ "type": "bytes32"
290
+ }
291
+ ],
292
+ "stateMutability": "nonpayable",
293
+ "type": "function"
294
294
  },
295
295
  {
296
- "inputs": [],
297
- "name": "eas",
298
- "outputs": [
299
- {
300
- "internalType": "contract IEAS",
301
- "name": "",
302
- "type": "address"
303
- }
304
- ],
305
- "stateMutability": "view",
306
- "type": "function"
296
+ "inputs": [],
297
+ "name": "eas",
298
+ "outputs": [
299
+ {
300
+ "internalType": "contract IEAS",
301
+ "name": "",
302
+ "type": "address"
303
+ }
304
+ ],
305
+ "stateMutability": "view",
306
+ "type": "function"
307
307
  },
308
308
  {
309
- "inputs": [],
310
- "name": "eip712Domain",
311
- "outputs": [
312
- {
313
- "internalType": "bytes1",
314
- "name": "fields",
315
- "type": "bytes1"
316
- },
317
- {
318
- "internalType": "string",
319
- "name": "name",
320
- "type": "string"
321
- },
322
- {
323
- "internalType": "string",
324
- "name": "version",
325
- "type": "string"
326
- },
327
- {
328
- "internalType": "uint256",
329
- "name": "chainId",
330
- "type": "uint256"
331
- },
332
- {
333
- "internalType": "address",
334
- "name": "verifyingContract",
335
- "type": "address"
336
- },
337
- {
338
- "internalType": "bytes32",
339
- "name": "salt",
340
- "type": "bytes32"
341
- },
342
- {
343
- "internalType": "uint256[]",
344
- "name": "extensions",
345
- "type": "uint256[]"
346
- }
347
- ],
348
- "stateMutability": "view",
349
- "type": "function"
309
+ "inputs": [],
310
+ "name": "eip712Domain",
311
+ "outputs": [
312
+ {
313
+ "internalType": "bytes1",
314
+ "name": "fields",
315
+ "type": "bytes1"
316
+ },
317
+ {
318
+ "internalType": "string",
319
+ "name": "name",
320
+ "type": "string"
321
+ },
322
+ {
323
+ "internalType": "string",
324
+ "name": "version",
325
+ "type": "string"
326
+ },
327
+ {
328
+ "internalType": "uint256",
329
+ "name": "chainId",
330
+ "type": "uint256"
331
+ },
332
+ {
333
+ "internalType": "address",
334
+ "name": "verifyingContract",
335
+ "type": "address"
336
+ },
337
+ {
338
+ "internalType": "bytes32",
339
+ "name": "salt",
340
+ "type": "bytes32"
341
+ },
342
+ {
343
+ "internalType": "uint256[]",
344
+ "name": "extensions",
345
+ "type": "uint256[]"
346
+ }
347
+ ],
348
+ "stateMutability": "view",
349
+ "type": "function"
350
350
  },
351
351
  {
352
- "inputs": [
353
- {
354
- "internalType": "address",
355
- "name": "easAddr",
356
- "type": "address"
357
- }
358
- ],
359
- "name": "initialize",
360
- "outputs": [],
361
- "stateMutability": "nonpayable",
362
- "type": "function"
352
+ "inputs": [
353
+ {
354
+ "internalType": "address",
355
+ "name": "easAddr",
356
+ "type": "address"
357
+ }
358
+ ],
359
+ "name": "initialize",
360
+ "outputs": [],
361
+ "stateMutability": "nonpayable",
362
+ "type": "function"
363
363
  },
364
364
  {
365
- "inputs": [
366
- {
367
- "components": [
365
+ "inputs": [
366
+ {
367
+ "components": [
368
+ {
369
+ "internalType": "bytes32",
370
+ "name": "schema",
371
+ "type": "bytes32"
372
+ },
373
+ {
374
+ "components": [
375
+ {
376
+ "internalType": "bytes32",
377
+ "name": "uid",
378
+ "type": "bytes32"
379
+ },
380
+ {
381
+ "internalType": "uint256",
382
+ "name": "value",
383
+ "type": "uint256"
384
+ }
385
+ ],
386
+ "internalType": "struct RevocationRequestData[]",
387
+ "name": "data",
388
+ "type": "tuple[]"
389
+ }
390
+ ],
391
+ "internalType": "struct MultiRevocationRequest[]",
392
+ "name": "multiRequests",
393
+ "type": "tuple[]"
394
+ }
395
+ ],
396
+ "name": "multiRevoke",
397
+ "outputs": [],
398
+ "stateMutability": "payable",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [
403
+ {
404
+ "components": [
405
+ {
406
+ "internalType": "bytes32",
407
+ "name": "schema",
408
+ "type": "bytes32"
409
+ },
410
+ {
411
+ "components": [
412
+ {
413
+ "internalType": "bytes32",
414
+ "name": "uid",
415
+ "type": "bytes32"
416
+ },
417
+ {
418
+ "internalType": "uint256",
419
+ "name": "value",
420
+ "type": "uint256"
421
+ }
422
+ ],
423
+ "internalType": "struct RevocationRequestData[]",
424
+ "name": "data",
425
+ "type": "tuple[]"
426
+ }
427
+ ],
428
+ "internalType": "struct MultiRevocationRequest[]",
429
+ "name": "multiRequests",
430
+ "type": "tuple[]"
431
+ },
432
+ {
433
+ "internalType": "string",
434
+ "name": "payloadHash",
435
+ "type": "string"
436
+ },
437
+ {
438
+ "internalType": "address",
439
+ "name": "attester",
440
+ "type": "address"
441
+ },
442
+ {
443
+ "internalType": "uint256",
444
+ "name": "nonce",
445
+ "type": "uint256"
446
+ },
447
+ {
448
+ "internalType": "uint256",
449
+ "name": "expiry",
450
+ "type": "uint256"
451
+ },
452
+ {
453
+ "internalType": "uint8",
454
+ "name": "v",
455
+ "type": "uint8"
456
+ },
457
+ {
458
+ "internalType": "bytes32",
459
+ "name": "r",
460
+ "type": "bytes32"
461
+ },
462
+ {
463
+ "internalType": "bytes32",
464
+ "name": "s",
465
+ "type": "bytes32"
466
+ }
467
+ ],
468
+ "name": "multiRevokeBySig",
469
+ "outputs": [],
470
+ "stateMutability": "nonpayable",
471
+ "type": "function"
472
+ },
473
+ {
474
+ "inputs": [
475
+ {
476
+ "components": [
477
+ {
478
+ "internalType": "bytes32",
479
+ "name": "uid",
480
+ "type": "bytes32"
481
+ },
482
+ {
483
+ "components": [
484
+ {
485
+ "internalType": "bytes32",
486
+ "name": "schema",
487
+ "type": "bytes32"
488
+ },
489
+ {
490
+ "components": [
368
491
  {
369
- "internalType": "bytes32",
370
- "name": "schema",
371
- "type": "bytes32"
492
+ "internalType": "address",
493
+ "name": "recipient",
494
+ "type": "address"
372
495
  },
373
496
  {
374
- "components": [
375
- {
376
- "internalType": "bytes32",
377
- "name": "uid",
378
- "type": "bytes32"
379
- },
380
- {
381
- "internalType": "uint256",
382
- "name": "value",
383
- "type": "uint256"
384
- }
385
- ],
386
- "internalType": "struct RevocationRequestData[]",
387
- "name": "data",
388
- "type": "tuple[]"
389
- }
390
- ],
391
- "internalType": "struct MultiRevocationRequest[]",
392
- "name": "multiRequests",
393
- "type": "tuple[]"
394
- }
395
- ],
396
- "name": "multiRevoke",
397
- "outputs": [],
398
- "stateMutability": "payable",
399
- "type": "function"
400
- },
401
- {
402
- "inputs": [
403
- {
404
- "components": [
497
+ "internalType": "uint64",
498
+ "name": "expirationTime",
499
+ "type": "uint64"
500
+ },
405
501
  {
406
- "internalType": "bytes32",
407
- "name": "schema",
408
- "type": "bytes32"
502
+ "internalType": "bool",
503
+ "name": "revocable",
504
+ "type": "bool"
409
505
  },
410
506
  {
411
- "components": [
412
- {
413
- "internalType": "bytes32",
414
- "name": "uid",
415
- "type": "bytes32"
416
- },
417
- {
418
- "internalType": "uint256",
419
- "name": "value",
420
- "type": "uint256"
421
- }
422
- ],
423
- "internalType": "struct RevocationRequestData[]",
424
- "name": "data",
425
- "type": "tuple[]"
507
+ "internalType": "bytes32",
508
+ "name": "refUID",
509
+ "type": "bytes32"
510
+ },
511
+ {
512
+ "internalType": "bytes",
513
+ "name": "data",
514
+ "type": "bytes"
515
+ },
516
+ {
517
+ "internalType": "uint256",
518
+ "name": "value",
519
+ "type": "uint256"
426
520
  }
427
- ],
428
- "internalType": "struct MultiRevocationRequest[]",
429
- "name": "multiRequests",
430
- "type": "tuple[]"
431
- },
432
- {
433
- "internalType": "string",
434
- "name": "payloadHash",
435
- "type": "string"
436
- },
437
- {
438
- "internalType": "address",
439
- "name": "attester",
440
- "type": "address"
441
- },
442
- {
443
- "internalType": "uint256",
444
- "name": "nonce",
445
- "type": "uint256"
446
- },
447
- {
448
- "internalType": "uint256",
449
- "name": "expiry",
450
- "type": "uint256"
451
- },
452
- {
453
- "internalType": "uint8",
454
- "name": "v",
455
- "type": "uint8"
456
- },
457
- {
458
- "internalType": "bytes32",
459
- "name": "r",
460
- "type": "bytes32"
461
- },
462
- {
463
- "internalType": "bytes32",
464
- "name": "s",
465
- "type": "bytes32"
466
- }
467
- ],
468
- "name": "multiRevokeBySig",
469
- "outputs": [],
470
- "stateMutability": "nonpayable",
471
- "type": "function"
521
+ ],
522
+ "internalType": "struct AttestationRequestData[]",
523
+ "name": "data",
524
+ "type": "tuple[]"
525
+ }
526
+ ],
527
+ "internalType": "struct MultiAttestationRequest",
528
+ "name": "multiRequest",
529
+ "type": "tuple"
530
+ },
531
+ {
532
+ "internalType": "uint256",
533
+ "name": "refIdx",
534
+ "type": "uint256"
535
+ }
536
+ ],
537
+ "internalType": "struct Gap.AttestationRequestNode[]",
538
+ "name": "requestNodes",
539
+ "type": "tuple[]"
540
+ }
541
+ ],
542
+ "name": "multiSequentialAttest",
543
+ "outputs": [],
544
+ "stateMutability": "payable",
545
+ "type": "function"
472
546
  },
473
547
  {
474
- "inputs": [
475
- {
476
- "components": [
548
+ "inputs": [
549
+ {
550
+ "components": [
551
+ {
552
+ "internalType": "bytes32",
553
+ "name": "uid",
554
+ "type": "bytes32"
555
+ },
556
+ {
557
+ "components": [
558
+ {
559
+ "internalType": "bytes32",
560
+ "name": "schema",
561
+ "type": "bytes32"
562
+ },
563
+ {
564
+ "components": [
477
565
  {
478
- "internalType": "bytes32",
479
- "name": "uid",
480
- "type": "bytes32"
566
+ "internalType": "address",
567
+ "name": "recipient",
568
+ "type": "address"
481
569
  },
482
570
  {
483
- "components": [
484
- {
485
- "internalType": "bytes32",
486
- "name": "schema",
487
- "type": "bytes32"
488
- },
489
- {
490
- "components": [
491
- {
492
- "internalType": "address",
493
- "name": "recipient",
494
- "type": "address"
495
- },
496
- {
497
- "internalType": "uint64",
498
- "name": "expirationTime",
499
- "type": "uint64"
500
- },
501
- {
502
- "internalType": "bool",
503
- "name": "revocable",
504
- "type": "bool"
505
- },
506
- {
507
- "internalType": "bytes32",
508
- "name": "refUID",
509
- "type": "bytes32"
510
- },
511
- {
512
- "internalType": "bytes",
513
- "name": "data",
514
- "type": "bytes"
515
- },
516
- {
517
- "internalType": "uint256",
518
- "name": "value",
519
- "type": "uint256"
520
- }
521
- ],
522
- "internalType": "struct AttestationRequestData[]",
523
- "name": "data",
524
- "type": "tuple[]"
525
- }
526
- ],
527
- "internalType": "struct MultiAttestationRequest",
528
- "name": "multiRequest",
529
- "type": "tuple"
571
+ "internalType": "uint64",
572
+ "name": "expirationTime",
573
+ "type": "uint64"
530
574
  },
531
575
  {
532
- "internalType": "uint256",
533
- "name": "refIdx",
534
- "type": "uint256"
535
- }
536
- ],
537
- "internalType": "struct Gap.AttestationRequestNode[]",
538
- "name": "requestNodes",
539
- "type": "tuple[]"
540
- }
541
- ],
542
- "name": "multiSequentialAttest",
543
- "outputs": [],
544
- "stateMutability": "payable",
545
- "type": "function"
546
- },
547
- {
548
- "inputs": [
549
- {
550
- "components": [
576
+ "internalType": "bool",
577
+ "name": "revocable",
578
+ "type": "bool"
579
+ },
551
580
  {
552
- "internalType": "bytes32",
553
- "name": "uid",
554
- "type": "bytes32"
581
+ "internalType": "bytes32",
582
+ "name": "refUID",
583
+ "type": "bytes32"
555
584
  },
556
585
  {
557
- "components": [
558
- {
559
- "internalType": "bytes32",
560
- "name": "schema",
561
- "type": "bytes32"
562
- },
563
- {
564
- "components": [
565
- {
566
- "internalType": "address",
567
- "name": "recipient",
568
- "type": "address"
569
- },
570
- {
571
- "internalType": "uint64",
572
- "name": "expirationTime",
573
- "type": "uint64"
574
- },
575
- {
576
- "internalType": "bool",
577
- "name": "revocable",
578
- "type": "bool"
579
- },
580
- {
581
- "internalType": "bytes32",
582
- "name": "refUID",
583
- "type": "bytes32"
584
- },
585
- {
586
- "internalType": "bytes",
587
- "name": "data",
588
- "type": "bytes"
589
- },
590
- {
591
- "internalType": "uint256",
592
- "name": "value",
593
- "type": "uint256"
594
- }
595
- ],
596
- "internalType": "struct AttestationRequestData[]",
597
- "name": "data",
598
- "type": "tuple[]"
599
- }
600
- ],
601
- "internalType": "struct MultiAttestationRequest",
602
- "name": "multiRequest",
603
- "type": "tuple"
586
+ "internalType": "bytes",
587
+ "name": "data",
588
+ "type": "bytes"
604
589
  },
605
590
  {
606
- "internalType": "uint256",
607
- "name": "refIdx",
608
- "type": "uint256"
591
+ "internalType": "uint256",
592
+ "name": "value",
593
+ "type": "uint256"
609
594
  }
610
- ],
611
- "internalType": "struct Gap.AttestationRequestNode[]",
612
- "name": "requestNodes",
613
- "type": "tuple[]"
614
- },
615
- {
616
- "internalType": "string",
617
- "name": "payloadHash",
618
- "type": "string"
619
- },
620
- {
621
- "internalType": "address",
622
- "name": "attester",
623
- "type": "address"
624
- },
625
- {
626
- "internalType": "uint256",
627
- "name": "nonce",
628
- "type": "uint256"
629
- },
630
- {
631
- "internalType": "uint256",
632
- "name": "expiry",
633
- "type": "uint256"
634
- },
635
- {
636
- "internalType": "uint8",
637
- "name": "v",
638
- "type": "uint8"
639
- },
640
- {
641
- "internalType": "bytes32",
642
- "name": "r",
643
- "type": "bytes32"
644
- },
645
- {
646
- "internalType": "bytes32",
647
- "name": "s",
648
- "type": "bytes32"
649
- }
650
- ],
651
- "name": "multiSequentialAttestBySig",
652
- "outputs": [],
653
- "stateMutability": "nonpayable",
654
- "type": "function"
595
+ ],
596
+ "internalType": "struct AttestationRequestData[]",
597
+ "name": "data",
598
+ "type": "tuple[]"
599
+ }
600
+ ],
601
+ "internalType": "struct MultiAttestationRequest",
602
+ "name": "multiRequest",
603
+ "type": "tuple"
604
+ },
605
+ {
606
+ "internalType": "uint256",
607
+ "name": "refIdx",
608
+ "type": "uint256"
609
+ }
610
+ ],
611
+ "internalType": "struct Gap.AttestationRequestNode[]",
612
+ "name": "requestNodes",
613
+ "type": "tuple[]"
614
+ },
615
+ {
616
+ "internalType": "string",
617
+ "name": "payloadHash",
618
+ "type": "string"
619
+ },
620
+ {
621
+ "internalType": "address",
622
+ "name": "attester",
623
+ "type": "address"
624
+ },
625
+ {
626
+ "internalType": "uint256",
627
+ "name": "nonce",
628
+ "type": "uint256"
629
+ },
630
+ {
631
+ "internalType": "uint256",
632
+ "name": "expiry",
633
+ "type": "uint256"
634
+ },
635
+ {
636
+ "internalType": "uint8",
637
+ "name": "v",
638
+ "type": "uint8"
639
+ },
640
+ {
641
+ "internalType": "bytes32",
642
+ "name": "r",
643
+ "type": "bytes32"
644
+ },
645
+ {
646
+ "internalType": "bytes32",
647
+ "name": "s",
648
+ "type": "bytes32"
649
+ }
650
+ ],
651
+ "name": "multiSequentialAttestBySig",
652
+ "outputs": [],
653
+ "stateMutability": "nonpayable",
654
+ "type": "function"
655
655
  },
656
656
  {
657
- "inputs": [
658
- {
659
- "internalType": "address",
660
- "name": "",
661
- "type": "address"
662
- }
663
- ],
664
- "name": "nonces",
665
- "outputs": [
666
- {
667
- "internalType": "uint256",
668
- "name": "",
669
- "type": "uint256"
670
- }
671
- ],
672
- "stateMutability": "view",
673
- "type": "function"
657
+ "inputs": [
658
+ {
659
+ "internalType": "address",
660
+ "name": "",
661
+ "type": "address"
662
+ }
663
+ ],
664
+ "name": "nonces",
665
+ "outputs": [
666
+ {
667
+ "internalType": "uint256",
668
+ "name": "",
669
+ "type": "uint256"
670
+ }
671
+ ],
672
+ "stateMutability": "view",
673
+ "type": "function"
674
674
  },
675
675
  {
676
- "inputs": [],
677
- "name": "owner",
678
- "outputs": [
679
- {
680
- "internalType": "address",
681
- "name": "",
682
- "type": "address"
683
- }
684
- ],
685
- "stateMutability": "view",
686
- "type": "function"
676
+ "inputs": [],
677
+ "name": "owner",
678
+ "outputs": [
679
+ {
680
+ "internalType": "address",
681
+ "name": "",
682
+ "type": "address"
683
+ }
684
+ ],
685
+ "stateMutability": "view",
686
+ "type": "function"
687
687
  },
688
688
  {
689
- "inputs": [
690
- {
691
- "internalType": "bytes32",
692
- "name": "refSchemaUid",
693
- "type": "bytes32"
694
- }
695
- ],
696
- "name": "refIsGrant",
697
- "outputs": [
698
- {
699
- "internalType": "bool",
700
- "name": "",
701
- "type": "bool"
702
- }
703
- ],
704
- "stateMutability": "view",
705
- "type": "function"
689
+ "inputs": [
690
+ {
691
+ "internalType": "bytes32",
692
+ "name": "refSchemaUid",
693
+ "type": "bytes32"
694
+ }
695
+ ],
696
+ "name": "refIsGrant",
697
+ "outputs": [
698
+ {
699
+ "internalType": "bool",
700
+ "name": "",
701
+ "type": "bool"
702
+ }
703
+ ],
704
+ "stateMutability": "view",
705
+ "type": "function"
706
706
  },
707
707
  {
708
- "inputs": [
709
- {
710
- "internalType": "bytes32",
711
- "name": "refSchemaUid",
712
- "type": "bytes32"
713
- }
714
- ],
715
- "name": "refIsProject",
716
- "outputs": [
717
- {
718
- "internalType": "bool",
719
- "name": "",
720
- "type": "bool"
721
- }
722
- ],
723
- "stateMutability": "view",
724
- "type": "function"
708
+ "inputs": [
709
+ {
710
+ "internalType": "bytes32",
711
+ "name": "refSchemaUid",
712
+ "type": "bytes32"
713
+ }
714
+ ],
715
+ "name": "refIsProject",
716
+ "outputs": [
717
+ {
718
+ "internalType": "bool",
719
+ "name": "",
720
+ "type": "bool"
721
+ }
722
+ ],
723
+ "stateMutability": "view",
724
+ "type": "function"
725
725
  },
726
726
  {
727
- "inputs": [
728
- {
729
- "internalType": "bytes32",
730
- "name": "projectUid",
731
- "type": "bytes32"
732
- },
733
- {
734
- "internalType": "address",
735
- "name": "addr",
736
- "type": "address"
737
- }
738
- ],
739
- "name": "removeProjectAdmin",
740
- "outputs": [],
741
- "stateMutability": "nonpayable",
742
- "type": "function"
727
+ "inputs": [
728
+ {
729
+ "internalType": "bytes32",
730
+ "name": "projectUid",
731
+ "type": "bytes32"
732
+ },
733
+ {
734
+ "internalType": "address",
735
+ "name": "addr",
736
+ "type": "address"
737
+ }
738
+ ],
739
+ "name": "removeProjectAdmin",
740
+ "outputs": [],
741
+ "stateMutability": "nonpayable",
742
+ "type": "function"
743
743
  },
744
744
  {
745
- "inputs": [],
746
- "name": "renounceOwnership",
747
- "outputs": [],
748
- "stateMutability": "nonpayable",
749
- "type": "function"
745
+ "inputs": [],
746
+ "name": "renounceOwnership",
747
+ "outputs": [],
748
+ "stateMutability": "nonpayable",
749
+ "type": "function"
750
750
  },
751
751
  {
752
- "inputs": [
753
- {
754
- "internalType": "bytes32",
755
- "name": "grantSchemaUid",
756
- "type": "bytes32"
757
- }
758
- ],
759
- "name": "setGrantSchema",
760
- "outputs": [],
761
- "stateMutability": "nonpayable",
762
- "type": "function"
752
+ "inputs": [
753
+ {
754
+ "internalType": "bytes32",
755
+ "name": "grantSchemaUid",
756
+ "type": "bytes32"
757
+ }
758
+ ],
759
+ "name": "setGrantSchema",
760
+ "outputs": [],
761
+ "stateMutability": "nonpayable",
762
+ "type": "function"
763
763
  },
764
764
  {
765
- "inputs": [
766
- {
767
- "internalType": "contract IProjectResolver",
768
- "name": "projectResolver",
769
- "type": "address"
770
- }
771
- ],
772
- "name": "setProjectResolver",
773
- "outputs": [],
774
- "stateMutability": "nonpayable",
775
- "type": "function"
765
+ "inputs": [
766
+ {
767
+ "internalType": "contract IProjectResolver",
768
+ "name": "projectResolver",
769
+ "type": "address"
770
+ }
771
+ ],
772
+ "name": "setProjectResolver",
773
+ "outputs": [],
774
+ "stateMutability": "nonpayable",
775
+ "type": "function"
776
776
  },
777
777
  {
778
- "inputs": [
779
- {
780
- "internalType": "bytes32",
781
- "name": "projectSchemaUid",
782
- "type": "bytes32"
783
- }
784
- ],
785
- "name": "setProjectSchema",
786
- "outputs": [],
787
- "stateMutability": "nonpayable",
788
- "type": "function"
778
+ "inputs": [
779
+ {
780
+ "internalType": "bytes32",
781
+ "name": "projectSchemaUid",
782
+ "type": "bytes32"
783
+ }
784
+ ],
785
+ "name": "setProjectSchema",
786
+ "outputs": [],
787
+ "stateMutability": "nonpayable",
788
+ "type": "function"
789
789
  },
790
790
  {
791
- "inputs": [
792
- {
793
- "internalType": "address",
794
- "name": "newOwner",
795
- "type": "address"
796
- }
797
- ],
798
- "name": "transferOwnership",
799
- "outputs": [],
800
- "stateMutability": "nonpayable",
801
- "type": "function"
791
+ "inputs": [
792
+ {
793
+ "internalType": "address",
794
+ "name": "newOwner",
795
+ "type": "address"
796
+ }
797
+ ],
798
+ "name": "transferOwnership",
799
+ "outputs": [],
800
+ "stateMutability": "nonpayable",
801
+ "type": "function"
802
802
  },
803
803
  {
804
- "inputs": [
805
- {
806
- "internalType": "bytes32",
807
- "name": "projectUid",
808
- "type": "bytes32"
809
- },
810
- {
811
- "internalType": "address",
812
- "name": "newOwner",
813
- "type": "address"
814
- }
815
- ],
816
- "name": "transferProjectOwnership",
817
- "outputs": [],
818
- "stateMutability": "nonpayable",
819
- "type": "function"
804
+ "inputs": [
805
+ {
806
+ "internalType": "bytes32",
807
+ "name": "projectUid",
808
+ "type": "bytes32"
809
+ },
810
+ {
811
+ "internalType": "address",
812
+ "name": "newOwner",
813
+ "type": "address"
814
+ }
815
+ ],
816
+ "name": "transferProjectOwnership",
817
+ "outputs": [],
818
+ "stateMutability": "nonpayable",
819
+ "type": "function"
820
820
  }
821
- ]
821
+ ]