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

com.wavesplatform.settings.Constants.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.settings

import com.wavesplatform.Version

/**
  * System constants here.
  */
object Constants {
  val ApplicationName = "waves"
  val AgentName       = s"Waves v${Version.VersionString}"

  val UnitsInWave = 100000000L
  val TotalWaves  = 100000000L

  lazy val TransactionNames: Map[Byte, String] =
    Map(
      (1: Byte)  -> "GenesisTransaction",
      (2: Byte)  -> "PaymentTransaction",
      (3: Byte)  -> "IssueTransaction",
      (4: Byte)  -> "TransferTransaction",
      (5: Byte)  -> "ReissueTransaction",
      (6: Byte)  -> "BurnTransaction",
      (7: Byte)  -> "ExchangeTransaction",
      (8: Byte)  -> "LeaseTransaction",
      (9: Byte)  -> "LeaseCancelTransaction",
      (10: Byte) -> "CreateAliasTransaction",
      (11: Byte) -> "MassTransferTransaction",
      (12: Byte) -> "DataTransaction",
      (13: Byte) -> "SetScriptTransaction",
      (14: Byte) -> "SponsorFeeTransaction",
      (15: Byte) -> "SetAssetScriptTransaction",
      (16: Byte) -> "InvokeScriptTransaction",
      (17: Byte) -> "UpdateAssetInfoTransaction",
      (18: Byte) -> "InvokeExpressionTransaction"
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy