Class: PrivateKey
A signing key. You can generate one via random.
Hierarchy
↳
PrivateKey
Table of contents
Constructors
Properties
Methods
- assertEquals
- equals
- isConstant
- toBase58
- toConstant
- toFields
- toJSON
- toPublicKey
- check
- fromBase58
- fromJSON
- fromObject
- ofBits
- ofFields
- random
- sizeInFields
- toBase58
- toConstant
- toFields
- toInput
- toJSON
Constructors
constructor
• new PrivateKey(...props
)
Parameters
Name | Type |
---|---|
...props | any [] |
Inherited from
Defined in
Properties
s
• s: Scalar
Defined in
Methods
assertEquals
▸ assertEquals(x
): void
Parameters
Name | Type |
---|---|
x | PrivateKey |
Returns
void
Inherited from
Defined in
equals
▸ equals(x
): Bool
Parameters
Name | Type |
---|---|
x | PrivateKey |
Returns
Inherited from
Defined in
isConstant
▸ isConstant(): boolean
Returns
boolean
Inherited from
Defined in
toBase58
▸ toBase58(): string
Returns
string
Defined in
toConstant
▸ toConstant(): PrivateKey
Returns
Inherited from
Defined in
toFields
▸ toFields(): Field
[]
Returns
Field
[]
Inherited from
Defined in
toJSON
▸ toJSON(): JSONValue
Returns
JSONValue
Inherited from
Defined in
toPublicKey
▸ toPublicKey(): PublicKey
Derives the associated public key.
Returns
a PublicKey.
Defined in
check
▸ Static
check<T
>(this
, v
): void
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
v | InstanceType <T > |
Returns
void
Inherited from
Defined in
fromBase58
▸ Static
fromBase58(privateKeyBase58
): PrivateKey
Parameters
Name | Type |
---|---|
privateKeyBase58 | string |
Returns
Defined in
fromJSON
▸ Static
fromJSON<T
>(this
, value
): null
| InstanceType
<T
>
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
value | JSONValue |
Returns
null
| InstanceType
<T
>
Inherited from
Defined in
fromObject
▸ Static
fromObject<T
>(this
, value
): InstanceType
<T
>
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
value | NonMethods <InstanceType <T >> |
Returns
InstanceType
<T
>
Inherited from
Defined in
ofBits
▸ Static
ofBits(bs
): PrivateKey
Deserializes a list of bits into a PrivateKey.
Parameters
Name | Type | Description |
---|---|---|
bs | Bool [] | a list of Bools. |
Returns
a PrivateKey.
Defined in
ofFields
▸ Static
ofFields<T
>(this
, xs
): InstanceType
<T
>
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
xs | Field [] |
Returns
InstanceType
<T
>
Inherited from
Defined in
random
▸ Static
random(): PrivateKey
You can use this method to generate a private key. You can then obtain the associated public key via toPublicKey. And generate signatures via Signature.create.
Returns
a new PrivateKey.
Defined in
sizeInFields
▸ Static
sizeInFields(): number
Returns
number
Inherited from
Defined in
toBase58
▸ Static
toBase58(privateKey
): string
Parameters
Name | Type |
---|---|
privateKey | Object |
privateKey.s | Scalar |
Returns
string
Defined in
toConstant
▸ Static
toConstant<T
>(this
, t
): InstanceType
<T
>
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
t | InstanceType <T > |
Returns
InstanceType
<T
>
Inherited from
Defined in
toFields
▸ Static
toFields<T
>(this
, v
): Field
[]
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
v | InstanceType <T > |
Returns
Field
[]
Inherited from
Defined in
toInput
▸ Static
toInput<T
>(this
, v
): HashInput
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
v | InstanceType <T > |
Returns
HashInput
Inherited from
Defined in
toJSON
▸ Static
toJSON<T
>(this
, v
): JSONValue
Type parameters
Name | Type |
---|---|
T | extends AnyConstructor |
Parameters
Name | Type |
---|---|
this | T |
v | InstanceType <T > |
Returns
JSONValue