forked from cerc-io/ipld-eth-server
* Rename geth package structs to not be prefaced with package name * No longer need to dump schema since Travis uses migrate * Rearrange history package * Removed double request for receipt from block rewards * Remove Listener + Observers and Replace w/ Polling Head * Potential Short term Issue w/ Infura (ignore these tests for now)
27 lines
764 B
Go
27 lines
764 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"github.com/8thlight/vulcanizedb/cmd"
|
|
"github.com/8thlight/vulcanizedb/pkg/core"
|
|
"github.com/8thlight/vulcanizedb/pkg/geth"
|
|
)
|
|
|
|
func main() {
|
|
environment := flag.String("environment", "", "Environment name")
|
|
contractHash := flag.String("contract-hash", "", "contract-hash=x1234")
|
|
abiFilepath := flag.String("abi-filepath", "", "path/to/abifile.json")
|
|
flag.Parse()
|
|
|
|
contractAbiString := cmd.GetAbi(*abiFilepath, *contractHash)
|
|
config := cmd.LoadConfig(*environment)
|
|
blockchain := geth.NewBlockchain(config.Client.IPCPath)
|
|
repository := cmd.LoadPostgres(config.Database, blockchain.Node())
|
|
watchedContract := core.Contract{
|
|
Abi: contractAbiString,
|
|
Hash: *contractHash,
|
|
}
|
|
repository.CreateContract(watchedContract)
|
|
}
|