@alephium/web3 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,11 +14,30 @@ Interface INFT {
14
14
  // },
15
15
  // "description": {
16
16
  // "type": "string",
17
- // "description": "General description of the NFT"
17
+ // "description": "General description of the NFT",
18
+ // "nullable": true
18
19
  // },
19
20
  // "image": {
20
21
  // "type": "string",
21
22
  // "description": "A URI to the image that represents the NFT"
23
+ // },
24
+ // "attributes": {
25
+ // "type": "array",
26
+ // "description": "An array of attributes for the NFT",
27
+ // "items": {
28
+ // "type": "object",
29
+ // "properties": {
30
+ // "trait_type": {
31
+ // "type": "string",
32
+ // "description": "The type of trait"
33
+ // },
34
+ // "value": {
35
+ // "type": ["string", "number", "boolean"],
36
+ // "description": "The value of the trait"
37
+ // }
38
+ // }
39
+ // },
40
+ // "nullable": true
22
41
  // }
23
42
  // }
24
43
  // }