Package-level declarations

Types

Link copied to clipboard
@Serializable
data class CreateAddressResponse(val id: Int, val jsonrpc: String, val result: CreateAddressResponseResult)

Create address response.

Link copied to clipboard
@Serializable
data class CreateAddressResponseResult(val address: String)

Create address response result.

Link copied to clipboard
@Serializable
data class CreateIntegratedAddressResponse(val id: Int, val jsonrpc: String, val result: CreateIntegratedAddressResponseResult)

Create integrated address response.

Link copied to clipboard
@Serializable
data class CreateIntegratedAddressResponseResult(val integratedAddress: String)

Create integrated address response result.

Link copied to clipboard
@Serializable
data class DeleteAddressResponse(val id: Int, val jsonrpc: String, val result: Map<String, Any>)

Delete address response.

Link copied to clipboard
@Serializable
data class GetAddressesResponse(val id: Int, val jsonrpc: String, val result: GetAddressesResponseResult)

Get addresses response.

Link copied to clipboard
@Serializable
data class GetAddressesResponseResult(val addresses: List<String>)

Get addresses response result.