secure-transac-contracts 1.0.0
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/build/contracts/AccessControl.json +4579 -0
- package/build/contracts/Context.json +356 -0
- package/build/contracts/CreditSystem.json +6037 -0
- package/build/contracts/ECDSA.json +4734 -0
- package/build/contracts/EIP712.json +3021 -0
- package/build/contracts/ERC165.json +352 -0
- package/build/contracts/ERC20.json +6816 -0
- package/build/contracts/ERC20Permit.json +2658 -0
- package/build/contracts/ERC721.json +12779 -0
- package/build/contracts/ERC721Utils.json +1058 -0
- package/build/contracts/Groth16Verifier.json +6298 -0
- package/build/contracts/Guardian.json +1116 -0
- package/build/contracts/IERC1155Errors.json +1687 -0
- package/build/contracts/IERC165.json +197 -0
- package/build/contracts/IERC20.json +1162 -0
- package/build/contracts/IERC20Errors.json +1662 -0
- package/build/contracts/IERC20Metadata.json +574 -0
- package/build/contracts/IERC20Permit.json +546 -0
- package/build/contracts/IERC5267.json +392 -0
- package/build/contracts/IERC721.json +1729 -0
- package/build/contracts/IERC721Errors.json +1694 -0
- package/build/contracts/IERC721Metadata.json +728 -0
- package/build/contracts/IERC721Receiver.json +296 -0
- package/build/contracts/IGuardian.json +215 -0
- package/build/contracts/ITrustRegistry.json +6767 -0
- package/build/contracts/IdentityVault.json +11584 -0
- package/build/contracts/Math.json +23115 -0
- package/build/contracts/MessageHashUtils.json +1668 -0
- package/build/contracts/Nonces.json +865 -0
- package/build/contracts/Ownable.json +1859 -0
- package/build/contracts/Panic.json +798 -0
- package/build/contracts/ReportingSystem.json +2787 -0
- package/build/contracts/SafeCast.json +21592 -0
- package/build/contracts/ScoringSystem.json +11245 -0
- package/build/contracts/SecureTransacSBT.json +18823 -0
- package/build/contracts/SecureTransacToken.json +19225 -0
- package/build/contracts/SecureVault.json +12890 -0
- package/build/contracts/ShortStrings.json +2852 -0
- package/build/contracts/SignedMath.json +1915 -0
- package/build/contracts/StorageSlot.json +1773 -0
- package/build/contracts/Strings.json +19001 -0
- package/build/contracts/TransactionLogger.json +5325 -0
- package/build/contracts/TrustDAO.json +23850 -0
- package/build/contracts/TrustRegistry.json +10948 -0
- package/build/contracts/VerificationRegistry.json +12811 -0
- package/build/contracts/ZKIdentityVerifier.json +13979 -0
- package/contracts/AccessControl.sol +34 -0
- package/contracts/CreditSystem.sol +48 -0
- package/contracts/Guardian.sol +33 -0
- package/contracts/IGuardian.sol +7 -0
- package/contracts/IdentityVault.sol +57 -0
- package/contracts/ReportingSystem.sol +14 -0
- package/contracts/ScoringSystem.sol +71 -0
- package/contracts/SecureTransacSBT.sol +72 -0
- package/contracts/SecureTransacToken.sol +20 -0
- package/contracts/SecureVault.sol +24 -0
- package/contracts/TransactionLogger.sol +12 -0
- package/contracts/TrustDAO.sol +158 -0
- package/contracts/TrustRegistry.sol +23 -0
- package/contracts/VerificationRegistry.sol +51 -0
- package/contracts/ZKIdentityVerifier.sol +38 -0
- package/contracts/ZKScoreVerifier.sol +175 -0
- package/package.json +32 -0
|
@@ -0,0 +1,728 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contractName": "IERC721Metadata",
|
|
3
|
+
"abi": [
|
|
4
|
+
{
|
|
5
|
+
"anonymous": false,
|
|
6
|
+
"inputs": [
|
|
7
|
+
{
|
|
8
|
+
"indexed": true,
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "owner",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"indexed": true,
|
|
15
|
+
"internalType": "address",
|
|
16
|
+
"name": "approved",
|
|
17
|
+
"type": "address"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"indexed": true,
|
|
21
|
+
"internalType": "uint256",
|
|
22
|
+
"name": "tokenId",
|
|
23
|
+
"type": "uint256"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"name": "Approval",
|
|
27
|
+
"type": "event"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"anonymous": false,
|
|
31
|
+
"inputs": [
|
|
32
|
+
{
|
|
33
|
+
"indexed": true,
|
|
34
|
+
"internalType": "address",
|
|
35
|
+
"name": "owner",
|
|
36
|
+
"type": "address"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"indexed": true,
|
|
40
|
+
"internalType": "address",
|
|
41
|
+
"name": "operator",
|
|
42
|
+
"type": "address"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"indexed": false,
|
|
46
|
+
"internalType": "bool",
|
|
47
|
+
"name": "approved",
|
|
48
|
+
"type": "bool"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"name": "ApprovalForAll",
|
|
52
|
+
"type": "event"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"anonymous": false,
|
|
56
|
+
"inputs": [
|
|
57
|
+
{
|
|
58
|
+
"indexed": true,
|
|
59
|
+
"internalType": "address",
|
|
60
|
+
"name": "from",
|
|
61
|
+
"type": "address"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"indexed": true,
|
|
65
|
+
"internalType": "address",
|
|
66
|
+
"name": "to",
|
|
67
|
+
"type": "address"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"indexed": true,
|
|
71
|
+
"internalType": "uint256",
|
|
72
|
+
"name": "tokenId",
|
|
73
|
+
"type": "uint256"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"name": "Transfer",
|
|
77
|
+
"type": "event"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"inputs": [
|
|
81
|
+
{
|
|
82
|
+
"internalType": "address",
|
|
83
|
+
"name": "to",
|
|
84
|
+
"type": "address"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"internalType": "uint256",
|
|
88
|
+
"name": "tokenId",
|
|
89
|
+
"type": "uint256"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"name": "approve",
|
|
93
|
+
"outputs": [],
|
|
94
|
+
"stateMutability": "nonpayable",
|
|
95
|
+
"type": "function"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"inputs": [
|
|
99
|
+
{
|
|
100
|
+
"internalType": "address",
|
|
101
|
+
"name": "owner",
|
|
102
|
+
"type": "address"
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"name": "balanceOf",
|
|
106
|
+
"outputs": [
|
|
107
|
+
{
|
|
108
|
+
"internalType": "uint256",
|
|
109
|
+
"name": "balance",
|
|
110
|
+
"type": "uint256"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"stateMutability": "view",
|
|
114
|
+
"type": "function"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"inputs": [
|
|
118
|
+
{
|
|
119
|
+
"internalType": "uint256",
|
|
120
|
+
"name": "tokenId",
|
|
121
|
+
"type": "uint256"
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"name": "getApproved",
|
|
125
|
+
"outputs": [
|
|
126
|
+
{
|
|
127
|
+
"internalType": "address",
|
|
128
|
+
"name": "operator",
|
|
129
|
+
"type": "address"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"stateMutability": "view",
|
|
133
|
+
"type": "function"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"inputs": [
|
|
137
|
+
{
|
|
138
|
+
"internalType": "address",
|
|
139
|
+
"name": "owner",
|
|
140
|
+
"type": "address"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"internalType": "address",
|
|
144
|
+
"name": "operator",
|
|
145
|
+
"type": "address"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"name": "isApprovedForAll",
|
|
149
|
+
"outputs": [
|
|
150
|
+
{
|
|
151
|
+
"internalType": "bool",
|
|
152
|
+
"name": "",
|
|
153
|
+
"type": "bool"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"stateMutability": "view",
|
|
157
|
+
"type": "function"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"inputs": [
|
|
161
|
+
{
|
|
162
|
+
"internalType": "uint256",
|
|
163
|
+
"name": "tokenId",
|
|
164
|
+
"type": "uint256"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"name": "ownerOf",
|
|
168
|
+
"outputs": [
|
|
169
|
+
{
|
|
170
|
+
"internalType": "address",
|
|
171
|
+
"name": "owner",
|
|
172
|
+
"type": "address"
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"stateMutability": "view",
|
|
176
|
+
"type": "function"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"inputs": [
|
|
180
|
+
{
|
|
181
|
+
"internalType": "address",
|
|
182
|
+
"name": "from",
|
|
183
|
+
"type": "address"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"internalType": "address",
|
|
187
|
+
"name": "to",
|
|
188
|
+
"type": "address"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"internalType": "uint256",
|
|
192
|
+
"name": "tokenId",
|
|
193
|
+
"type": "uint256"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"name": "safeTransferFrom",
|
|
197
|
+
"outputs": [],
|
|
198
|
+
"stateMutability": "nonpayable",
|
|
199
|
+
"type": "function"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"inputs": [
|
|
203
|
+
{
|
|
204
|
+
"internalType": "address",
|
|
205
|
+
"name": "from",
|
|
206
|
+
"type": "address"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"internalType": "address",
|
|
210
|
+
"name": "to",
|
|
211
|
+
"type": "address"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"internalType": "uint256",
|
|
215
|
+
"name": "tokenId",
|
|
216
|
+
"type": "uint256"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"internalType": "bytes",
|
|
220
|
+
"name": "data",
|
|
221
|
+
"type": "bytes"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"name": "safeTransferFrom",
|
|
225
|
+
"outputs": [],
|
|
226
|
+
"stateMutability": "nonpayable",
|
|
227
|
+
"type": "function"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"inputs": [
|
|
231
|
+
{
|
|
232
|
+
"internalType": "address",
|
|
233
|
+
"name": "operator",
|
|
234
|
+
"type": "address"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"internalType": "bool",
|
|
238
|
+
"name": "approved",
|
|
239
|
+
"type": "bool"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"name": "setApprovalForAll",
|
|
243
|
+
"outputs": [],
|
|
244
|
+
"stateMutability": "nonpayable",
|
|
245
|
+
"type": "function"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"inputs": [
|
|
249
|
+
{
|
|
250
|
+
"internalType": "bytes4",
|
|
251
|
+
"name": "interfaceId",
|
|
252
|
+
"type": "bytes4"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"name": "supportsInterface",
|
|
256
|
+
"outputs": [
|
|
257
|
+
{
|
|
258
|
+
"internalType": "bool",
|
|
259
|
+
"name": "",
|
|
260
|
+
"type": "bool"
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"stateMutability": "view",
|
|
264
|
+
"type": "function"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"inputs": [
|
|
268
|
+
{
|
|
269
|
+
"internalType": "address",
|
|
270
|
+
"name": "from",
|
|
271
|
+
"type": "address"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"internalType": "address",
|
|
275
|
+
"name": "to",
|
|
276
|
+
"type": "address"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"internalType": "uint256",
|
|
280
|
+
"name": "tokenId",
|
|
281
|
+
"type": "uint256"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"name": "transferFrom",
|
|
285
|
+
"outputs": [],
|
|
286
|
+
"stateMutability": "nonpayable",
|
|
287
|
+
"type": "function"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"inputs": [],
|
|
291
|
+
"name": "name",
|
|
292
|
+
"outputs": [
|
|
293
|
+
{
|
|
294
|
+
"internalType": "string",
|
|
295
|
+
"name": "",
|
|
296
|
+
"type": "string"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"stateMutability": "view",
|
|
300
|
+
"type": "function"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"inputs": [],
|
|
304
|
+
"name": "symbol",
|
|
305
|
+
"outputs": [
|
|
306
|
+
{
|
|
307
|
+
"internalType": "string",
|
|
308
|
+
"name": "",
|
|
309
|
+
"type": "string"
|
|
310
|
+
}
|
|
311
|
+
],
|
|
312
|
+
"stateMutability": "view",
|
|
313
|
+
"type": "function"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"inputs": [
|
|
317
|
+
{
|
|
318
|
+
"internalType": "uint256",
|
|
319
|
+
"name": "tokenId",
|
|
320
|
+
"type": "uint256"
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"name": "tokenURI",
|
|
324
|
+
"outputs": [
|
|
325
|
+
{
|
|
326
|
+
"internalType": "string",
|
|
327
|
+
"name": "",
|
|
328
|
+
"type": "string"
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"stateMutability": "view",
|
|
332
|
+
"type": "function"
|
|
333
|
+
}
|
|
334
|
+
],
|
|
335
|
+
"metadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}",
|
|
336
|
+
"bytecode": "0x",
|
|
337
|
+
"deployedBytecode": "0x",
|
|
338
|
+
"immutableReferences": {},
|
|
339
|
+
"generatedSources": [],
|
|
340
|
+
"deployedGeneratedSources": [],
|
|
341
|
+
"sourceMap": "",
|
|
342
|
+
"deployedSourceMap": "",
|
|
343
|
+
"source": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC721} from \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n",
|
|
344
|
+
"sourcePath": "@openzeppelin\\contracts\\token\\ERC721\\extensions\\IERC721Metadata.sol",
|
|
345
|
+
"ast": {
|
|
346
|
+
"absolutePath": "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol",
|
|
347
|
+
"exportedSymbols": {
|
|
348
|
+
"IERC721": [
|
|
349
|
+
2192
|
|
350
|
+
],
|
|
351
|
+
"IERC721Metadata": [
|
|
352
|
+
2238
|
|
353
|
+
]
|
|
354
|
+
},
|
|
355
|
+
"id": 2239,
|
|
356
|
+
"license": "MIT",
|
|
357
|
+
"nodeType": "SourceUnit",
|
|
358
|
+
"nodes": [
|
|
359
|
+
{
|
|
360
|
+
"id": 2212,
|
|
361
|
+
"literals": [
|
|
362
|
+
"solidity",
|
|
363
|
+
">=",
|
|
364
|
+
"0.6",
|
|
365
|
+
".2"
|
|
366
|
+
],
|
|
367
|
+
"nodeType": "PragmaDirective",
|
|
368
|
+
"src": "127:24:11"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
|
|
372
|
+
"file": "../IERC721.sol",
|
|
373
|
+
"id": 2214,
|
|
374
|
+
"nameLocation": "-1:-1:-1",
|
|
375
|
+
"nodeType": "ImportDirective",
|
|
376
|
+
"scope": 2239,
|
|
377
|
+
"sourceUnit": 2193,
|
|
378
|
+
"src": "153:39:11",
|
|
379
|
+
"symbolAliases": [
|
|
380
|
+
{
|
|
381
|
+
"foreign": {
|
|
382
|
+
"id": 2213,
|
|
383
|
+
"name": "IERC721",
|
|
384
|
+
"nodeType": "Identifier",
|
|
385
|
+
"overloadedDeclarations": [],
|
|
386
|
+
"referencedDeclaration": 2192,
|
|
387
|
+
"src": "161:7:11",
|
|
388
|
+
"typeDescriptions": {}
|
|
389
|
+
},
|
|
390
|
+
"nameLocation": "-1:-1:-1"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"unitAlias": ""
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"abstract": false,
|
|
397
|
+
"baseContracts": [
|
|
398
|
+
{
|
|
399
|
+
"baseName": {
|
|
400
|
+
"id": 2216,
|
|
401
|
+
"name": "IERC721",
|
|
402
|
+
"nameLocations": [
|
|
403
|
+
"357:7:11"
|
|
404
|
+
],
|
|
405
|
+
"nodeType": "IdentifierPath",
|
|
406
|
+
"referencedDeclaration": 2192,
|
|
407
|
+
"src": "357:7:11"
|
|
408
|
+
},
|
|
409
|
+
"id": 2217,
|
|
410
|
+
"nodeType": "InheritanceSpecifier",
|
|
411
|
+
"src": "357:7:11"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"canonicalName": "IERC721Metadata",
|
|
415
|
+
"contractDependencies": [],
|
|
416
|
+
"contractKind": "interface",
|
|
417
|
+
"documentation": {
|
|
418
|
+
"id": 2215,
|
|
419
|
+
"nodeType": "StructuredDocumentation",
|
|
420
|
+
"src": "194:133:11",
|
|
421
|
+
"text": " @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"
|
|
422
|
+
},
|
|
423
|
+
"fullyImplemented": false,
|
|
424
|
+
"id": 2238,
|
|
425
|
+
"linearizedBaseContracts": [
|
|
426
|
+
2238,
|
|
427
|
+
2192,
|
|
428
|
+
4905
|
|
429
|
+
],
|
|
430
|
+
"name": "IERC721Metadata",
|
|
431
|
+
"nameLocation": "338:15:11",
|
|
432
|
+
"nodeType": "ContractDefinition",
|
|
433
|
+
"nodes": [
|
|
434
|
+
{
|
|
435
|
+
"documentation": {
|
|
436
|
+
"id": 2218,
|
|
437
|
+
"nodeType": "StructuredDocumentation",
|
|
438
|
+
"src": "371:58:11",
|
|
439
|
+
"text": " @dev Returns the token collection name."
|
|
440
|
+
},
|
|
441
|
+
"functionSelector": "06fdde03",
|
|
442
|
+
"id": 2223,
|
|
443
|
+
"implemented": false,
|
|
444
|
+
"kind": "function",
|
|
445
|
+
"modifiers": [],
|
|
446
|
+
"name": "name",
|
|
447
|
+
"nameLocation": "443:4:11",
|
|
448
|
+
"nodeType": "FunctionDefinition",
|
|
449
|
+
"parameters": {
|
|
450
|
+
"id": 2219,
|
|
451
|
+
"nodeType": "ParameterList",
|
|
452
|
+
"parameters": [],
|
|
453
|
+
"src": "447:2:11"
|
|
454
|
+
},
|
|
455
|
+
"returnParameters": {
|
|
456
|
+
"id": 2222,
|
|
457
|
+
"nodeType": "ParameterList",
|
|
458
|
+
"parameters": [
|
|
459
|
+
{
|
|
460
|
+
"constant": false,
|
|
461
|
+
"id": 2221,
|
|
462
|
+
"mutability": "mutable",
|
|
463
|
+
"name": "",
|
|
464
|
+
"nameLocation": "-1:-1:-1",
|
|
465
|
+
"nodeType": "VariableDeclaration",
|
|
466
|
+
"scope": 2223,
|
|
467
|
+
"src": "473:13:11",
|
|
468
|
+
"stateVariable": false,
|
|
469
|
+
"storageLocation": "memory",
|
|
470
|
+
"typeDescriptions": {
|
|
471
|
+
"typeIdentifier": "t_string_memory_ptr",
|
|
472
|
+
"typeString": "string"
|
|
473
|
+
},
|
|
474
|
+
"typeName": {
|
|
475
|
+
"id": 2220,
|
|
476
|
+
"name": "string",
|
|
477
|
+
"nodeType": "ElementaryTypeName",
|
|
478
|
+
"src": "473:6:11",
|
|
479
|
+
"typeDescriptions": {
|
|
480
|
+
"typeIdentifier": "t_string_storage_ptr",
|
|
481
|
+
"typeString": "string"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"visibility": "internal"
|
|
485
|
+
}
|
|
486
|
+
],
|
|
487
|
+
"src": "472:15:11"
|
|
488
|
+
},
|
|
489
|
+
"scope": 2238,
|
|
490
|
+
"src": "434:54:11",
|
|
491
|
+
"stateMutability": "view",
|
|
492
|
+
"virtual": false,
|
|
493
|
+
"visibility": "external"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"documentation": {
|
|
497
|
+
"id": 2224,
|
|
498
|
+
"nodeType": "StructuredDocumentation",
|
|
499
|
+
"src": "494:60:11",
|
|
500
|
+
"text": " @dev Returns the token collection symbol."
|
|
501
|
+
},
|
|
502
|
+
"functionSelector": "95d89b41",
|
|
503
|
+
"id": 2229,
|
|
504
|
+
"implemented": false,
|
|
505
|
+
"kind": "function",
|
|
506
|
+
"modifiers": [],
|
|
507
|
+
"name": "symbol",
|
|
508
|
+
"nameLocation": "568:6:11",
|
|
509
|
+
"nodeType": "FunctionDefinition",
|
|
510
|
+
"parameters": {
|
|
511
|
+
"id": 2225,
|
|
512
|
+
"nodeType": "ParameterList",
|
|
513
|
+
"parameters": [],
|
|
514
|
+
"src": "574:2:11"
|
|
515
|
+
},
|
|
516
|
+
"returnParameters": {
|
|
517
|
+
"id": 2228,
|
|
518
|
+
"nodeType": "ParameterList",
|
|
519
|
+
"parameters": [
|
|
520
|
+
{
|
|
521
|
+
"constant": false,
|
|
522
|
+
"id": 2227,
|
|
523
|
+
"mutability": "mutable",
|
|
524
|
+
"name": "",
|
|
525
|
+
"nameLocation": "-1:-1:-1",
|
|
526
|
+
"nodeType": "VariableDeclaration",
|
|
527
|
+
"scope": 2229,
|
|
528
|
+
"src": "600:13:11",
|
|
529
|
+
"stateVariable": false,
|
|
530
|
+
"storageLocation": "memory",
|
|
531
|
+
"typeDescriptions": {
|
|
532
|
+
"typeIdentifier": "t_string_memory_ptr",
|
|
533
|
+
"typeString": "string"
|
|
534
|
+
},
|
|
535
|
+
"typeName": {
|
|
536
|
+
"id": 2226,
|
|
537
|
+
"name": "string",
|
|
538
|
+
"nodeType": "ElementaryTypeName",
|
|
539
|
+
"src": "600:6:11",
|
|
540
|
+
"typeDescriptions": {
|
|
541
|
+
"typeIdentifier": "t_string_storage_ptr",
|
|
542
|
+
"typeString": "string"
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
"visibility": "internal"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"src": "599:15:11"
|
|
549
|
+
},
|
|
550
|
+
"scope": 2238,
|
|
551
|
+
"src": "559:56:11",
|
|
552
|
+
"stateMutability": "view",
|
|
553
|
+
"virtual": false,
|
|
554
|
+
"visibility": "external"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"documentation": {
|
|
558
|
+
"id": 2230,
|
|
559
|
+
"nodeType": "StructuredDocumentation",
|
|
560
|
+
"src": "621:90:11",
|
|
561
|
+
"text": " @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."
|
|
562
|
+
},
|
|
563
|
+
"functionSelector": "c87b56dd",
|
|
564
|
+
"id": 2237,
|
|
565
|
+
"implemented": false,
|
|
566
|
+
"kind": "function",
|
|
567
|
+
"modifiers": [],
|
|
568
|
+
"name": "tokenURI",
|
|
569
|
+
"nameLocation": "725:8:11",
|
|
570
|
+
"nodeType": "FunctionDefinition",
|
|
571
|
+
"parameters": {
|
|
572
|
+
"id": 2233,
|
|
573
|
+
"nodeType": "ParameterList",
|
|
574
|
+
"parameters": [
|
|
575
|
+
{
|
|
576
|
+
"constant": false,
|
|
577
|
+
"id": 2232,
|
|
578
|
+
"mutability": "mutable",
|
|
579
|
+
"name": "tokenId",
|
|
580
|
+
"nameLocation": "742:7:11",
|
|
581
|
+
"nodeType": "VariableDeclaration",
|
|
582
|
+
"scope": 2237,
|
|
583
|
+
"src": "734:15:11",
|
|
584
|
+
"stateVariable": false,
|
|
585
|
+
"storageLocation": "default",
|
|
586
|
+
"typeDescriptions": {
|
|
587
|
+
"typeIdentifier": "t_uint256",
|
|
588
|
+
"typeString": "uint256"
|
|
589
|
+
},
|
|
590
|
+
"typeName": {
|
|
591
|
+
"id": 2231,
|
|
592
|
+
"name": "uint256",
|
|
593
|
+
"nodeType": "ElementaryTypeName",
|
|
594
|
+
"src": "734:7:11",
|
|
595
|
+
"typeDescriptions": {
|
|
596
|
+
"typeIdentifier": "t_uint256",
|
|
597
|
+
"typeString": "uint256"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"visibility": "internal"
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"src": "733:17:11"
|
|
604
|
+
},
|
|
605
|
+
"returnParameters": {
|
|
606
|
+
"id": 2236,
|
|
607
|
+
"nodeType": "ParameterList",
|
|
608
|
+
"parameters": [
|
|
609
|
+
{
|
|
610
|
+
"constant": false,
|
|
611
|
+
"id": 2235,
|
|
612
|
+
"mutability": "mutable",
|
|
613
|
+
"name": "",
|
|
614
|
+
"nameLocation": "-1:-1:-1",
|
|
615
|
+
"nodeType": "VariableDeclaration",
|
|
616
|
+
"scope": 2237,
|
|
617
|
+
"src": "774:13:11",
|
|
618
|
+
"stateVariable": false,
|
|
619
|
+
"storageLocation": "memory",
|
|
620
|
+
"typeDescriptions": {
|
|
621
|
+
"typeIdentifier": "t_string_memory_ptr",
|
|
622
|
+
"typeString": "string"
|
|
623
|
+
},
|
|
624
|
+
"typeName": {
|
|
625
|
+
"id": 2234,
|
|
626
|
+
"name": "string",
|
|
627
|
+
"nodeType": "ElementaryTypeName",
|
|
628
|
+
"src": "774:6:11",
|
|
629
|
+
"typeDescriptions": {
|
|
630
|
+
"typeIdentifier": "t_string_storage_ptr",
|
|
631
|
+
"typeString": "string"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"visibility": "internal"
|
|
635
|
+
}
|
|
636
|
+
],
|
|
637
|
+
"src": "773:15:11"
|
|
638
|
+
},
|
|
639
|
+
"scope": 2238,
|
|
640
|
+
"src": "716:73:11",
|
|
641
|
+
"stateMutability": "view",
|
|
642
|
+
"virtual": false,
|
|
643
|
+
"visibility": "external"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"scope": 2239,
|
|
647
|
+
"src": "328:463:11",
|
|
648
|
+
"usedErrors": [],
|
|
649
|
+
"usedEvents": [
|
|
650
|
+
2091,
|
|
651
|
+
2100,
|
|
652
|
+
2109
|
|
653
|
+
]
|
|
654
|
+
}
|
|
655
|
+
],
|
|
656
|
+
"src": "127:665:11"
|
|
657
|
+
},
|
|
658
|
+
"compiler": {
|
|
659
|
+
"name": "solc",
|
|
660
|
+
"version": "0.8.21+commit.d9974bed.Emscripten.clang"
|
|
661
|
+
},
|
|
662
|
+
"networks": {},
|
|
663
|
+
"schemaVersion": "3.4.16",
|
|
664
|
+
"updatedAt": "2026-01-24T20:23:04.002Z",
|
|
665
|
+
"devdoc": {
|
|
666
|
+
"details": "See https://eips.ethereum.org/EIPS/eip-721",
|
|
667
|
+
"events": {
|
|
668
|
+
"Approval(address,address,uint256)": {
|
|
669
|
+
"details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
|
|
670
|
+
},
|
|
671
|
+
"ApprovalForAll(address,address,bool)": {
|
|
672
|
+
"details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
|
|
673
|
+
},
|
|
674
|
+
"Transfer(address,address,uint256)": {
|
|
675
|
+
"details": "Emitted when `tokenId` token is transferred from `from` to `to`."
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"kind": "dev",
|
|
679
|
+
"methods": {
|
|
680
|
+
"approve(address,uint256)": {
|
|
681
|
+
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
|
|
682
|
+
},
|
|
683
|
+
"balanceOf(address)": {
|
|
684
|
+
"details": "Returns the number of tokens in ``owner``'s account."
|
|
685
|
+
},
|
|
686
|
+
"getApproved(uint256)": {
|
|
687
|
+
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
|
|
688
|
+
},
|
|
689
|
+
"isApprovedForAll(address,address)": {
|
|
690
|
+
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
|
|
691
|
+
},
|
|
692
|
+
"name()": {
|
|
693
|
+
"details": "Returns the token collection name."
|
|
694
|
+
},
|
|
695
|
+
"ownerOf(uint256)": {
|
|
696
|
+
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
|
|
697
|
+
},
|
|
698
|
+
"safeTransferFrom(address,address,uint256)": {
|
|
699
|
+
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
|
|
700
|
+
},
|
|
701
|
+
"safeTransferFrom(address,address,uint256,bytes)": {
|
|
702
|
+
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
|
|
703
|
+
},
|
|
704
|
+
"setApprovalForAll(address,bool)": {
|
|
705
|
+
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event."
|
|
706
|
+
},
|
|
707
|
+
"supportsInterface(bytes4)": {
|
|
708
|
+
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
|
|
709
|
+
},
|
|
710
|
+
"symbol()": {
|
|
711
|
+
"details": "Returns the token collection symbol."
|
|
712
|
+
},
|
|
713
|
+
"tokenURI(uint256)": {
|
|
714
|
+
"details": "Returns the Uniform Resource Identifier (URI) for `tokenId` token."
|
|
715
|
+
},
|
|
716
|
+
"transferFrom(address,address,uint256)": {
|
|
717
|
+
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"title": "ERC-721 Non-Fungible Token Standard, optional metadata extension",
|
|
721
|
+
"version": 1
|
|
722
|
+
},
|
|
723
|
+
"userdoc": {
|
|
724
|
+
"kind": "user",
|
|
725
|
+
"methods": {},
|
|
726
|
+
"version": 1
|
|
727
|
+
}
|
|
728
|
+
}
|