Variable privateKeyUint8ArrayFromConst
privateKeyUint8ArrayFrom: {
privateKeyBase58: ((privateKeyBase58) => Uint8Array);
privateKeyHex: ((privateKeyHex) => Uint8Array);
privateKeyJWK: ((jwk) => Uint8Array);
} = ...
Type declaration
privateKeyBase58: ((privateKeyBase58) => Uint8Array)
- (privateKeyBase58): Uint8Array
Returns Uint8Array
privateKeyHex: ((privateKeyHex) => Uint8Array)
- (privateKeyHex): Uint8Array
Returns Uint8Array
privateKeyJWK: ((jwk) => Uint8Array)
- (jwk): Uint8Array
Returns Uint8Array
Converts various private key formats to a Uint8Array formatted private key.