From 3b0faa7eeb58f0f5d30a2c49dc041602776ca4ca Mon Sep 17 00:00:00 2001
From: grandfather
Provides an HMAC-based Extract-and-Expand Key Derivation Function (HKDF), compatible with -RFC 5869. Defaults to 32 byte output, matching Bitcoin's implementaton.
+RFC 5869. Defaults to 32 byte output, matching Bitcoin's implementation.Manage a network identity.
@@ -688,7 +688,7 @@ Generate a list of elements in the collection. ### collection.toTypedArray() Provides the [Collection](#Collection) as an [Array](Array) of typed -elements. The type of these elments are defined by the collection's +elements. The type of these elements are defined by the collection's type, supplied in the constructor. **Kind**: instance method of [Collection](#Collection)
@@ -949,7 +949,7 @@ Load Filesystem state from disk.
### filesystem.sync() ⇒ [Filesystem](#Filesystem)
-Syncronize state from the local filesystem.
+Synchronize state from the local filesystem.
**Kind**: instance method of [Filesystem](#Filesystem)
**Returns**: [Filesystem](#Filesystem) - Instance of the Fabric filesystem.
@@ -1001,7 +1001,7 @@ Reverses the bytes of the digest.
## HKDF
Provides an HMAC-based Extract-and-Expand Key Derivation Function (HKDF), compatible with
-RFC 5869. Defaults to 32 byte output, matching Bitcoin's implementaton.
+RFC 5869. Defaults to 32 byte output, matching Bitcoin's implementation.
**Kind**: global class
@@ -1215,7 +1215,7 @@ Attempts to append a [Page](Page) to the ledger.
### ledger.now() ⇒ Number
-Retrives the current timestamp, in milliseconds.
+Retrieves the current timestamp, in milliseconds.
**Kind**: instance method of [Ledger](#Ledger)
**Overrides**: [now](#Scribe+now)
@@ -1505,7 +1505,7 @@ Get `n` bytes of deterministic random data.
### machine.compute(input) ⇒ [Machine](#Machine)
-Computes the next "step" for our current Vector. Analagous to `sum`.
+Computes the next "step" for our current Vector. Analogous to `sum`.
The top item on the stack is always the memory held at current position,
so counts should always begin with 0.
@@ -3053,7 +3053,7 @@ Generate [Script](#Script) for claiming a [Swap](Swap).
### wallet.\_getRefundInputScript(redeemScript)
-Generate [Script](#Script) for reclaiming funds commited to a [Swap](Swap).
+Generate [Script](#Script) for reclaiming funds committed to a [Swap](Swap).
**Kind**: instance method of [Wallet](#Wallet)
@@ -3684,7 +3684,7 @@ Deprecated 2021-11-06.
### scribe.now() ⇒ Number
-Retrives the current timestamp, in milliseconds.
+Retrieves the current timestamp, in milliseconds.
**Kind**: instance method of [Scribe](#Scribe)
**Returns**: Number - [Number](Number) representation of the millisecond [Integer](Integer) value.
From c901e3aa58d44a58b08b685cc7a4e7522878906a Mon Sep 17 00:00:00 2001
From: grandfather