@snapshot-labs/snapshot.js 0.12.14 → 0.12.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.
- package/dist/snapshot.cjs.js +23 -0
- package/dist/snapshot.esm.js +23 -0
- package/dist/snapshot.min.js +2 -2
- package/dist/src/index.d.ts +8 -0
- package/dist/src/schemas/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/networks.json +14 -0
- package/src/schemas/space.json +8 -0
package/dist/src/index.d.ts
CHANGED
|
@@ -269,6 +269,14 @@ declare const _default: {
|
|
|
269
269
|
description: string;
|
|
270
270
|
examples: string[];
|
|
271
271
|
};
|
|
272
|
+
delegationNetwork: {
|
|
273
|
+
type: string;
|
|
274
|
+
snapshotNetwork: boolean;
|
|
275
|
+
title: string;
|
|
276
|
+
minLength: number;
|
|
277
|
+
maxLength: number;
|
|
278
|
+
description: string;
|
|
279
|
+
};
|
|
272
280
|
delegationApi: {
|
|
273
281
|
type: string;
|
|
274
282
|
format: string;
|
|
@@ -265,6 +265,14 @@ declare const _default: {
|
|
|
265
265
|
description: string;
|
|
266
266
|
examples: string[];
|
|
267
267
|
};
|
|
268
|
+
delegationNetwork: {
|
|
269
|
+
type: string;
|
|
270
|
+
snapshotNetwork: boolean;
|
|
271
|
+
title: string;
|
|
272
|
+
minLength: number;
|
|
273
|
+
maxLength: number;
|
|
274
|
+
description: string;
|
|
275
|
+
};
|
|
268
276
|
delegationApi: {
|
|
269
277
|
type: string;
|
|
270
278
|
format: string;
|
package/package.json
CHANGED
package/src/networks.json
CHANGED
|
@@ -1289,6 +1289,20 @@
|
|
|
1289
1289
|
"start": 6661339,
|
|
1290
1290
|
"logo": "ipfs://bafkreicljxttjq2xkgfwwpii5xegirgq2ctrnsjnzelxudjj33qzq65apu"
|
|
1291
1291
|
},
|
|
1292
|
+
"33139": {
|
|
1293
|
+
"key": "33139",
|
|
1294
|
+
"name": "ApeChain",
|
|
1295
|
+
"shortName": "mainnet",
|
|
1296
|
+
"chainId": 33139,
|
|
1297
|
+
"network": "mainnet",
|
|
1298
|
+
"multicall": "0xcA11bde05977b3631167028862bE2a173976CA11",
|
|
1299
|
+
"rpc": [],
|
|
1300
|
+
"explorer": {
|
|
1301
|
+
"url": "https://apechain.calderaexplorer.xyz/"
|
|
1302
|
+
},
|
|
1303
|
+
"start": 20889,
|
|
1304
|
+
"logo": "ipfs://bafkreielbgcox2jsw3g6pqulqb7pyjgx7czjt6ahnibihaij6lozoy53w4"
|
|
1305
|
+
},
|
|
1292
1306
|
"42161": {
|
|
1293
1307
|
"key": "42161",
|
|
1294
1308
|
"name": "Arbitrum One",
|
package/src/schemas/space.json
CHANGED
|
@@ -269,6 +269,14 @@
|
|
|
269
269
|
"description": "The address of your delegation contract",
|
|
270
270
|
"examples": ["0x3901D0fDe202aF1427216b79f5243f8A022d68cf"]
|
|
271
271
|
},
|
|
272
|
+
"delegationNetwork": {
|
|
273
|
+
"type": "string",
|
|
274
|
+
"snapshotNetwork": true,
|
|
275
|
+
"title": "Delegation network",
|
|
276
|
+
"minLength": 1,
|
|
277
|
+
"maxLength": 32,
|
|
278
|
+
"description": "The network of your delegation contract"
|
|
279
|
+
},
|
|
272
280
|
"delegationApi": {
|
|
273
281
|
"type": "string",
|
|
274
282
|
"format": "uri",
|