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

Commit

Permalink
Release v0.1.0 (#305)
Browse files Browse the repository at this point in the history
* rename module

* fix mocks after renaming
  • Loading branch information
MakMuftic committed Jul 15, 2022
1 parent 7e3b3aa commit 6ab7329
Show file tree
Hide file tree
Showing 131 changed files with 499 additions and 499 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ genmocks:
mockgen -destination=./relayer/mock/relayer.go -source=./relayer/relayer.go
mockgen -source=chains/evm/calls/calls.go -destination=chains/evm/calls/mock/calls.go
mockgen -source=chains/evm/calls/transactor/transact.go -destination=chains/evm/calls/transactor/mock/transact.go
mockgen -destination=chains/evm/executor/mock/voter.go github.com/ChainSafe/chainbridge-core/chains/evm/executor ChainClient,MessageHandler,BridgeContract
mockgen -destination=chains/evm/executor/mock/voter.go github.com/ChainSafe/sygma-core/chains/evm/executor ChainClient,MessageHandler,BridgeContract
mockgen -destination=./chains/evm/calls/transactor/itx/mock/itx.go -source=./chains/evm/calls/transactor/itx/itx.go
mockgen -destination=./chains/evm/calls/transactor/itx//mock/minimalForwarder.go -source=./chains/evm/calls/transactor/itx/minimalForwarder.go
mockgen -destination=chains/evm/cli/bridge/mock/vote-proposal.go -source=./chains/evm/cli/bridge/vote-proposal.go
2 changes: 1 addition & 1 deletion chains/evm/calls/calls.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/hex"
"math/big"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmclient"
"github.com/ChainSafe/sygma-core/chains/evm/calls/evmclient"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
Expand Down
16 changes: 8 additions & 8 deletions chains/evm/calls/contracts/bridge/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ import (
"strconv"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/deposit"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/deposit"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/common/hexutil"

"github.com/ChainSafe/chainbridge-core/chains/evm/executor/proposal"
"github.com/ChainSafe/chainbridge-core/relayer/message"
"github.com/ChainSafe/chainbridge-core/types"
"github.com/ChainSafe/sygma-core/chains/evm/executor/proposal"
"github.com/ChainSafe/sygma-core/relayer/message"
"github.com/ChainSafe/sygma-core/types"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/rs/zerolog/log"
Expand Down
16 changes: 8 additions & 8 deletions chains/evm/calls/contracts/bridge/bridge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import (
"math/big"
"testing"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/bridge"
mock_calls "github.com/ChainSafe/chainbridge-core/chains/evm/calls/mock"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"

mock_transactor "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/signAndSend"
"github.com/ChainSafe/chainbridge-core/chains/evm/executor/proposal"
"github.com/ChainSafe/chainbridge-core/relayer/message"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/bridge"
mock_calls "github.com/ChainSafe/sygma-core/chains/evm/calls/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"

mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/signAndSend"
"github.com/ChainSafe/sygma-core/chains/evm/executor/proposal"
"github.com/ChainSafe/sygma-core/relayer/message"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/centrifuge/assetStore.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package centrifuge

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/rs/zerolog/log"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
)
Expand Down
6 changes: 3 additions & 3 deletions chains/evm/calls/contracts/centrifuge/assetStore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package centrifuge_test

import (
"errors"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/centrifuge"
mock_calls "github.com/ChainSafe/chainbridge-core/chains/evm/calls/mock"
mock_transactor "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/centrifuge"
mock_calls "github.com/ChainSafe/sygma-core/chains/evm/calls/mock"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/mock"
"testing"

"github.com/ethereum/go-ethereum/common"
Expand Down
4 changes: 2 additions & 2 deletions chains/evm/calls/contracts/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package contracts
import (
"context"
"fmt"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package contracts

import (
"errors"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
mock_calls "github.com/ChainSafe/chainbridge-core/chains/evm/calls/mock"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
mock_transactor "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
mock_calls "github.com/ChainSafe/sygma-core/chains/evm/calls/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/mock"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/erc20/erc20.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package erc20

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"math/big"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/rs/zerolog/log"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/erc20/erc20Handler.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package erc20

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"strings"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/erc20/erc20_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"math/big"
"testing"

erc20 "github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/erc20"
mock_calls "github.com/ChainSafe/chainbridge-core/chains/evm/calls/mock"
mock_transactor "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/signAndSend"
erc20 "github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/erc20"
mock_calls "github.com/ChainSafe/sygma-core/chains/evm/calls/mock"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/signAndSend"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/erc721/erc721.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package erc721

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"math/big"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/rs/zerolog/log"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/erc721/erc721Handler.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package erc721

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"strings"
Expand Down
10 changes: 5 additions & 5 deletions chains/evm/calls/contracts/erc721/erc721_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"math/big"
"testing"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/erc721"
mock_calls "github.com/ChainSafe/chainbridge-core/chains/evm/calls/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/erc721"
mock_calls "github.com/ChainSafe/sygma-core/chains/evm/calls/mock"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
mock_transactor "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/signAndSend"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/signAndSend"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
6 changes: 3 additions & 3 deletions chains/evm/calls/contracts/forwarder/forwarder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"math/big"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
)
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/contracts/generic/genericHandler.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package generic

import (
"github.com/ChainSafe/chainbridge-core/chains/evm/calls"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/events/events.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package events

import (
"github.com/ChainSafe/chainbridge-core/types"
"github.com/ChainSafe/sygma-core/types"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
)
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/events/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math/big"
"strings"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
ethTypes "github.com/ethereum/go-ethereum/core/types"
Expand Down
6 changes: 3 additions & 3 deletions chains/evm/calls/events/listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"strings"
"testing"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/events"
"github.com/ChainSafe/chainbridge-core/types"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/events"
"github.com/ChainSafe/sygma-core/types"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/evmclient/evm-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"
"time"

"github.com/ChainSafe/chainbridge-core/crypto/secp256k1"
"github.com/ChainSafe/sygma-core/crypto/secp256k1"

"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/common"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/evmgaspricer/london_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"math/big"
"testing"

mock_evmgaspricer "github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmgaspricer/mock"
mock_evmgaspricer "github.com/ChainSafe/sygma-core/chains/evm/calls/evmgaspricer/mock"

"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/evmgaspricer/static_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math/big"
"testing"

mock_evmgaspricer "github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmgaspricer/mock"
mock_evmgaspricer "github.com/ChainSafe/sygma-core/chains/evm/calls/evmgaspricer/mock"

"github.com/golang/mock/gomock"

Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/evmtransaction/evm-tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package evmtransaction

import (
"crypto/ecdsa"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmclient"
"github.com/ChainSafe/sygma-core/chains/evm/calls/evmclient"
"math/big"

"github.com/ethereum/go-ethereum/accounts/abi/bind"
Expand Down
6 changes: 3 additions & 3 deletions chains/evm/calls/evmtransaction/evm-tx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"math/big"
"testing"

evmgaspricer "github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmgaspricer"
mock_evmgaspricer "github.com/ChainSafe/chainbridge-core/chains/evm/calls/evmgaspricer/mock"
evmgaspricer "github.com/ChainSafe/sygma-core/chains/evm/calls/evmgaspricer"
mock_evmgaspricer "github.com/ChainSafe/sygma-core/chains/evm/calls/evmgaspricer/mock"

"github.com/ChainSafe/chainbridge-core/keystore"
"github.com/ChainSafe/sygma-core/keystore"
"github.com/ethereum/go-ethereum/core/types"

"github.com/ethereum/go-ethereum/common"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/calls/mock/calls.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions chains/evm/calls/transactor/itx/itx.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"math/big"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/chainbridge-core/crypto/secp256k1"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/crypto/secp256k1"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
Expand Down
8 changes: 4 additions & 4 deletions chains/evm/calls/transactor/itx/itx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"math/big"
"testing"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/itx"
mock_itx "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/itx/mock"
"github.com/ChainSafe/chainbridge-core/crypto/secp256k1"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/itx"
mock_itx "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/itx/mock"
"github.com/ChainSafe/sygma-core/crypto/secp256k1"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/suite"
Expand Down
6 changes: 3 additions & 3 deletions chains/evm/calls/transactor/itx/minimalForwarder.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"math/big"
"sync"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/forwarder"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/chainbridge-core/crypto/secp256k1"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/forwarder"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/crypto/secp256k1"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/crypto"
Expand Down
12 changes: 6 additions & 6 deletions chains/evm/calls/transactor/itx/minimalForwarder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"strings"
"testing"

"github.com/ChainSafe/chainbridge-core/chains/evm/calls/consts"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/contracts/forwarder"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor"
"github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/itx"
mock_forwarder "github.com/ChainSafe/chainbridge-core/chains/evm/calls/transactor/itx/mock"
"github.com/ChainSafe/chainbridge-core/crypto/secp256k1"
"github.com/ChainSafe/sygma-core/chains/evm/calls/consts"
"github.com/ChainSafe/sygma-core/chains/evm/calls/contracts/forwarder"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/itx"
mock_forwarder "github.com/ChainSafe/sygma-core/chains/evm/calls/transactor/itx/mock"
"github.com/ChainSafe/sygma-core/crypto/secp256k1"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/golang/mock/gomock"
Expand Down
Loading

0 comments on commit 6ab7329

Please sign in to comment.