Auth

sealed class Auth

Authentication mechanism for RPC connection to full node.

Types

Link copied to clipboard
data class Cookie(val file: String) : Auth

Authentication with a cookie file

Link copied to clipboard
object None : Auth

No authentication

Link copied to clipboard
data class UserPass(val username: String, val password: String) : Auth

Authentication with username and password, usually Auth.Cookie should be preferred

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard