case class UnsortedKeySet(keys: Vector[SchnorrPublicKey], tweaks: Vector[MuSigTweak] = Vector.empty) extends KeySet with Product with Serializable
This represents an arbitrary KeySet, for use in tests. If you have a non-lexicographical order, extend KeySet.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- UnsortedKeySet
- Serializable
- Product
- Equals
- KeySet
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new UnsortedKeySet(keys: Vector[SchnorrPublicKey], tweaks: Vector[MuSigTweak] = Vector.empty)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- lazy val aggPubKey: ECPublicKey
The aggregate public key that represents the n-of-n signers
The aggregate public key that represents the n-of-n signers
- Definition Classes
- KeySet
- def apply(i: Int): SchnorrPublicKey
- Definition Classes
- KeySet
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def keyAggCoef(key: SchnorrPublicKey): FieldElement
Returns the coefficient of the given key in the aggPubKey sum
Returns the coefficient of the given key in the aggPubKey sum
- Definition Classes
- KeySet
- val keys: Vector[SchnorrPublicKey]
- Definition Classes
- UnsortedKeySet → KeySet
- def length: Int
- Definition Classes
- KeySet
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- lazy val secondKeyOpt: Option[SchnorrPublicKey]
The first key different from the keys.head, optimized MuSig2 allows this key to have coefficient 1
The first key different from the keys.head, optimized MuSig2 allows this key to have coefficient 1
- Definition Classes
- KeySet
- lazy val serialize: ByteVector
- Definition Classes
- KeySet
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- lazy val tweakContext: MuSigTweakContext
Accumulated tweak information
Accumulated tweak information
- Definition Classes
- KeySet
- val tweaks: Vector[MuSigTweak]
- Definition Classes
- UnsortedKeySet → KeySet
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withTweaks(newTweaks: Vector[MuSigTweak]): KeySet
- Definition Classes
- KeySet