commonMain.dev.icerock.moko.web3.entity.RpcRequest.kt Maven / Gradle / Ivy
/*
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
*/
package dev.icerock.moko.web3.entity
import kotlinx.serialization.Serializable
@Serializable
data class RpcRequest(
val jsonrpc: String,
val id: Int,
val method: String,
val params: List
) {
constructor(method: String, params: List) : this(
jsonrpc = "2.0",
id = 0,
method = method,
params = params
)
constructor(method: String, id: Int, params: List) : this(
jsonrpc = "2.0",
id = id,
method = method,
params = params
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy