Class: Secp256k1PublicKey
A secp256k1 public key.
BCS
The BCS serialized form for this type is defined by the following ABNF:
secp256k1-public-key = 33OCTET
Extends
UniffiAbstractObject
Implements
Properties
[destructorGuardSymbol]
readonly [destructorGuardSymbol]: UniffiGcObject;
[pointerLiteralSymbol]
readonly [pointerLiteralSymbol]: bigint;
[uniffiTypeNameSymbol]
readonly [uniffiTypeNameSymbol]: "Secp256k1PublicKey" = "Secp256k1PublicKey";
Methods
deriveAddress()
deriveAddress(): AddressLike;
Derive an Address from this Public Key
An Address can be derived from a Secp256k1PublicKey by hashing the
bytes of the public key prefixed with the Secp256k1
SignatureScheme flag (0x01).
hash( 0x01 || 33-byte secp256k1 public key)
Returns
Implementation of
Secp256k1PublicKeyLike.deriveAddress
equals()
equals(other): boolean;
Parameters
other
Secp256k1PublicKey
Returns
boolean
hashCode()
hashCode(): bigint;
Returns
bigint
scheme()
scheme(): SignatureScheme;
Returns the signature scheme for this public key.
Returns
Implementation of
toBytes()
toBytes(): ArrayBuffer;
Returns
ArrayBuffer
Implementation of
Secp256k1PublicKeyLike.toBytes
toFlaggedBytes()
toFlaggedBytes(): ArrayBuffer;
Returns the bytes with signature scheme flag prepended.
Returns
ArrayBuffer
Implementation of
Secp256k1PublicKeyLike.toFlaggedBytes
uniffiDestroy()
uniffiDestroy(): void;
Explicitly tell Rust to destroy the native peer that backs this object.
Once this method has been called, any following method calls will throw an error.
Can be called more than once.
Returns
void
Overrides
UniffiAbstractObject.uniffiDestroy
uniffiUse()
uniffiUse<T>(block): T;
A convenience method to use this object, then destroy it after its use.
Type Parameters
T
T
Parameters
block
(obj) => T
Returns
T
Inherited from
UniffiAbstractObject.uniffiUse
fromBytes()
static fromBytes(bytes): Secp256k1PublicKeyLike;
Parameters
bytes
ArrayBuffer
Returns
fromStr()
static fromStr(s): Secp256k1PublicKeyLike;
Parameters
s
string
Returns
instanceOf()
static instanceOf(obj_): obj_ is Secp256k1PublicKey;
Parameters
obj_
any
Returns
obj_ is Secp256k1PublicKey
random()
static random(): Secp256k1PublicKeyLike;