Add drip file transformers

- for all three file functions on the drip contract
This commit is contained in:
Rob Mulholand
2018-09-12 11:35:32 -05:00
parent faefd620b1
commit a843de5eb7
48 changed files with 2543 additions and 18 deletions
+1 -2
View File
@@ -21,14 +21,13 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
type Converter interface {
Convert(contractAddress string, contractAbi string, ethLog types.Log) (TendModel, error)
}
type TendConverter struct {}
type TendConverter struct{}
func NewTendConverter() TendConverter {
return TendConverter{}