@snapshot-labs/snapshot.js 0.3.87 → 0.3.88
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/index.d.ts +2 -0
- package/dist/schemas/index.d.ts +2 -0
- package/dist/snapshot.cjs.js +5 -2
- package/dist/snapshot.esm.js +5 -2
- package/dist/snapshot.min.js +2 -2
- package/package.json +1 -1
- package/src/networks.json +1 -0
- package/src/schemas/space.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ declare const _default: {
|
|
|
126
126
|
maxLength: number;
|
|
127
127
|
};
|
|
128
128
|
title: string;
|
|
129
|
+
uniqueItems: boolean;
|
|
129
130
|
};
|
|
130
131
|
admins: {
|
|
131
132
|
type: string;
|
|
@@ -137,6 +138,7 @@ declare const _default: {
|
|
|
137
138
|
maxLength: number;
|
|
138
139
|
};
|
|
139
140
|
title: string;
|
|
141
|
+
uniqueItems: boolean;
|
|
140
142
|
};
|
|
141
143
|
filters: {
|
|
142
144
|
type: string;
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ declare const _default: {
|
|
|
121
121
|
maxLength: number;
|
|
122
122
|
};
|
|
123
123
|
title: string;
|
|
124
|
+
uniqueItems: boolean;
|
|
124
125
|
};
|
|
125
126
|
admins: {
|
|
126
127
|
type: string;
|
|
@@ -132,6 +133,7 @@ declare const _default: {
|
|
|
132
133
|
maxLength: number;
|
|
133
134
|
};
|
|
134
135
|
title: string;
|
|
136
|
+
uniqueItems: boolean;
|
|
135
137
|
};
|
|
136
138
|
filters: {
|
|
137
139
|
type: string;
|
package/dist/snapshot.cjs.js
CHANGED
|
@@ -733,7 +733,8 @@ var definitions = {
|
|
|
733
733
|
minLength: 42,
|
|
734
734
|
maxLength: 42
|
|
735
735
|
},
|
|
736
|
-
title: "members"
|
|
736
|
+
title: "members",
|
|
737
|
+
uniqueItems: true
|
|
737
738
|
},
|
|
738
739
|
admins: {
|
|
739
740
|
type: "array",
|
|
@@ -744,7 +745,8 @@ var definitions = {
|
|
|
744
745
|
minLength: 42,
|
|
745
746
|
maxLength: 42
|
|
746
747
|
},
|
|
747
|
-
title: "admins"
|
|
748
|
+
title: "admins",
|
|
749
|
+
uniqueItems: true
|
|
748
750
|
},
|
|
749
751
|
filters: {
|
|
750
752
|
type: "object",
|
|
@@ -1630,6 +1632,7 @@ var networks = {
|
|
|
1630
1632
|
network: "mainnet",
|
|
1631
1633
|
multicall: "0x7a59441fb06666F6d2D766393d876945D06a169c",
|
|
1632
1634
|
rpc: [
|
|
1635
|
+
"https://explorer-node.fuse.io/",
|
|
1633
1636
|
"https://oefusefull1.liquify.info/"
|
|
1634
1637
|
],
|
|
1635
1638
|
explorer: "https://explorer.fuse.io",
|
package/dist/snapshot.esm.js
CHANGED
|
@@ -724,7 +724,8 @@ var definitions = {
|
|
|
724
724
|
minLength: 42,
|
|
725
725
|
maxLength: 42
|
|
726
726
|
},
|
|
727
|
-
title: "members"
|
|
727
|
+
title: "members",
|
|
728
|
+
uniqueItems: true
|
|
728
729
|
},
|
|
729
730
|
admins: {
|
|
730
731
|
type: "array",
|
|
@@ -735,7 +736,8 @@ var definitions = {
|
|
|
735
736
|
minLength: 42,
|
|
736
737
|
maxLength: 42
|
|
737
738
|
},
|
|
738
|
-
title: "admins"
|
|
739
|
+
title: "admins",
|
|
740
|
+
uniqueItems: true
|
|
739
741
|
},
|
|
740
742
|
filters: {
|
|
741
743
|
type: "object",
|
|
@@ -1621,6 +1623,7 @@ var networks = {
|
|
|
1621
1623
|
network: "mainnet",
|
|
1622
1624
|
multicall: "0x7a59441fb06666F6d2D766393d876945D06a169c",
|
|
1623
1625
|
rpc: [
|
|
1626
|
+
"https://explorer-node.fuse.io/",
|
|
1624
1627
|
"https://oefusefull1.liquify.info/"
|
|
1625
1628
|
],
|
|
1626
1629
|
explorer: "https://explorer.fuse.io",
|