package util
- Alphabetic
- Public
- Protected
Type Members
- sealed abstract class Base58 extends AnyRef
Created by chris on 5/16/16.
Created by chris on 5/16/16. source of values: https://en.bitcoin.it/wiki/Base58Check_encoding
- sealed abstract class Bech32 extends AnyRef
A abstract class representing basic utility functions of Bech32 For more information on Bech32 please seee BIP173 https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki
- abstract class Bech32HumanReadablePart extends AnyRef
- trait BinaryTree[+T] extends AnyRef
Created by chris on 1/27/16.
- trait BitcoinSLogger extends Logging
Created by chris on 3/11/16.
- trait BitcoinScriptUtil extends BitcoinSLogger
Created by chris on 3/2/16.
- trait BytesUtil extends CryptoBytesUtil
- case class Indexed[+T](element: T, index: Int) extends Product with Serializable
- case class Leaf[T](v: T) extends BinaryTree[T] with Product with Serializable
- trait MapWrapper[K, +T] extends Map[K, T]
- class Mutable[A] extends AnyRef
- abstract class NetworkUtil extends AnyRef
- case class Node[T](v: T, l: BinaryTree[T], r: BinaryTree[T]) extends BinaryTree[T] with Product with Serializable
- sealed abstract class NumberUtil extends BitcoinSLogger
Created by chris on 2/8/16.
- trait SeqWrapper[+T] extends IndexedSeq[T]
- trait StartStop[T] extends AnyRef
This StartStop trait will be used by methods that require broad start stop methods.
This StartStop trait will be used by methods that require broad start stop methods. Provides structure for new clients to implement. For the async version please see StartStopAsync
- trait StartStopAsync[T] extends StartStop[Future[T]]
Provide a uniform trait to start/stop a service asynchrously.
Provide a uniform trait to start/stop a service asynchrously. For synchronous starts and stops please see StartStop
Value Members
- object Base58 extends Base58
- object Bech32 extends Bech32
- object BitcoinScriptUtil extends BitcoinScriptUtil
- object BytesUtil extends BytesUtil
- case object Empty extends BinaryTree[Nothing] with Product with Serializable
- object EnvUtil
- object FutureUtil
- object HDUtil
- object Indexed extends Serializable
- object NetworkUtil extends NetworkUtil
- object NumberUtil extends NumberUtil
- object TimeUtil