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

commonMain.dev.icerock.moko.web3.contract.Encoder.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.contract

sealed interface Encoder {
    fun encode(item: T): ByteArray
    fun decode(source: ByteArray): T
}

/* These types created to split decoding head and dynamic data */

interface StaticEncoder : Encoder
interface DynamicEncoder : Encoder




© 2015 - 2025 Weber Informatics LLC | Privacy Policy