@xandeum/web3.js 0.8.1 → 0.8.3

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.
Files changed (49) hide show
  1. package/dist/bigbang.d.ts +1 -1
  2. package/dist/bigbang.js +1 -1
  3. package/docs/html/functions/armageddon.html +2 -2
  4. package/docs/html/functions/assignCoowner.html +2 -2
  5. package/docs/html/functions/bigbang.html +3 -3
  6. package/docs/html/functions/copyPath.html +2 -2
  7. package/docs/html/functions/createDirectory.html +2 -2
  8. package/docs/html/functions/createFile.html +2 -2
  9. package/docs/html/functions/exists.html +2 -2
  10. package/docs/html/functions/find.html +2 -2
  11. package/docs/html/functions/getMetadata.html +2 -2
  12. package/docs/html/functions/getXandeumResult.html +2 -2
  13. package/docs/html/functions/listDirectoryEntry.html +2 -2
  14. package/docs/html/functions/move.html +2 -2
  15. package/docs/html/functions/peek.html +2 -2
  16. package/docs/html/functions/poke.html +2 -2
  17. package/docs/html/functions/removeDirectory.html +2 -2
  18. package/docs/html/functions/removeFile.html +2 -2
  19. package/docs/html/functions/renamePath.html +2 -2
  20. package/docs/html/functions/subscribeResult.html +2 -2
  21. package/docs/html/functions/unsubscribeResult.html +2 -2
  22. package/docs/html/hierarchy.html +1 -1
  23. package/docs/html/index.html +2 -2
  24. package/docs/html/modules.html +1 -1
  25. package/docs/markdown/README.md +1 -1
  26. package/docs/markdown/functions/armageddon.md +2 -2
  27. package/docs/markdown/functions/assignCoowner.md +2 -2
  28. package/docs/markdown/functions/bigbang.md +3 -3
  29. package/docs/markdown/functions/copyPath.md +2 -2
  30. package/docs/markdown/functions/createDirectory.md +2 -2
  31. package/docs/markdown/functions/createFile.md +2 -2
  32. package/docs/markdown/functions/exists.md +2 -2
  33. package/docs/markdown/functions/find.md +2 -2
  34. package/docs/markdown/functions/getMetadata.md +2 -2
  35. package/docs/markdown/functions/getXandeumResult.md +2 -2
  36. package/docs/markdown/functions/listDirectoryEntry.md +2 -2
  37. package/docs/markdown/functions/move.md +2 -2
  38. package/docs/markdown/functions/peek.md +2 -2
  39. package/docs/markdown/functions/poke.md +2 -2
  40. package/docs/markdown/functions/removeDirectory.md +2 -2
  41. package/docs/markdown/functions/removeFile.md +2 -2
  42. package/docs/markdown/functions/renamePath.md +2 -2
  43. package/docs/markdown/functions/subscribeResult.md +2 -2
  44. package/docs/markdown/functions/unsubscribeResult.md +2 -2
  45. package/docs/markdown/globals.md +2 -2
  46. package/package.json +1 -1
  47. package/src/bigbang.ts +1 -1
  48. package/typedoc.json +1 -1
  49. package/docs/markdown/summary.md +0 -49
package/src/bigbang.ts CHANGED
@@ -6,7 +6,7 @@ import { programId } from './const'
6
6
  * Constructs a Solana transaction that triggers the "bigbang" instruction and create new file system.
7
7
  *
8
8
  * @param wallet - The public key of the wallet that will sign and authorize the transaction.
9
- * @param replica_count - A stringified integer representing the number of replicas for the new file system.
9
+ * @param replica_count - A stringified integer representing the number of replicas for the new file system. Must be 2 or greater. The total number of copies will be replica_count + 1 (one original plus the replicas).
10
10
  * @returns A Promise that resolves to a Solana `Transaction` object containing the bigbang instruction.
11
11
  */
12
12
  export async function bigbang(replica_count:string,wallet: PublicKey): Promise<Transaction> {
package/typedoc.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "excludeInternal": true,
16
16
  "excludeNotDocumented": false,
17
17
  "gitRemote": "origin",
18
- "gitRevision": "master",
18
+ "gitRevision": "reinheim",
19
19
  "sourceLinkTemplate": "https://github.com/Xandeum/xandeum-web3.js/blob/{gitRevision}/{path}#L{line}",
20
20
  "visibilityFilters": {
21
21
  "protected": false,
@@ -1,49 +0,0 @@
1
- # Summary
2
-
3
- ## Getting Started
4
-
5
- * [Introduction](README.md)
6
- * [Globals](globals.md)
7
-
8
- ## Core Functions
9
-
10
- ### File System Management
11
-
12
- * [bigbang](functions/bigbang.md)
13
- * [armageddon](functions/armageddon.md)
14
-
15
- ### File Operations
16
-
17
- * [createFile](functions/createFile.md)
18
- * [removeFile](functions/removeFile.md)
19
- * [copyPath](functions/copyPath.md)
20
- * [renamePath](functions/renamePath.md)
21
- * [move](functions/move.md)
22
-
23
- ### Directory Operations
24
-
25
- * [createDirectory](functions/createDirectory.md)
26
- * [removeDirectory](functions/removeDirectory.md)
27
- * [listDirectoryEntry](functions/listDirectoryEntry.md)
28
-
29
- ### File Content Operations
30
-
31
- * [peek](functions/peek.md)
32
- * [poke](functions/poke.md)
33
-
34
- ### Search & Query
35
-
36
- * [find](functions/find.md)
37
-
38
- ### Metadata & Utilities
39
-
40
- * [exists](functions/exists.md)
41
- * [getMetadata](functions/getMetadata.md)
42
- * [getXandeumResult](functions/getXandeumResult.md)
43
- * [assignCoowner](functions/assignCoowner.md)
44
-
45
- ### WebSocket Functions
46
-
47
- * [subscribeResult](functions/subscribeResult.md)
48
- * [unsubscribeResult](functions/unsubscribeResult.md)
49
-