Allow users to watch and print summaries for contracts
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
|
||||
"log"
|
||||
|
||||
"github.com/8thlight/vulcanizedb/cmd"
|
||||
"github.com/8thlight/vulcanizedb/pkg/repositories"
|
||||
"github.com/8thlight/vulcanizedb/pkg/watched_contracts"
|
||||
)
|
||||
|
||||
func main() {
|
||||
environment := flag.String("environment", "", "Environment name")
|
||||
contractHash := flag.String("contract-hash", "", "Contract hash to show summary")
|
||||
flag.Parse()
|
||||
config := cmd.LoadConfig(*environment)
|
||||
|
||||
repository := repositories.NewPostgres(config.Database)
|
||||
contractSummary, err := watched_contracts.NewSummary(repository, *contractHash)
|
||||
if err != nil {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
watched_contracts.PrintReport(contractSummary)
|
||||
}
|
||||
Reference in New Issue
Block a user