the string to decode as a base58 address
an implementation of sha256 (defaults to the internal WASM implementation)
Returns the sha256 hash of the provided input.
To incrementally construct a sha256 hash (e.g. for streaming), use init
,
update
, and final
.
a Uint8Array to be hashed using sha256
Generated using TypeDoc
Decode and validate a Base58Address, strictly checking the version and payload length.
For other address-like standards that closely follow the Base58Address format (but have alternative version byte requirements), use decodeBase58AddressFormat.
Remarks
Because the Wallet Import Format (WIF) private key serialization format uses the Base58Address format, some libraries allow WIF key decoding via the same method as base58 address decoding. This method strictly accepts only Base58Address types, but WIF keys can be decoded with decodePrivateKeyWif.