@snapshot-labs/snapshot.js 0.12.8 → 0.12.10
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/dist/snapshot.cjs.js +8 -1
- package/dist/snapshot.esm.js +8 -1
- package/dist/snapshot.min.js +2 -2
- package/dist/src/index.d.ts +7 -0
- package/dist/src/schemas/index.d.ts +6 -0
- package/dist/src/utils/delegation.d.ts +1 -0
- package/dist/src/utils.d.ts +1 -0
- package/package.json +1 -1
- package/src/delegationSubgraphs.json +1 -0
- package/src/schemas/space.json +7 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -44,6 +44,12 @@ declare const _default: {
|
|
|
44
44
|
format: string;
|
|
45
45
|
maxLength: number;
|
|
46
46
|
};
|
|
47
|
+
cover: {
|
|
48
|
+
type: string;
|
|
49
|
+
title: string;
|
|
50
|
+
format: string;
|
|
51
|
+
maxLength: number;
|
|
52
|
+
};
|
|
47
53
|
location: {
|
|
48
54
|
type: string;
|
|
49
55
|
title: string;
|
|
@@ -725,6 +731,7 @@ declare const _default: {
|
|
|
725
731
|
"250": string;
|
|
726
732
|
"8453": string;
|
|
727
733
|
"42161": string;
|
|
734
|
+
"59144": string;
|
|
728
735
|
"11155111": string;
|
|
729
736
|
};
|
|
730
737
|
};
|
package/dist/src/utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -7,5 +7,6 @@
|
|
|
7
7
|
"250": "https://subgrapher.snapshot.org/delegation/250",
|
|
8
8
|
"8453": "https://subgrapher.snapshot.org/delegation/8453",
|
|
9
9
|
"42161": "https://subgrapher.snapshot.org/delegation/42161",
|
|
10
|
+
"59144": "https://subgrapher.snapshot.org/delegation/59144",
|
|
10
11
|
"11155111": "https://subgrapher.snapshot.org/delegation/11155111"
|
|
11
12
|
}
|
package/src/schemas/space.json
CHANGED
|
@@ -40,7 +40,13 @@
|
|
|
40
40
|
"avatar": {
|
|
41
41
|
"type": "string",
|
|
42
42
|
"title": "avatar",
|
|
43
|
-
"format": "
|
|
43
|
+
"format": "customUrl",
|
|
44
|
+
"maxLength": 256
|
|
45
|
+
},
|
|
46
|
+
"cover": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"title": "avatar",
|
|
49
|
+
"format": "customUrl",
|
|
44
50
|
"maxLength": 256
|
|
45
51
|
},
|
|
46
52
|
"location": {
|