commonMain.io.eqoty.secret.std.contract.msg.shared.RoyaltyConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contract-msgs-jvm Show documentation
Show all versions of contract-msgs-jvm Show documentation
Eqoty Secret dapp utils library
The newest version!
package io.eqoty.secret.std.contract.msg.shared
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class RoyaltyConfig(
/// decimal places in royalty rates
@SerialName("decimal_places_in_rates")
val decimalPlacesInRates: UByte,
/// royalty rate
val rate: UShort,
)