Class: MultiSigPublicKey
A MultiSig public key
Extends
Constructors
new MultiSigPublicKey()
new MultiSigPublicKey(
value
):MultiSigPublicKey
Create a new MultiSigPublicKey object
Parameters
• value: string
| Uint8Array
| MultiSigPublicKeyStruct
MultiSig public key as buffer or base-64 encoded string
Returns
Overrides
Methods
toBase64()
toBase64():
string
Return the base-64 representation of the public key
Returns
string
Inherited from
toString()
toString():
never
Returns
never
Inherited from
toIotaPublicKey()
toIotaPublicKey():
string
Return the IOTA representation of the public key encoded in base-64. An IOTA public key is formed by the concatenation of the scheme flag with the raw bytes of the public key
Returns
string
Inherited from
verifyWithIntent()
verifyWithIntent(
bytes
,signature
,intent
):Promise
<boolean
>