64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
package geth
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/node"
|
|
"github.com/ethereum/go-ethereum"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
type Blockchain struct {
|
|
client *ethclient.Client
|
|
readGethHeaders chan *types.Header
|
|
outputBlocks chan core.Block
|
|
newHeadSubscription ethereum.Subscription
|
|
node core.Node
|
|
}
|
|
|
|
func NewBlockchain(ipcPath string) *Blockchain {
|
|
blockchain := Blockchain{}
|
|
rpcClient, _ := rpc.Dial(ipcPath)
|
|
client := ethclient.NewClient(rpcClient)
|
|
blockchain.node = node.Retrieve(rpcClient)
|
|
blockchain.client = client
|
|
return &blockchain
|
|
}
|
|
|
|
func (blockchain *Blockchain) GetLogs(contract core.Contract, startingBlockNumber *big.Int, endingBlockNumber *big.Int) ([]core.Log, error) {
|
|
if endingBlockNumber == nil {
|
|
endingBlockNumber = startingBlockNumber
|
|
}
|
|
contractAddress := common.HexToAddress(contract.Hash)
|
|
fc := ethereum.FilterQuery{
|
|
FromBlock: startingBlockNumber,
|
|
ToBlock: endingBlockNumber,
|
|
Addresses: []common.Address{contractAddress},
|
|
}
|
|
gethLogs, err := blockchain.client.FilterLogs(context.Background(), fc)
|
|
if err != nil {
|
|
return []core.Log{}, err
|
|
}
|
|
logs := GethLogsToCoreLogs(gethLogs)
|
|
return logs, nil
|
|
}
|
|
|
|
func (blockchain *Blockchain) Node() core.Node {
|
|
return blockchain.node
|
|
}
|
|
|
|
func (blockchain *Blockchain) GetBlockByNumber(blockNumber int64) core.Block {
|
|
gethBlock, _ := blockchain.client.BlockByNumber(context.Background(), big.NewInt(blockNumber))
|
|
return ToCoreBlock(gethBlock, blockchain.client)
|
|
}
|
|
|
|
func (blockchain *Blockchain) LastBlock() *big.Int {
|
|
block, _ := blockchain.client.HeaderByNumber(context.Background(), nil)
|
|
return block.Number
|
|
}
|