diff --git a/bivrost-solidity-types/src/main/kotlin/pm/gnosis/model/SolidityBase.kt b/bivrost-solidity-types/src/main/kotlin/pm/gnosis/model/SolidityBase.kt index 0073069..b66d94e 100644 --- a/bivrost-solidity-types/src/main/kotlin/pm/gnosis/model/SolidityBase.kt +++ b/bivrost-solidity-types/src/main/kotlin/pm/gnosis/model/SolidityBase.kt @@ -16,10 +16,6 @@ object SolidityBase { interface Type { fun encode(): String - - interface Decoder { - fun decode(source: String): T - } } interface StaticType : Type