@snapshot-labs/snapshot.js 0.11.8 → 0.11.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/index.d.ts +12 -0
- package/dist/schemas/index.d.ts +12 -0
- package/dist/snapshot.cjs.js +28 -0
- package/dist/snapshot.esm.js +28 -0
- package/dist/snapshot.min.js +2 -2
- package/package.json +1 -1
- package/src/networks.json +15 -0
- package/src/schemas/space.json +12 -0
package/package.json
CHANGED
package/src/networks.json
CHANGED
|
@@ -1350,6 +1350,21 @@
|
|
|
1350
1350
|
"logo": "ipfs://bafkreicew2qv3m756m7xs2nrjezinghps7rlessrqjqetvox74w4hov2xe",
|
|
1351
1351
|
"testnet": true
|
|
1352
1352
|
},
|
|
1353
|
+
"713715": {
|
|
1354
|
+
"key": "713715",
|
|
1355
|
+
"name": "Sei EVM Devnet",
|
|
1356
|
+
"shortName": "devnet",
|
|
1357
|
+
"chainId": 713715,
|
|
1358
|
+
"network": "testnet",
|
|
1359
|
+
"multicall": "0xEe8d287B844959ADe40d718Dc23077ba920e2f07",
|
|
1360
|
+
"rpc": [],
|
|
1361
|
+
"explorer": {
|
|
1362
|
+
"url": "https://seitrace.com"
|
|
1363
|
+
},
|
|
1364
|
+
"start": 1463669,
|
|
1365
|
+
"logo": "ipfs://bafkreiammyt7uztbztqbcqv4bydnczsh2fqmnjf6jxj4xnskzzl6sjrigq",
|
|
1366
|
+
"testnet": true
|
|
1367
|
+
},
|
|
1353
1368
|
"11155111": {
|
|
1354
1369
|
"key": "11155111",
|
|
1355
1370
|
"name": "Sepolia testnet",
|
package/src/schemas/space.json
CHANGED
|
@@ -380,6 +380,18 @@
|
|
|
380
380
|
"items": {
|
|
381
381
|
"type": "string"
|
|
382
382
|
}
|
|
383
|
+
},
|
|
384
|
+
"boost": {
|
|
385
|
+
"type": "object",
|
|
386
|
+
"properties": {
|
|
387
|
+
"disabled": {
|
|
388
|
+
"type": "boolean"
|
|
389
|
+
},
|
|
390
|
+
"bribeEnabled": {
|
|
391
|
+
"type": "boolean"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"additionalProperties": false
|
|
383
395
|
}
|
|
384
396
|
},
|
|
385
397
|
"required": ["name", "network", "symbol", "strategies"],
|