Add comprehensive installation and setup documentation

- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
This commit is contained in:
Dorian
2026-01-27 17:18:21 +00:00
parent a81f655133
commit 0d073fa89e
22658 changed files with 4494151 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,4 @@
export const murmur332: import("multiformats/hashes/hasher").Hasher<"murmur3-32", 35>;
export const murmur3128: import("multiformats/hashes/hasher").Hasher<"murmur3-128", 34>;
export const murmur364: import("multiformats/hashes/hasher").Hasher<"murmur3-x64-64", 34>;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":"AAgBA,sFAKE;AAEF,wFAKE;AAGF,0FAKE"}

View File

@@ -0,0 +1,29 @@
/**
* Generate murmurhash3 x64 128-bit hash
*
* @param {Uint8Array} key - original data
* @param {number} [seed] - seed value (defaults to 0)
* @returns {Uint8Array} the hash value as 16 bytes
*/
export function murmurHash3_x64_128(key: Uint8Array, seed?: number): Uint8Array;
/**
* Generate murmurhash3 x86 128-bit hash
*
* @param {Uint8Array} key - original data
* @param {number} [seed] - seed value (defaults to 0)
* @returns {Uint8Array} the hash value as 16 bytes
*/
export function murmurHash3_x86_128(key: Uint8Array, seed?: number): Uint8Array;
/**
* Generate murmurhash3 x86 32-bit hash
*
* @param {Uint8Array} key - original data
* @param {number} [seed] - seed value (defaults to 0)
* @returns {number} the hash value as a number
*/
export function murmurHash3_x86_32(key: Uint8Array, seed?: number): number;
export type u64 = {
lo: number;
hi: number;
};
//# sourceMappingURL=murmur.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"murmur.d.ts","sourceRoot":"","sources":["../../../src/vendor/murmur.js"],"names":[],"mappings":"AAqLA;;;;;;GAMG;AACH,yCAJW,UAAU,SACV,MAAM,GACJ,UAAU,CAqGtB;AACD;;;;;;GAMG;AACH,yCAJW,UAAU,SACV,MAAM,GACJ,UAAU,CAiItB;AACD;;;;;;GAMG;AACH,wCAJW,UAAU,SACV,MAAM,GACJ,MAAM,CAoClB;kBAvcY;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAA;CAAC"}