Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

chore(deps): depend on blobstream contracts #550

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/blobstream/relayer/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"time"

blobstreamwrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/QuantumGravityBridge.sol"
blobstreamwrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/Blobstream.sol"

evm2 "github.com/celestiaorg/orchestrator-relayer/cmd/blobstream/keys/evm"
"github.com/celestiaorg/orchestrator-relayer/p2p"
Expand Down
3 changes: 2 additions & 1 deletion e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ require (
)

require (
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0
github.com/celestiaorg/orchestrator-relayer v0.0.0-00010101000000-000000000000
github.com/celestiaorg/quantum-gravity-bridge/v2 v2.1.2
github.com/cosmos/cosmos-sdk v0.46.14
github.com/libp2p/go-libp2p v0.31.0
github.com/tendermint/tendermint v0.34.28
Expand Down Expand Up @@ -75,6 +75,7 @@ require (
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/buger/goterm v1.0.4 // indirect
github.com/celestiaorg/merkletree v0.0.0-20210714075610-a84dc3ddbbe4 // indirect
github.com/celestiaorg/quantum-gravity-bridge/v2 v2.1.2 // indirect
github.com/celestiaorg/rsmt2d v0.11.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions e2e/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@ github.com/bugsnag/panicwrap v1.2.0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywR
github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34=
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0 h1:Qp5+O4g+eUlIG8ZcR8BQcsVclfDEO5UcmVdSVUmAL8U=
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0/go.mod h1:lXPA8/Wvabb3Cr6uaPvuz4cL4OitKFpmYKXH+UEPEDo=
github.com/celestiaorg/celestia-app v1.1.0 h1:8TM/8xnZ+xf7NfEjYZ9XBEGuVG1QT8hPD3uh05RYEsE=
github.com/celestiaorg/celestia-app v1.1.0/go.mod h1:1uAaesXbMkV6EwfBfULXBKYhjHP8DGSVpA3BfKM4QUw=
github.com/celestiaorg/celestia-core v1.29.0-tm-v0.34.29 h1:Fd7ymPUzExPGNl2gZw4i5S74arMw+iDHLE78M/cCxl4=
Expand Down
2 changes: 1 addition & 1 deletion e2e/qgb_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

blobstreamwrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/QuantumGravityBridge.sol"
blobstreamwrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/Blobstream.sol"

"github.com/celestiaorg/celestia-app/app"
"github.com/celestiaorg/celestia-app/app/encoding"
Expand Down
4 changes: 2 additions & 2 deletions evm/evm_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
coregethtypes "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethclient"
tmlog "github.com/tendermint/tendermint/libs/log"

Check failure on line 15 in evm/evm_client.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `gofumpt`-ed (gofumpt)
"github.com/celestiaorg/celestia-app/x/qgb/types"
proxywrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/ERC1967Proxy.sol"
blobstreamwrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/QuantumGravityBridge.sol"
proxywrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/ERC1967Proxy.sol"

Check failure on line 17 in evm/evm_client.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `gofumpt`-ed (gofumpt)
blobstreamwrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/Blobstream.sol"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
)

Expand Down
2 changes: 1 addition & 1 deletion evm/evm_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"math/big"

"github.com/ethereum/go-ethereum/accounts/keystore"

Check failure on line 8 in evm/evm_client_test.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not `gofumpt`-ed (gofumpt)
celestiatypes "github.com/celestiaorg/celestia-app/x/qgb/types"
"github.com/celestiaorg/orchestrator-relayer/evm"
"github.com/celestiaorg/orchestrator-relayer/types"
wrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/QuantumGravityBridge.sol"
wrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/Blobstream.sol"
ethcmn "github.com/ethereum/go-ethereum/common"
)

Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require (
)

require (
github.com/celestiaorg/quantum-gravity-bridge/v2 v2.1.2
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0
github.com/cosmos/cosmos-sdk v0.46.14
github.com/dgraph-io/badger/v2 v2.2007.4
github.com/ipfs/boxo v0.13.1
Expand Down Expand Up @@ -63,6 +63,7 @@ require (
github.com/bits-and-blooms/bitset v1.7.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/celestiaorg/merkletree v0.0.0-20210714075610-a84dc3ddbbe4 // indirect
github.com/celestiaorg/quantum-gravity-bridge/v2 v2.1.2 // indirect
github.com/celestiaorg/rsmt2d v0.11.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7
github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34=
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0 h1:Qp5+O4g+eUlIG8ZcR8BQcsVclfDEO5UcmVdSVUmAL8U=
github.com/celestiaorg/blobstream-contracts/v3 v3.0.0/go.mod h1:lXPA8/Wvabb3Cr6uaPvuz4cL4OitKFpmYKXH+UEPEDo=
github.com/celestiaorg/celestia-app v1.1.0 h1:8TM/8xnZ+xf7NfEjYZ9XBEGuVG1QT8hPD3uh05RYEsE=
github.com/celestiaorg/celestia-app v1.1.0/go.mod h1:1uAaesXbMkV6EwfBfULXBKYhjHP8DGSVpA3BfKM4QUw=
github.com/celestiaorg/celestia-core v1.29.0-tm-v0.34.29 h1:Fd7ymPUzExPGNl2gZw4i5S74arMw+iDHLE78M/cCxl4=
Expand Down
2 changes: 1 addition & 1 deletion relayer/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import (

"github.com/ethereum/go-ethereum/accounts/abi/bind"

wrapper "github.com/celestiaorg/blobstream-contracts/v3/wrappers/Blobstream.sol"
celestiatypes "github.com/celestiaorg/celestia-app/x/qgb/types"
"github.com/celestiaorg/orchestrator-relayer/evm"
"github.com/celestiaorg/orchestrator-relayer/p2p"
"github.com/celestiaorg/orchestrator-relayer/rpc"
"github.com/celestiaorg/orchestrator-relayer/types"
wrapper "github.com/celestiaorg/quantum-gravity-bridge/v2/wrappers/QuantumGravityBridge.sol"
ethcmn "github.com/ethereum/go-ethereum/common"
tmlog "github.com/tendermint/tendermint/libs/log"
)
Expand Down
Loading