forked from cerc-io/ipld-eth-server
10 lines
180 B
Go
10 lines
180 B
Go
package repositories
|
|
|
|
import "github.com/8thlight/vulcanizedb/pkg/core"
|
|
|
|
type WatchedContract struct {
|
|
Abi string
|
|
Hash string
|
|
Transactions []core.Transaction
|
|
}
|