Skip to content

Commit

Permalink
feat(relayer): merge alpha-2 to main (#13376)
Browse files Browse the repository at this point in the history
Co-authored-by: shadab-taiko <108871478+shadab-taiko@users.noreply.github.com>
Co-authored-by: Francisco Ramos <jscriptcoder@gmail.com>
  • Loading branch information
3 people committed Mar 21, 2023
1 parent c021613 commit 3148f6b
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Relayer

on:
push:
branches: [main]
branches: [main, alpha-2]
paths:
- "packages/relayer/**"
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions packages/relayer/indexer/filter_then_subscribe.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ func (svc *Service) FilterThenSubscribe(
return errors.Wrap(err, "svc.ethClient.ChainID()")
}

go scanBlocks(ctx, svc.ethClient, chainID)

// if subscribing to new events, skip filtering and subscribe
if watchMode == relayer.SubscribeWatchMode {
return svc.subscribe(ctx, chainID)
Expand Down
31 changes: 31 additions & 0 deletions packages/relayer/indexer/scan_blocks.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package indexer

import (
"context"
"math/big"

"github.com/ethereum/go-ethereum/core/types"
"github.com/taikoxyz/taiko-mono/packages/relayer"
)

func scanBlocks(ctx context.Context, ethClient ethClient, chainID *big.Int) {
headers := make(chan *types.Header)

sub, err := ethClient.SubscribeNewHead(ctx, headers)
if err != nil {
panic(err)
}

for {
select {
case <-sub.Err():
relayer.BlocksScannedError.Inc()

scanBlocks(ctx, ethClient, chainID)

return
case <-headers:
relayer.BlocksScanned.Inc()
}
}
}
2 changes: 2 additions & 0 deletions packages/relayer/indexer/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"time"

"github.com/cyberhorsey/errors"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
Expand All @@ -27,6 +28,7 @@ var (
type ethClient interface {
ChainID(ctx context.Context) (*big.Int, error)
HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)
SubscribeNewHead(ctx context.Context, ch chan<- *types.Header) (ethereum.Subscription, error)
}

type Service struct {
Expand Down
22 changes: 22 additions & 0 deletions packages/relayer/mock/eth_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"errors"
"math/big"
"time"

"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
Expand Down Expand Up @@ -71,3 +72,24 @@ func (c *EthClient) HeaderByHash(ctx context.Context, hash common.Hash) (*types.

return Header, nil
}

func (c *EthClient) SubscribeNewHead(ctx context.Context, ch chan<- *types.Header) (ethereum.Subscription, error) {
go func() {
t := time.NewTicker(time.Second * 1)

for {
select {
case <-ctx.Done():
return
case <-t.C:
ch <- &types.Header{}
}
}
}()

s := &Subscription{
errChan: make(chan error),
}

return s, nil
}
8 changes: 8 additions & 0 deletions packages/relayer/prometheus.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ var (
Name: "blocks_processed_ops_total",
Help: "The total number of processed blocks",
})
BlocksScanned = promauto.NewCounter(prometheus.CounterOpts{
Name: "blocks_scanned_ops_total",
Help: "The total number of scanned blocks. Acts as heartbeat metric.",
})
BlocksScannedError = promauto.NewCounter(prometheus.CounterOpts{
Name: "blocks_scanned_error_ops_total",
Help: "The total number of scanned block errors.",
})
RetriableEvents = promauto.NewCounter(prometheus.CounterOpts{
Name: "events_processed_retriable_status_ops_total",
Help: "The total number of processed events that ended up in Retriable status",
Expand Down

0 comments on commit 3148f6b

Please sign in to comment.