@typeberry/jam 0.4.0-203a18d → 0.4.0-2473e55

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/README.md CHANGED
@@ -8,6 +8,11 @@ Typeberry is a TypeScript implementation of [JAM protocol](https://graypaper.com
8
8
  PRs unless the contributor waives any claims to the prize and copy rights for
9
9
  the submitted code. By creating the PR you accept this requirement.**
10
10
 
11
+ ## Links
12
+
13
+ - [Documentation](https://fluffylabs.dev/typeberry)
14
+ - [Performance Charts](https://typeberry.fluffylabs.dev)
15
+
11
16
  ## Implementation status
12
17
 
13
18
  Gray Paper compliance can be controlled via `GP_VERSION` environment variable.
@@ -2937,8 +2937,8 @@ class Compatibility {
2937
2937
  /**
2938
2938
  * Allows selecting different values for different Gray Paper versions from one record.
2939
2939
  *
2940
- * @param fallback The default value to return if no value is found for the current.
2941
- * @param record A record mapping versions to values, checking if the version is greater or equal to the current version.
2940
+ * fallback The default value to return if no value is found for the current.
2941
+ * versions A record mapping versions to values, checking if the version is greater or equal to the current version.
2942
2942
  * @returns The value for the current version, or the default value.
2943
2943
  */
2944
2944
  static selectIfGreaterOrEqual({ fallback, versions, }) {
@@ -3101,7 +3101,7 @@ const workspacePathFix = dev_env.NODE_ENV === "development"
3101
3101
 
3102
3102
  ;// CONCATENATED MODULE: ./packages/core/utils/opaque.ts
3103
3103
  /**
3104
- * @fileoverview `Opaque<Type, Token>` constructs a unique type which is a subset of Type with a
3104
+ * `Opaque<Type, Token>` constructs a unique type which is a subset of Type with a
3105
3105
  * specified unique token Token. It means that base type cannot be assigned to unique type by accident.
3106
3106
  * Good examples of opaque types include:
3107
3107
  * - JWTs or other tokens - these are special kinds of string used for authorization purposes.