All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesplatform.account.AddressScheme.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.account

abstract class AddressScheme {
  val chainId: Byte
  override def toString: String = s"AddressScheme($chainId)"
}

object AddressScheme {
  @volatile var current: AddressScheme = DefaultAddressScheme
}

object DefaultAddressScheme extends AddressScheme {
  val chainId: Byte = 'T'.toByte
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy