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

org.sol4k.rpc.RpcRequest.kt Maven / Gradle / Ivy

There is a newer version: 0.5.4
Show newest version
package org.sol4k.rpc

import kotlinx.serialization.Serializable

@Serializable
internal data class RpcRequest(
    val method: String,
    val params: List,
    val jsonrpc: String,
    val id: Long,
) {
    constructor(method: String, params: List) : this(
        method,
        params,
        jsonrpc = "2.0",
        id = System.currentTimeMillis(),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy