Skip to content

Commit

Permalink
chore(deps): switch to adder for indexer (#172)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <wolf31o2@blinklabs.io>
  • Loading branch information
wolf31o2 committed May 8, 2024
1 parent a6383b0 commit a84fc4e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ go 1.21

require (
github.com/Salvionied/apollo v1.0.11
github.com/blinklabs-io/adder v0.19.0
github.com/blinklabs-io/bursa v0.7.2
github.com/blinklabs-io/cardano-models v0.3.2
github.com/blinklabs-io/gouroboros v0.82.0
github.com/blinklabs-io/snek v0.18.0
github.com/dgraph-io/badger/v4 v4.2.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/minio/sha256-simd v1.0.1
Expand All @@ -23,8 +23,8 @@ require (
// XXX: uncomment when testing local changes to gouroboros
// replace github.com/blinklabs-io/gouroboros => ../gouroboros

// XXX: uncomment when testing local changes to snek
// replace github.com/blinklabs-io/snek => ../snek
// XXX: uncomment when testing local changes to adder
// replace github.com/blinklabs-io/adder => ../adder

// XXX: uncomment when testing local changes to cardano-models
// replace github.com/blinklabs-io/cardano-models => ../cardano-models
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ github.com/Salvionied/apollo v1.0.11/go.mod h1:5hgk1k4EiWmAoy2yU3q6+clmA4tgnHC4X
github.com/Salvionied/cbor/v2 v2.6.0 h1:OEwlZLiodLdNeM9wFoSydLvj6/rHRaxu5G8VzwXSeuY=
github.com/Salvionied/cbor/v2 v2.6.0/go.mod h1:oFxaUo/mQ5sG1k459nzctGdYa80jy0ZqZ9pln9C/fGw=
github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII=
github.com/blinklabs-io/adder v0.19.0 h1:f1i5GNlBXCxC6QqyoNbIh5Zlxel43p62GaQ7vIXCN/E=
github.com/blinklabs-io/adder v0.19.0/go.mod h1:3IscUaVqLUDhXtvmvEu3NgLKs0+VDcQ1Tn9xGkD8uvY=
github.com/blinklabs-io/bursa v0.7.2 h1:eBG+LpUaAwxMvzCq9q+HBTOxae4ErtLvxocEzmoMqRU=
github.com/blinklabs-io/bursa v0.7.2/go.mod h1:f/VQphNyrDROQKHbsnm1y8jFg7jxmZEM9QJgRA95UXA=
github.com/blinklabs-io/cardano-models v0.3.2 h1:3kH0sy/HhL0U2Go9yrlAlDzoT9BhjKExxzWFmoWUAxQ=
Expand All @@ -13,8 +15,6 @@ github.com/blinklabs-io/gouroboros v0.82.0 h1:bakuadyu8b9Rr7MX9WgZy3wgiopdZhoA7x
github.com/blinklabs-io/gouroboros v0.82.0/go.mod h1:uBExUfgZvhPqiur3N9ReoXv4LpqGmR9jSZjolr1nZ2w=
github.com/blinklabs-io/ouroboros-mock v0.3.0 h1:6VRWyhAv0k7nQEgzFpuqhS/n8OM+OAaLN/sCT5K2Hbc=
github.com/blinklabs-io/ouroboros-mock v0.3.0/go.mod h1:0dzTNEk/Kvqa7qYHDy7/Nn3OTt+EOosMknB37FRzI1k=
github.com/blinklabs-io/snek v0.18.0 h1:uiitNw03EWCBaGGknZ3EQ3RDEvHcwF67t+DgBWCmdJw=
github.com/blinklabs-io/snek v0.18.0/go.mod h1:71WM+abhoErwwFsjdLUwQ9BfVva5u5RKzu3vJWhUA9w=
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA=
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=
Expand Down
12 changes: 6 additions & 6 deletions internal/indexer/indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ import (
"github.com/blinklabs-io/bluefin/internal/storage"
"github.com/blinklabs-io/bluefin/internal/wallet"

"github.com/blinklabs-io/adder/event"
filter_chainsync "github.com/blinklabs-io/adder/filter/chainsync"
filter_event "github.com/blinklabs-io/adder/filter/event"
input_chainsync "github.com/blinklabs-io/adder/input/chainsync"
output_embedded "github.com/blinklabs-io/adder/output/embedded"
"github.com/blinklabs-io/adder/pipeline"
models "github.com/blinklabs-io/cardano-models"
"github.com/blinklabs-io/gouroboros/cbor"
ocommon "github.com/blinklabs-io/gouroboros/protocol/common"
"github.com/blinklabs-io/snek/event"
filter_chainsync "github.com/blinklabs-io/snek/filter/chainsync"
filter_event "github.com/blinklabs-io/snek/filter/event"
input_chainsync "github.com/blinklabs-io/snek/input/chainsync"
output_embedded "github.com/blinklabs-io/snek/output/embedded"
"github.com/blinklabs-io/snek/pipeline"
)

const (
Expand Down

0 comments on commit a84fc4e

Please sign in to comment.