Compare commits
3 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
|
68406eebb0 | |
|
2f690c5f80 | |
|
b74fa99783 |
|
@ -1,3 +1,10 @@
|
|||
# [0.1.0-develop.51](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.50...v0.1.0-develop.51) (2023-09-08)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add more s5 constants ([b74fa99](https://git.lumeweb.com/LumeWeb/libs5/commit/b74fa99783c7ef13e93f5efa0498a76da0d7ab2f))
|
||||
|
||||
# [0.1.0-develop.50](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.49...v0.1.0-develop.50) (2023-09-07)
|
||||
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.50",
|
||||
"version": "0.1.0-develop.51",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.50",
|
||||
"version": "0.1.0-develop.51",
|
||||
"dependencies": {
|
||||
"@noble/curves": "^1.1.0",
|
||||
"@noble/hashes": "^1.3.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lumeweb/libs5",
|
||||
"version": "0.1.0-develop.50",
|
||||
"version": "0.1.0-develop.51",
|
||||
"type": "module",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
|
|
|
@ -144,6 +144,15 @@ export const storageLocationTypeFull = 5;
|
|||
export const storageLocationTypeBridge = 7;
|
||||
export const supportedFeatures = 3;
|
||||
|
||||
export const hiddenDBTweak = 66;
|
||||
|
||||
export const pathKeyDerivationTweak = 1;
|
||||
export const writeKeyDerivationTweak = 2;
|
||||
export const encryptionKeyDerivationTweak = 3;
|
||||
export const encryptionKeyLength = 32;
|
||||
export const encryptionNonceLength = 24;
|
||||
export const encryptionOverheadLength = 16;
|
||||
|
||||
export const BOOTSTRAP_NODES: string[] = [
|
||||
"wss://z2DWuWNZcdSyZLpXFK2uCU3haaWMXrDAgxzv17sDEMHstZb@s5.garden/s5/p2p",
|
||||
"wss://z2DWuPbL5pweybXnEB618pMnV58ECj2VPDNfVGm3tFqBvjF@s5.ninja/s5/p2p",
|
||||
|
|
Loading…
Reference in New Issue