diff --git a/core/chains/evm/config/chain_scoped.go b/core/chains/evm/config/chain_scoped.go index d0fbba7e..6fc19b15 100644 --- a/core/chains/evm/config/chain_scoped.go +++ b/core/chains/evm/config/chain_scoped.go @@ -6,8 +6,8 @@ import ( "go.uber.org/multierr" - ocr "github.com/goplugin/libocr/offchainreporting" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocr "github.com/goplugin/plugin-libocr/offchainreporting" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/assets" "github.com/goplugin/plugin-common/pkg/logger" diff --git a/core/config/p2p_v2_config.go b/core/config/p2p_v2_config.go index 53ead49b..8f63f9ed 100644 --- a/core/config/p2p_v2_config.go +++ b/core/config/p2p_v2_config.go @@ -3,7 +3,7 @@ package config import ( commonconfig "github.com/goplugin/plugin-common/pkg/config" - ocrcommontypes "github.com/goplugin/libocr/commontypes" + ocrcommontypes "github.com/goplugin/plugin-libocr/commontypes" ) type V2 interface { diff --git a/core/config/toml/types.go b/core/config/toml/types.go index 98e83aea..3752c429 100644 --- a/core/config/toml/types.go +++ b/core/config/toml/types.go @@ -12,7 +12,7 @@ import ( "go.uber.org/multierr" "go.uber.org/zap/zapcore" - ocrcommontypes "github.com/goplugin/libocr/commontypes" + ocrcommontypes "github.com/goplugin/plugin-libocr/commontypes" commonconfig "github.com/goplugin/plugin-common/pkg/config" "github.com/goplugin/pluginv3.0/v2/core/build" diff --git a/core/internal/cltest/cltest.go b/core/internal/cltest/cltest.go index 9f159cca..93882224 100644 --- a/core/internal/cltest/cltest.go +++ b/core/internal/cltest/cltest.go @@ -35,7 +35,7 @@ import ( "github.com/jmoiron/sqlx" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/loop" "github.com/goplugin/plugin-common/pkg/utils/mailbox" diff --git a/core/internal/cltest/factories.go b/core/internal/cltest/factories.go index b019e85b..c95d0a97 100644 --- a/core/internal/cltest/factories.go +++ b/core/internal/cltest/factories.go @@ -16,7 +16,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" "github.com/google/uuid" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/stretchr/testify/require" "github.com/urfave/cli" "gopkg.in/guregu/null.v4" diff --git a/core/internal/features/features_test.go b/core/internal/features/features_test.go index 65e58935..c53e388c 100644 --- a/core/internal/features/features_test.go +++ b/core/internal/features/features_test.go @@ -33,11 +33,11 @@ import ( "go.uber.org/zap/zaptest/observer" "gopkg.in/guregu/null.v4" - ocrcommontypes "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/gethwrappers/testoffchainaggregator" - "github.com/goplugin/libocr/offchainreporting/confighelper" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrcommontypes "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers/testoffchainaggregator" + "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" commonconfig "github.com/goplugin/plugin-common/pkg/config" "github.com/goplugin/plugin-common/pkg/services/servicetest" diff --git a/core/internal/features/ocr2/features_ocr2_test.go b/core/internal/features/ocr2/features_ocr2_test.go index 8a83bed2..00317ee6 100644 --- a/core/internal/features/ocr2/features_ocr2_test.go +++ b/core/internal/features/ocr2/features_ocr2_test.go @@ -27,12 +27,12 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" - testoffchainaggregator2 "github.com/goplugin/libocr/gethwrappers2/testocr2aggregator" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + testoffchainaggregator2 "github.com/goplugin/plugin-libocr/gethwrappers2/testocr2aggregator" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonconfig "github.com/goplugin/plugin-common/pkg/config" diff --git a/core/scripts/chaincli/handler/keeper_deployer.go b/core/scripts/chaincli/handler/keeper_deployer.go index 48c0ceee..ed9a5fce 100644 --- a/core/scripts/chaincli/handler/keeper_deployer.go +++ b/core/scripts/chaincli/handler/keeper_deployer.go @@ -16,9 +16,9 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/umbracle/ethgo/abi" - ocr2config "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr2config "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/core/scripts/chaincli/config" diff --git a/core/scripts/chaincli/handler/ocr2_config.go b/core/scripts/chaincli/handler/ocr2_config.go index 51a42a74..317cb37e 100644 --- a/core/scripts/chaincli/handler/ocr2_config.go +++ b/core/scripts/chaincli/handler/ocr2_config.go @@ -12,7 +12,7 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/olekukonko/tablewriter" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" ocr2keepers20config "github.com/goplugin/plugin-automation/pkg/v2/config" diff --git a/core/scripts/chaincli/handler/report.go b/core/scripts/chaincli/handler/report.go index 7e8a5bbb..19bf00c2 100644 --- a/core/scripts/chaincli/handler/report.go +++ b/core/scripts/chaincli/handler/report.go @@ -17,7 +17,7 @@ import ( "github.com/ethereum/go-ethereum/rpc" "github.com/olekukonko/tablewriter" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers20 "github.com/goplugin/plugin-automation/pkg/v2" diff --git a/core/scripts/functions/src/generate_ocr2_config_cmd.go b/core/scripts/functions/src/generate_ocr2_config_cmd.go index 575f6f92..02361a9b 100644 --- a/core/scripts/functions/src/generate_ocr2_config_cmd.go +++ b/core/scripts/functions/src/generate_ocr2_config_cmd.go @@ -13,8 +13,8 @@ import ( "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" helpers "github.com/goplugin/pluginv3.0/core/scripts/common" "github.com/goplugin/pluginv3.0/v2/core/services/ocr2/plugins/functions/config" diff --git a/core/scripts/go.mod b/core/scripts/go.mod index 3a5767fa..4afbc6f1 100644 --- a/core/scripts/go.mod +++ b/core/scripts/go.mod @@ -23,7 +23,7 @@ require ( github.com/goplugin/plugin-common v0.1.7-0.20240216174848-c7f1809138d6 github.com/goplugin/plugin-vrf v0.0.0-20231120191722-fef03814f868 github.com/goplugin/pluginv3.0/v2 v2.0.0-00010101000000-000000000000 - github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a + github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a github.com/spf13/cobra v1.6.1 github.com/spf13/viper v1.15.0 github.com/stretchr/testify v1.8.4 diff --git a/core/scripts/go.sum b/core/scripts/go.sum index 9b131d6b..c7207b7a 100644 --- a/core/scripts/go.sum +++ b/core/scripts/go.sum @@ -1189,8 +1189,8 @@ github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16 h1:TFe+FvzxClbl github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16/go.mod h1:lBS5MtSSBZk0SHc66KACcjjlU6WzEVP/8pwz68aMkCI= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f h1:hgJif132UCdjo8u43i7iPN1/MFnu49hv7lFGFftCHKU= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f/go.mod h1:MvMXoufZAtqExNexqi4cjrNYE9MefKddKylxjS+//n0= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1 h1:yiKnypAqP8l0OX0P3klzZ7SCcBUxy5KqTAKZmQOvSQE= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1/go.mod h1:q6f4fe39oZPdsh1i57WznEZgxd8siidMaSFq3wdPmVg= github.com/goplugin/tdh2/go/tdh2 v0.0.0-20230906073235-9e478e5e19f1 h1:Dai1bn+Q5cpeGMQwRdjOdVjG8mmFFROVkSKuUgBErRQ= diff --git a/core/scripts/ocr2vrf/util.go b/core/scripts/ocr2vrf/util.go index bccf22de..bc0069d2 100644 --- a/core/scripts/ocr2vrf/util.go +++ b/core/scripts/ocr2vrf/util.go @@ -19,8 +19,8 @@ import ( "go.dedis.ch/kyber/v3/group/edwards25519" "go.dedis.ch/kyber/v3/pairing" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-vrf/altbn_128" "github.com/goplugin/plugin-vrf/dkg" diff --git a/core/services/chainlink/config_p2p.go b/core/services/chainlink/config_p2p.go index 05adbcab..2230eb19 100644 --- a/core/services/chainlink/config_p2p.go +++ b/core/services/chainlink/config_p2p.go @@ -6,7 +6,7 @@ import ( "github.com/goplugin/pluginv3.0/v2/core/config/toml" "github.com/goplugin/pluginv3.0/v2/core/services/keystore/keys/p2pkey" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" ) type p2p struct { diff --git a/core/services/chainlink/config_p2p_test.go b/core/services/chainlink/config_p2p_test.go index de037501..f63836d9 100644 --- a/core/services/chainlink/config_p2p_test.go +++ b/core/services/chainlink/config_p2p_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" ) func TestP2PConfig(t *testing.T) { diff --git a/core/services/chainlink/config_test.go b/core/services/chainlink/config_test.go index 1cb6b59d..34d3a028 100644 --- a/core/services/chainlink/config_test.go +++ b/core/services/chainlink/config_test.go @@ -15,7 +15,7 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zapcore" - ocrcommontypes "github.com/goplugin/libocr/commontypes" + ocrcommontypes "github.com/goplugin/plugin-libocr/commontypes" commonassets "github.com/goplugin/plugin-common/pkg/assets" "github.com/goplugin/plugin-common/pkg/config" diff --git a/core/services/functions/listener.go b/core/services/functions/listener.go index b8d4e021..1f3615e5 100644 --- a/core/services/functions/listener.go +++ b/core/services/functions/listener.go @@ -13,7 +13,7 @@ import ( "github.com/prometheus/client_golang/prometheus/promauto" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/keeper/integration_test.go b/core/services/keeper/integration_test.go index 8d9e596f..9a48f3e1 100644 --- a/core/services/keeper/integration_test.go +++ b/core/services/keeper/integration_test.go @@ -13,7 +13,7 @@ import ( "github.com/ethereum/go-ethereum/eth/ethconfig" "github.com/onsi/gomega" "github.com/pkg/errors" - "github.com/goplugin/libocr/gethwrappers/link_token_interface" + "github.com/goplugin/plugin-libocr/gethwrappers/link_token_interface" "github.com/stretchr/testify/require" commonconfig "github.com/goplugin/plugin-common/pkg/config" diff --git a/core/services/keystore/keys/ocr2key/cosmos_keyring.go b/core/services/keystore/keys/ocr2key/cosmos_keyring.go index 3fed40d8..c607a52b 100644 --- a/core/services/keystore/keys/ocr2key/cosmos_keyring.go +++ b/core/services/keystore/keys/ocr2key/cosmos_keyring.go @@ -7,9 +7,9 @@ import ( "github.com/hdevalence/ed25519consensus" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2/types" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "golang.org/x/crypto/blake2s" "github.com/goplugin/pluginv3.0/v2/core/utils" diff --git a/core/services/keystore/keys/ocr2key/cosmos_keyring_test.go b/core/services/keystore/keys/ocr2key/cosmos_keyring_test.go index d5e33252..e4bb488e 100644 --- a/core/services/keystore/keys/ocr2key/cosmos_keyring_test.go +++ b/core/services/keystore/keys/ocr2key/cosmos_keyring_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/require" ) diff --git a/core/services/keystore/keys/ocr2key/evm_keyring.go b/core/services/keystore/keys/ocr2key/evm_keyring.go index c431008c..9431006f 100644 --- a/core/services/keystore/keys/ocr2key/evm_keyring.go +++ b/core/services/keystore/keys/ocr2key/evm_keyring.go @@ -8,9 +8,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/goplugin/libocr/offchainreporting2/types" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ ocrtypes.OnchainKeyring = &evmKeyring{} diff --git a/core/services/keystore/keys/ocr2key/evm_keyring_test.go b/core/services/keystore/keys/ocr2key/evm_keyring_test.go index f4a0f82e..24f7f1ac 100644 --- a/core/services/keystore/keys/ocr2key/evm_keyring_test.go +++ b/core/services/keystore/keys/ocr2key/evm_keyring_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2/types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" ) diff --git a/core/services/keystore/keys/ocr2key/generic_key_bundle.go b/core/services/keystore/keys/ocr2key/generic_key_bundle.go index 8f7d3397..364ca435 100644 --- a/core/services/keystore/keys/ocr2key/generic_key_bundle.go +++ b/core/services/keystore/keys/ocr2key/generic_key_bundle.go @@ -9,7 +9,7 @@ import ( "io" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/keystore/chaintype" "github.com/goplugin/pluginv3.0/v2/core/store/models" diff --git a/core/services/keystore/keys/ocr2key/key_bundle.go b/core/services/keystore/keys/ocr2key/key_bundle.go index 9506b36c..e71d1c2d 100644 --- a/core/services/keystore/keys/ocr2key/key_bundle.go +++ b/core/services/keystore/keys/ocr2key/key_bundle.go @@ -7,7 +7,7 @@ import ( "io" "github.com/ethereum/go-ethereum/crypto/secp256k1" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/keystore/chaintype" "github.com/goplugin/pluginv3.0/v2/core/services/keystore/keys/starkkey" diff --git a/core/services/keystore/keys/ocr2key/offchain_keyring.go b/core/services/keystore/keys/ocr2key/offchain_keyring.go index fdddc93e..38c1c038 100644 --- a/core/services/keystore/keys/ocr2key/offchain_keyring.go +++ b/core/services/keystore/keys/ocr2key/offchain_keyring.go @@ -11,7 +11,7 @@ import ( "golang.org/x/crypto/curve25519" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ ocrtypes.OffchainKeyring = &OffchainKeyring{} diff --git a/core/services/keystore/keys/ocr2key/solana_keyring.go b/core/services/keystore/keys/ocr2key/solana_keyring.go index 69b45d36..6c716ae3 100644 --- a/core/services/keystore/keys/ocr2key/solana_keyring.go +++ b/core/services/keystore/keys/ocr2key/solana_keyring.go @@ -8,9 +8,9 @@ import ( "github.com/ethereum/go-ethereum/crypto" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2/types" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ ocrtypes.OnchainKeyring = &solanaKeyring{} diff --git a/core/services/keystore/keys/ocr2key/solana_keyring_test.go b/core/services/keystore/keys/ocr2key/solana_keyring_test.go index 15ac848c..7d42c8fb 100644 --- a/core/services/keystore/keys/ocr2key/solana_keyring_test.go +++ b/core/services/keystore/keys/ocr2key/solana_keyring_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) func TestSolanaKeyring_Sign_Verify(t *testing.T) { diff --git a/core/services/keystore/keys/ocrkey/key_bundle.go b/core/services/keystore/keys/ocrkey/key_bundle.go index c7b5b98f..9947b21e 100644 --- a/core/services/keystore/keys/ocrkey/key_bundle.go +++ b/core/services/keystore/keys/ocrkey/key_bundle.go @@ -14,7 +14,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/keystore" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "golang.org/x/crypto/curve25519" "github.com/goplugin/pluginv3.0/v2/core/store/models" diff --git a/core/services/keystore/keys/ocrkey/key_v2.go b/core/services/keystore/keys/ocrkey/key_v2.go index 1a85c0d6..136a8a26 100644 --- a/core/services/keystore/keys/ocrkey/key_v2.go +++ b/core/services/keystore/keys/ocrkey/key_v2.go @@ -13,7 +13,7 @@ import ( "github.com/ethereum/go-ethereum/crypto/secp256k1" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "golang.org/x/crypto/curve25519" ) diff --git a/core/services/keystore/keys/ocrkey/on_chain_signing_address.go b/core/services/keystore/keys/ocrkey/on_chain_signing_address.go index 6f47b8ec..a23c469d 100644 --- a/core/services/keystore/keys/ocrkey/on_chain_signing_address.go +++ b/core/services/keystore/keys/ocrkey/on_chain_signing_address.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" ) const onChainSigningAddressPrefix = "ocrsad_" diff --git a/core/services/keystore/keys/p2pkey/key.go b/core/services/keystore/keys/p2pkey/key.go index 74214396..7aca8f06 100644 --- a/core/services/keystore/keys/p2pkey/key.go +++ b/core/services/keystore/keys/p2pkey/key.go @@ -11,7 +11,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/keystore" "github.com/pkg/errors" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" ) // Key represents a p2p private key diff --git a/core/services/keystore/keys/p2pkey/key_v2.go b/core/services/keystore/keys/p2pkey/key_v2.go index 7e92f1d9..07310f05 100644 --- a/core/services/keystore/keys/p2pkey/key_v2.go +++ b/core/services/keystore/keys/p2pkey/key_v2.go @@ -9,7 +9,7 @@ import ( "fmt" "math/big" - "github.com/goplugin/libocr/ragep2p/types" + "github.com/goplugin/plugin-libocr/ragep2p/types" ) var libp2pPBPrefix = []byte{0x08, 0x01, 0x12, 0x40} diff --git a/core/services/keystore/keys/p2pkey/key_v2_test.go b/core/services/keystore/keys/p2pkey/key_v2_test.go index 3e21355e..37a21201 100644 --- a/core/services/keystore/keys/p2pkey/key_v2_test.go +++ b/core/services/keystore/keys/p2pkey/key_v2_test.go @@ -6,7 +6,7 @@ import ( "encoding/hex" "testing" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/core/services/keystore/keys/p2pkey/peer_id.go b/core/services/keystore/keys/p2pkey/peer_id.go index 5fae4611..7b8d3dce 100644 --- a/core/services/keystore/keys/p2pkey/peer_id.go +++ b/core/services/keystore/keys/p2pkey/peer_id.go @@ -8,7 +8,7 @@ import ( "github.com/pkg/errors" - "github.com/goplugin/libocr/ragep2p/types" + "github.com/goplugin/plugin-libocr/ragep2p/types" ) const peerIDPrefix = "p2p_" diff --git a/core/services/keystore/keys/starkkey/ocr2key.go b/core/services/keystore/keys/starkkey/ocr2key.go index c87a6b93..8d560b61 100644 --- a/core/services/keystore/keys/starkkey/ocr2key.go +++ b/core/services/keystore/keys/starkkey/ocr2key.go @@ -9,8 +9,8 @@ import ( "github.com/goplugin/caigo" caigotypes "github.com/goplugin/caigo/types" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ types.OnchainKeyring = &OCR2Key{} diff --git a/core/services/keystore/keys/starkkey/ocr2key_test.go b/core/services/keystore/keys/starkkey/ocr2key_test.go index c1ba9a56..99e52fad 100644 --- a/core/services/keystore/keys/starkkey/ocr2key_test.go +++ b/core/services/keystore/keys/starkkey/ocr2key_test.go @@ -8,7 +8,7 @@ import ( caigotypes "github.com/goplugin/caigo/types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/core/services/ocr/config.go b/core/services/ocr/config.go index 288b1b0d..b6a78a84 100644 --- a/core/services/ocr/config.go +++ b/core/services/ocr/config.go @@ -1,7 +1,7 @@ package ocr import ( - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" evmconfig "github.com/goplugin/pluginv3.0/v2/core/chains/evm/config" "github.com/goplugin/pluginv3.0/v2/core/services/job" diff --git a/core/services/ocr/config_overrider.go b/core/services/ocr/config_overrider.go index 28698270..24809203 100644 --- a/core/services/ocr/config_overrider.go +++ b/core/services/ocr/config_overrider.go @@ -10,7 +10,7 @@ import ( "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/ocr/config_overrider_test.go b/core/services/ocr/config_overrider_test.go index e63cfc97..9678d036 100644 --- a/core/services/ocr/config_overrider_test.go +++ b/core/services/ocr/config_overrider_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" evmutils "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils" diff --git a/core/services/ocr/contract_config_subscription.go b/core/services/ocr/contract_config_subscription.go index 6d775a18..1e6c730b 100644 --- a/core/services/ocr/contract_config_subscription.go +++ b/core/services/ocr/contract_config_subscription.go @@ -1,7 +1,7 @@ package ocr import ( - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" ) var _ ocrtypes.ContractConfigSubscription = &OCRContractConfigSubscription{} diff --git a/core/services/ocr/contract_tracker.go b/core/services/ocr/contract_tracker.go index 7e0dbb98..208bf0b4 100644 --- a/core/services/ocr/contract_tracker.go +++ b/core/services/ocr/contract_tracker.go @@ -16,9 +16,9 @@ import ( "github.com/jmoiron/sqlx" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/offchainreporting/confighelper" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/plugin-common/pkg/utils/mailbox" diff --git a/core/services/ocr/contract_tracker_test.go b/core/services/ocr/contract_tracker_test.go index dffdc2aa..de10bdbe 100644 --- a/core/services/ocr/contract_tracker_test.go +++ b/core/services/ocr/contract_tracker_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" "github.com/goplugin/plugin-common/pkg/utils/mailbox/mailboxtest" diff --git a/core/services/ocr/contract_transmitter.go b/core/services/ocr/contract_transmitter.go index eb6b70aa..900406af 100644 --- a/core/services/ocr/contract_transmitter.go +++ b/core/services/ocr/contract_transmitter.go @@ -11,8 +11,8 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi/bind" gethCommon "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/log" ) diff --git a/core/services/ocr/contract_transmitter_test.go b/core/services/ocr/contract_transmitter_test.go index cb261780..984c0137 100644 --- a/core/services/ocr/contract_transmitter_test.go +++ b/core/services/ocr/contract_transmitter_test.go @@ -7,7 +7,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/ocr/database.go b/core/services/ocr/database.go index 95616a3a..9713594f 100644 --- a/core/services/ocr/database.go +++ b/core/services/ocr/database.go @@ -12,8 +12,8 @@ import ( "go.uber.org/multierr" "github.com/jmoiron/sqlx" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils/big" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/ocr/database_test.go b/core/services/ocr/database_test.go index bb185ae9..c8f1ce10 100644 --- a/core/services/ocr/database_test.go +++ b/core/services/ocr/database_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils" "github.com/goplugin/pluginv3.0/v2/core/internal/cltest" diff --git a/core/services/ocr/delegate.go b/core/services/ocr/delegate.go index f1ea163a..34974c8a 100644 --- a/core/services/ocr/delegate.go +++ b/core/services/ocr/delegate.go @@ -14,9 +14,9 @@ import ( commonlogger "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/plugin-common/pkg/utils/mailbox" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - ocr "github.com/goplugin/libocr/offchainreporting" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + ocr "github.com/goplugin/plugin-libocr/offchainreporting" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" txmgrcommon "github.com/goplugin/pluginv3.0/v2/common/txmgr" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/txmgr" diff --git a/core/services/ocr/mocks/ocr_contract_tracker_db.go b/core/services/ocr/mocks/ocr_contract_tracker_db.go index e8e4cf2c..5c14556b 100644 --- a/core/services/ocr/mocks/ocr_contract_tracker_db.go +++ b/core/services/ocr/mocks/ocr_contract_tracker_db.go @@ -5,7 +5,7 @@ package mocks import ( mock "github.com/stretchr/testify/mock" - offchainaggregator "github.com/goplugin/libocr/gethwrappers/offchainaggregator" + offchainaggregator "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" pg "github.com/goplugin/pluginv3.0/v2/core/services/pg" ) diff --git a/core/services/ocr/validate.go b/core/services/ocr/validate.go index 45b2558e..84cb7d8e 100644 --- a/core/services/ocr/validate.go +++ b/core/services/ocr/validate.go @@ -8,7 +8,7 @@ import ( "github.com/pelletier/go-toml" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting" + "github.com/goplugin/plugin-libocr/offchainreporting" "github.com/goplugin/pluginv3.0/v2/common/config" evmconfig "github.com/goplugin/pluginv3.0/v2/core/chains/evm/config" diff --git a/core/services/ocr2/database.go b/core/services/ocr2/database.go index 08e305da..662cd021 100644 --- a/core/services/ocr2/database.go +++ b/core/services/ocr2/database.go @@ -9,8 +9,8 @@ import ( "github.com/jmoiron/sqlx" "github.com/lib/pq" "github.com/pkg/errors" - ocrcommon "github.com/goplugin/libocr/commontypes" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrcommon "github.com/goplugin/plugin-libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/logger" "github.com/goplugin/pluginv3.0/v2/core/services/pg" diff --git a/core/services/ocr2/database_test.go b/core/services/ocr2/database_test.go index 094b60ee..8d71ede9 100644 --- a/core/services/ocr2/database_test.go +++ b/core/services/ocr2/database_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/require" "github.com/jmoiron/sqlx" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/cltest" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" diff --git a/core/services/ocr2/delegate.go b/core/services/ocr2/delegate.go index 954ee099..1c9cd054 100644 --- a/core/services/ocr2/delegate.go +++ b/core/services/ocr2/delegate.go @@ -14,9 +14,9 @@ import ( "google.golang.org/grpc" "gopkg.in/guregu/null.v4" - "github.com/goplugin/libocr/commontypes" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers20 "github.com/goplugin/plugin-automation/pkg/v2" ocr2keepers20config "github.com/goplugin/plugin-automation/pkg/v2/config" diff --git a/core/services/ocr2/plugins/dkg/persistence/db.go b/core/services/ocr2/plugins/dkg/persistence/db.go index e41c7e2b..8fca18c0 100644 --- a/core/services/ocr2/plugins/dkg/persistence/db.go +++ b/core/services/ocr2/plugins/dkg/persistence/db.go @@ -14,7 +14,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2vrftypes "github.com/goplugin/plugin-vrf/types" "github.com/goplugin/plugin-vrf/types/hash" diff --git a/core/services/ocr2/plugins/dkg/plugin.go b/core/services/ocr2/plugins/dkg/plugin.go index b17a0726..6f0e065d 100644 --- a/core/services/ocr2/plugins/dkg/plugin.go +++ b/core/services/ocr2/plugins/dkg/plugin.go @@ -9,8 +9,8 @@ import ( "github.com/jmoiron/sqlx" "github.com/pkg/errors" - "github.com/goplugin/libocr/commontypes" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" + "github.com/goplugin/plugin-libocr/commontypes" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" "github.com/goplugin/plugin-vrf/altbn_128" "github.com/goplugin/plugin-vrf/dkg" diff --git a/core/services/ocr2/plugins/functions/config/config.go b/core/services/ocr2/plugins/functions/config/config.go index b6a183c8..c4f56f44 100644 --- a/core/services/ocr2/plugins/functions/config/config.go +++ b/core/services/ocr2/plugins/functions/config/config.go @@ -8,7 +8,7 @@ import ( decryptionPluginConfig "github.com/goplugin/tdh2/go/ocr2/decryptionplugin/config" - "github.com/goplugin/libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" "github.com/goplugin/plugin-common/pkg/assets" "github.com/goplugin/pluginv3.0/v2/core/services/gateway/connector" diff --git a/core/services/ocr2/plugins/functions/integration_tests/v1/internal/testutils.go b/core/services/ocr2/plugins/functions/integration_tests/v1/internal/testutils.go index 37df66ba..7ab6f459 100644 --- a/core/services/ocr2/plugins/functions/integration_tests/v1/internal/testutils.go +++ b/core/services/ocr2/plugins/functions/integration_tests/v1/internal/testutils.go @@ -24,9 +24,9 @@ import ( "github.com/onsi/gomega" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/commontypes" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonconfig "github.com/goplugin/plugin-common/pkg/config" "github.com/goplugin/pluginv3.0/v2/core/bridges" diff --git a/core/services/ocr2/plugins/functions/plugin.go b/core/services/ocr2/plugins/functions/plugin.go index cda91594..3760611a 100644 --- a/core/services/ocr2/plugins/functions/plugin.go +++ b/core/services/ocr2/plugins/functions/plugin.go @@ -11,8 +11,8 @@ import ( "github.com/jonboulle/clockwork" "github.com/pkg/errors" - "github.com/goplugin/libocr/commontypes" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" + "github.com/goplugin/plugin-libocr/commontypes" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" "github.com/goplugin/plugin-common/pkg/utils/mailbox" diff --git a/core/services/ocr2/plugins/functions/reporting.go b/core/services/ocr2/plugins/functions/reporting.go index 4539f8c2..21da3054 100644 --- a/core/services/ocr2/plugins/functions/reporting.go +++ b/core/services/ocr2/plugins/functions/reporting.go @@ -12,8 +12,8 @@ import ( "github.com/prometheus/client_golang/prometheus/promauto" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/functions" "github.com/goplugin/pluginv3.0/v2/core/services/ocr2/plugins/functions/config" diff --git a/core/services/ocr2/plugins/functions/reporting_test.go b/core/services/ocr2/plugins/functions/reporting_test.go index 0564bd29..129be85b 100644 --- a/core/services/ocr2/plugins/functions/reporting_test.go +++ b/core/services/ocr2/plugins/functions/reporting_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/require" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonlogger "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" diff --git a/core/services/ocr2/plugins/generic/helpers_test.go b/core/services/ocr2/plugins/generic/helpers_test.go index 2f8f3204..bedc7f05 100644 --- a/core/services/ocr2/plugins/generic/helpers_test.go +++ b/core/services/ocr2/plugins/generic/helpers_test.go @@ -1,6 +1,6 @@ package generic -import "github.com/goplugin/libocr/commontypes" +import "github.com/goplugin/plugin-libocr/commontypes" func (t *TelemetryAdapter) Endpoints() map[[4]string]commontypes.MonitoringEndpoint { return t.endpoints diff --git a/core/services/ocr2/plugins/generic/telemetry_adapter.go b/core/services/ocr2/plugins/generic/telemetry_adapter.go index 9dc8cd81..f4b7866c 100644 --- a/core/services/ocr2/plugins/generic/telemetry_adapter.go +++ b/core/services/ocr2/plugins/generic/telemetry_adapter.go @@ -4,7 +4,7 @@ import ( "context" "errors" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/services/synchronization" "github.com/goplugin/pluginv3.0/v2/core/services/telemetry" diff --git a/core/services/ocr2/plugins/generic/telemetry_adapter_test.go b/core/services/ocr2/plugins/generic/telemetry_adapter_test.go index a9a39b27..4b7816bd 100644 --- a/core/services/ocr2/plugins/generic/telemetry_adapter_test.go +++ b/core/services/ocr2/plugins/generic/telemetry_adapter_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/services/ocr2/plugins/generic" diff --git a/core/services/ocr2/plugins/median/services.go b/core/services/ocr2/plugins/median/services.go index 4ea4abb3..5b9260f1 100644 --- a/core/services/ocr2/plugins/median/services.go +++ b/core/services/ocr2/plugins/median/services.go @@ -7,7 +7,7 @@ import ( "fmt" "time" - libocr "github.com/goplugin/libocr/offchainreporting2plus" + libocr "github.com/goplugin/plugin-libocr/offchainreporting2plus" "github.com/goplugin/plugin-common/pkg/loop" "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/ocr2/plugins/mercury/helpers_test.go b/core/services/ocr2/plugins/mercury/helpers_test.go index c2bdaf6e..96424e8f 100644 --- a/core/services/ocr2/plugins/mercury/helpers_test.go +++ b/core/services/ocr2/plugins/mercury/helpers_test.go @@ -22,8 +22,8 @@ import ( "github.com/goplugin/wsrpc/credentials" "github.com/goplugin/wsrpc/peer" - "github.com/goplugin/libocr/offchainreporting2/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonconfig "github.com/goplugin/plugin-common/pkg/config" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils" diff --git a/core/services/ocr2/plugins/mercury/integration_test.go b/core/services/ocr2/plugins/mercury/integration_test.go index 321032b9..3374ad40 100644 --- a/core/services/ocr2/plugins/mercury/integration_test.go +++ b/core/services/ocr2/plugins/mercury/integration_test.go @@ -29,9 +29,9 @@ import ( "go.uber.org/zap/zapcore" "go.uber.org/zap/zaptest/observer" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/wsrpc/credentials" mercurytypes "github.com/goplugin/plugin-common/pkg/types/mercury" diff --git a/core/services/ocr2/plugins/mercury/plugin.go b/core/services/ocr2/plugins/mercury/plugin.go index 51bf6921..b19a6334 100644 --- a/core/services/ocr2/plugins/mercury/plugin.go +++ b/core/services/ocr2/plugins/mercury/plugin.go @@ -7,8 +7,8 @@ import ( "github.com/pkg/errors" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" relaymercuryv1 "github.com/goplugin/plugin-data-streams/mercury/v1" relaymercuryv2 "github.com/goplugin/plugin-data-streams/mercury/v2" diff --git a/core/services/ocr2/plugins/mercury/plugin_test.go b/core/services/ocr2/plugins/mercury/plugin_test.go index 3753ac7c..1333b61d 100644 --- a/core/services/ocr2/plugins/mercury/plugin_test.go +++ b/core/services/ocr2/plugins/mercury/plugin_test.go @@ -23,8 +23,8 @@ import ( mercuryocr2 "github.com/goplugin/pluginv3.0/v2/core/services/ocr2/plugins/mercury" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" - libocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" + libocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/pg" "github.com/goplugin/pluginv3.0/v2/core/services/pipeline" diff --git a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry.go b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry.go index 00e8da00..d94c0f63 100644 --- a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry.go +++ b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry.go @@ -7,8 +7,8 @@ import ( "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers "github.com/goplugin/plugin-common/pkg/types/automation" diff --git a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry_test.go b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry_test.go index 3cffcfee..2fb12d43 100644 --- a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry_test.go +++ b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/autotelemetry21/custom_telemetry_test.go @@ -4,7 +4,7 @@ import ( "sync" "testing" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" headtracker "github.com/goplugin/pluginv3.0/v2/core/chains/evm/headtracker/types" diff --git a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring.go b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring.go index 5c55d57e..e9deae28 100644 --- a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring.go +++ b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring.go @@ -1,8 +1,8 @@ package evm import ( - "github.com/goplugin/libocr/offchainreporting2/types" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" "github.com/goplugin/plugin-automation/pkg/v3/plugin" ) diff --git a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring_test.go b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring_test.go index 03a5c843..263dcdd0 100644 --- a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring_test.go +++ b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/keyring_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-automation/pkg/v3/plugin" ) diff --git a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/services.go b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/services.go index 1acdf5fd..bfcbde13 100644 --- a/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/services.go +++ b/core/services/ocr2/plugins/ocr2keeper/evmregistry/v21/services.go @@ -1,8 +1,8 @@ package evm import ( - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-automation/pkg/v3/plugin" ) diff --git a/core/services/ocr2/plugins/ocr2keeper/integration_21_test.go b/core/services/ocr2/plugins/ocr2keeper/integration_21_test.go index 54151b61..99f13454 100644 --- a/core/services/ocr2/plugins/ocr2keeper/integration_21_test.go +++ b/core/services/ocr2/plugins/ocr2keeper/integration_21_test.go @@ -26,10 +26,10 @@ import ( "github.com/stretchr/testify/require" "github.com/umbracle/ethgo/abi" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - ocrTypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + ocrTypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-automation/pkg/v3/config" "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/ocr2/plugins/ocr2keeper/integration_test.go b/core/services/ocr2/plugins/ocr2keeper/integration_test.go index 87f4b83a..c5def8bf 100644 --- a/core/services/ocr2/plugins/ocr2keeper/integration_test.go +++ b/core/services/ocr2/plugins/ocr2keeper/integration_test.go @@ -27,9 +27,9 @@ import ( "github.com/stretchr/testify/require" "github.com/umbracle/ethgo/abi" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrTypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrTypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-automation/pkg/v2/config" commonconfig "github.com/goplugin/plugin-common/pkg/config" diff --git a/core/services/ocr2/plugins/ocr2keeper/util.go b/core/services/ocr2/plugins/ocr2keeper/util.go index c9135343..32dc5545 100644 --- a/core/services/ocr2/plugins/ocr2keeper/util.go +++ b/core/services/ocr2/plugins/ocr2keeper/util.go @@ -9,7 +9,7 @@ import ( "github.com/jmoiron/sqlx" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers20 "github.com/goplugin/plugin-automation/pkg/v2" ocr2keepers20coordinator "github.com/goplugin/plugin-automation/pkg/v2/coordinator" diff --git a/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator.go b/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator.go index 65e0ed8c..eb895387 100644 --- a/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator.go +++ b/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator.go @@ -20,8 +20,8 @@ import ( "golang.org/x/exp/maps" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" - ocr2Types "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + ocr2Types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/utils/mathutil" diff --git a/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator_test.go b/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator_test.go index 401805c8..705f1622 100644 --- a/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator_test.go +++ b/core/services/ocr2/plugins/ocr2vrf/coordinator/coordinator_test.go @@ -19,8 +19,8 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/commontypes" - ocr2Types "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + ocr2Types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-vrf/dkg" "github.com/goplugin/plugin-vrf/ocr2vrf" diff --git a/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go b/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go index 4251d7e7..4f24e5c8 100644 --- a/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go +++ b/core/services/ocr2/plugins/ocr2vrf/internal/ocr2vrf_integration_test.go @@ -21,9 +21,9 @@ import ( "github.com/stretchr/testify/require" "go.dedis.ch/kyber/v3" - "github.com/goplugin/libocr/commontypes" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-vrf/altbn_128" ocr2dkg "github.com/goplugin/plugin-vrf/dkg" diff --git a/core/services/ocr2/plugins/plugin.go b/core/services/ocr2/plugins/plugin.go index 10e1d71c..5db7954f 100644 --- a/core/services/ocr2/plugins/plugin.go +++ b/core/services/ocr2/plugins/plugin.go @@ -1,7 +1,7 @@ package plugins import ( - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/job" ) diff --git a/core/services/ocr2/plugins/promwrapper/factory.go b/core/services/ocr2/plugins/promwrapper/factory.go index afc174f6..91e838cf 100644 --- a/core/services/ocr2/plugins/promwrapper/factory.go +++ b/core/services/ocr2/plugins/promwrapper/factory.go @@ -3,7 +3,7 @@ package promwrapper import ( "math/big" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ types.ReportingPluginFactory = &promFactory{} diff --git a/core/services/ocr2/plugins/promwrapper/plugin.go b/core/services/ocr2/plugins/promwrapper/plugin.go index 991e9738..307276df 100644 --- a/core/services/ocr2/plugins/promwrapper/plugin.go +++ b/core/services/ocr2/plugins/promwrapper/plugin.go @@ -13,7 +13,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) // Type assertions, buckets and labels. diff --git a/core/services/ocr2/plugins/promwrapper/plugin_test.go b/core/services/ocr2/plugins/promwrapper/plugin_test.go index 6b1f4549..2afbd325 100644 --- a/core/services/ocr2/plugins/promwrapper/plugin_test.go +++ b/core/services/ocr2/plugins/promwrapper/plugin_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/services/ocr2/plugins/promwrapper/mocks" diff --git a/core/services/ocr2/plugins/s4/factory.go b/core/services/ocr2/plugins/s4/factory.go index f22ef247..db68d284 100644 --- a/core/services/ocr2/plugins/s4/factory.go +++ b/core/services/ocr2/plugins/s4/factory.go @@ -3,8 +3,8 @@ package s4 import ( s4_orm "github.com/goplugin/pluginv3.0/v2/core/services/s4" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" ) const S4ReportingPluginName = "S4Reporting" diff --git a/core/services/ocr2/plugins/s4/factory_test.go b/core/services/ocr2/plugins/s4/factory_test.go index c78e8ee4..ac9e46e0 100644 --- a/core/services/ocr2/plugins/s4/factory_test.go +++ b/core/services/ocr2/plugins/s4/factory_test.go @@ -10,7 +10,7 @@ import ( commonlogger "github.com/goplugin/plugin-common/pkg/logger" - "github.com/goplugin/libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" "github.com/stretchr/testify/require" ) diff --git a/core/services/ocr2/plugins/s4/integration_test.go b/core/services/ocr2/plugins/s4/integration_test.go index 0bea1d79..f0256224 100644 --- a/core/services/ocr2/plugins/s4/integration_test.go +++ b/core/services/ocr2/plugins/s4/integration_test.go @@ -20,8 +20,8 @@ import ( commonlogger "github.com/goplugin/plugin-common/pkg/logger" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/assert" diff --git a/core/services/ocr2/plugins/s4/plugin.go b/core/services/ocr2/plugins/s4/plugin.go index 08498365..55a57fed 100644 --- a/core/services/ocr2/plugins/s4/plugin.go +++ b/core/services/ocr2/plugins/s4/plugin.go @@ -8,8 +8,8 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - "github.com/goplugin/libocr/commontypes" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils/big" "github.com/goplugin/pluginv3.0/v2/core/services/pg" diff --git a/core/services/ocr2/plugins/s4/plugin_test.go b/core/services/ocr2/plugins/s4/plugin_test.go index 8b9932b6..a64ebf0a 100644 --- a/core/services/ocr2/plugins/s4/plugin_test.go +++ b/core/services/ocr2/plugins/s4/plugin_test.go @@ -20,7 +20,7 @@ import ( "github.com/stretchr/testify/mock" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) func createPluginConfig(maxEntries uint) *s4.PluginConfig { diff --git a/core/services/ocr2/plugins/threshold/plugin.go b/core/services/ocr2/plugins/threshold/plugin.go index 823dcb06..acbc2886 100644 --- a/core/services/ocr2/plugins/threshold/plugin.go +++ b/core/services/ocr2/plugins/threshold/plugin.go @@ -5,8 +5,8 @@ import ( "github.com/pkg/errors" - "github.com/goplugin/libocr/commontypes" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" + "github.com/goplugin/plugin-libocr/commontypes" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" decryptionPlugin "github.com/goplugin/tdh2/go/ocr2/decryptionplugin" decryptionPluginConfig "github.com/goplugin/tdh2/go/ocr2/decryptionplugin/config" diff --git a/core/services/ocr2/testhelpers/digest.go b/core/services/ocr2/testhelpers/digest.go index 67877fc1..35ae9567 100644 --- a/core/services/ocr2/testhelpers/digest.go +++ b/core/services/ocr2/testhelpers/digest.go @@ -4,7 +4,7 @@ import ( "crypto/rand" "testing" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) // MakeConfigDigest makes config digest diff --git a/core/services/ocr2/testhelpers/onchain_config.go b/core/services/ocr2/testhelpers/onchain_config.go index 3f74013f..2dec1944 100644 --- a/core/services/ocr2/testhelpers/onchain_config.go +++ b/core/services/ocr2/testhelpers/onchain_config.go @@ -3,7 +3,7 @@ package testhelpers import ( "math/big" - "github.com/goplugin/libocr/bigbigendian" + "github.com/goplugin/plugin-libocr/bigbigendian" ) func GenerateDefaultOCR2OnchainConfig(minValue *big.Int, maxValue *big.Int) ([]byte, error) { diff --git a/core/services/ocr2/validate/config.go b/core/services/ocr2/validate/config.go index b7a91973..8d7b3100 100644 --- a/core/services/ocr2/validate/config.go +++ b/core/services/ocr2/validate/config.go @@ -5,7 +5,7 @@ import ( "sync" "time" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/config/env" "github.com/goplugin/pluginv3.0/v2/core/services/job" diff --git a/core/services/ocr2/validate/validate.go b/core/services/ocr2/validate/validate.go index dcbedd82..835e7149 100644 --- a/core/services/ocr2/validate/validate.go +++ b/core/services/ocr2/validate/validate.go @@ -9,7 +9,7 @@ import ( "github.com/lib/pq" "github.com/pelletier/go-toml" pkgerrors "github.com/pkg/errors" - libocr2 "github.com/goplugin/libocr/offchainreporting2plus" + libocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus" "github.com/goplugin/plugin-common/pkg/types" "github.com/goplugin/pluginv3.0/v2/core/services/job" diff --git a/core/services/ocrbootstrap/database.go b/core/services/ocrbootstrap/database.go index 7d77dae0..241f366a 100644 --- a/core/services/ocrbootstrap/database.go +++ b/core/services/ocrbootstrap/database.go @@ -6,7 +6,7 @@ import ( "github.com/lib/pq" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/logger" ) diff --git a/core/services/ocrbootstrap/database_test.go b/core/services/ocrbootstrap/database_test.go index 5637477e..1310f27a 100644 --- a/core/services/ocrbootstrap/database_test.go +++ b/core/services/ocrbootstrap/database_test.go @@ -6,7 +6,7 @@ import ( "github.com/jmoiron/sqlx" "github.com/stretchr/testify/require" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/cltest" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" diff --git a/core/services/ocrbootstrap/delegate.go b/core/services/ocrbootstrap/delegate.go index c400df50..c138cd93 100644 --- a/core/services/ocrbootstrap/delegate.go +++ b/core/services/ocrbootstrap/delegate.go @@ -9,7 +9,7 @@ import ( "github.com/jmoiron/sqlx" - ocr "github.com/goplugin/libocr/offchainreporting2plus" + ocr "github.com/goplugin/plugin-libocr/offchainreporting2plus" commonlogger "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/plugin-common/pkg/loop" diff --git a/core/services/ocrcommon/adapters.go b/core/services/ocrcommon/adapters.go index 6096f7e8..1b3cf5da 100644 --- a/core/services/ocrcommon/adapters.go +++ b/core/services/ocrcommon/adapters.go @@ -3,8 +3,8 @@ package ocrcommon import ( "context" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ ocr3types.OnchainKeyring[[]byte] = (*OCR3OnchainKeyringAdapter)(nil) diff --git a/core/services/ocrcommon/adapters_test.go b/core/services/ocrcommon/adapters_test.go index af462fe7..4c9cc7bb 100644 --- a/core/services/ocrcommon/adapters_test.go +++ b/core/services/ocrcommon/adapters_test.go @@ -6,9 +6,9 @@ import ( "reflect" "testing" - "github.com/goplugin/libocr/offchainreporting2/types" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/require" "github.com/goplugin/pluginv3.0/v2/core/services/ocrcommon" diff --git a/core/services/ocrcommon/config.go b/core/services/ocrcommon/config.go index f91a76f4..1c4e7fbd 100644 --- a/core/services/ocrcommon/config.go +++ b/core/services/ocrcommon/config.go @@ -3,7 +3,7 @@ package ocrcommon import ( "github.com/pkg/errors" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/common/config" ) diff --git a/core/services/ocrcommon/data_source.go b/core/services/ocrcommon/data_source.go index e80fdc01..078aee37 100644 --- a/core/services/ocrcommon/data_source.go +++ b/core/services/ocrcommon/data_source.go @@ -7,9 +7,9 @@ import ( "time" "github.com/pkg/errors" - ocr1types "github.com/goplugin/libocr/offchainreporting/types" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr1types "github.com/goplugin/plugin-libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/bridges" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/ocrcommon/data_source_test.go b/core/services/ocrcommon/data_source_test.go index b3950ba1..ba3a2ad5 100644 --- a/core/services/ocrcommon/data_source_test.go +++ b/core/services/ocrcommon/data_source_test.go @@ -5,8 +5,8 @@ import ( "testing" promtestutil "github.com/prometheus/client_golang/prometheus/testutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting/types" - "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/spf13/cast" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/core/services/ocrcommon/discoverer_database.go b/core/services/ocrcommon/discoverer_database.go index cdb22cbe..7600a2e3 100644 --- a/core/services/ocrcommon/discoverer_database.go +++ b/core/services/ocrcommon/discoverer_database.go @@ -8,7 +8,7 @@ import ( "github.com/pkg/errors" "go.uber.org/multierr" - ocrnetworking "github.com/goplugin/libocr/networking/types" + ocrnetworking "github.com/goplugin/plugin-libocr/networking/types" ) var _ ocrnetworking.DiscovererDatabase = &DiscovererDatabase{} diff --git a/core/services/ocrcommon/discoverer_database_test.go b/core/services/ocrcommon/discoverer_database_test.go index a74ab12e..937170c5 100644 --- a/core/services/ocrcommon/discoverer_database_test.go +++ b/core/services/ocrcommon/discoverer_database_test.go @@ -5,7 +5,7 @@ import ( "crypto/rand" "testing" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/ocrcommon/helpers_test.go b/core/services/ocrcommon/helpers_test.go index 27c8807f..9fe2330e 100644 --- a/core/services/ocrcommon/helpers_test.go +++ b/core/services/ocrcommon/helpers_test.go @@ -1,6 +1,6 @@ package ocrcommon -import ocrnetworking "github.com/goplugin/libocr/networking" +import ocrnetworking "github.com/goplugin/plugin-libocr/networking" func (p *SingletonPeerWrapper) PeerConfig() (ocrnetworking.PeerConfig, error) { return p.peerConfig() diff --git a/core/services/ocrcommon/peer_wrapper.go b/core/services/ocrcommon/peer_wrapper.go index ac185da0..58f1df72 100644 --- a/core/services/ocrcommon/peer_wrapper.go +++ b/core/services/ocrcommon/peer_wrapper.go @@ -7,9 +7,9 @@ import ( "github.com/jmoiron/sqlx" "github.com/pkg/errors" - ocrnetworking "github.com/goplugin/libocr/networking" - ocr1types "github.com/goplugin/libocr/offchainreporting/types" - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrnetworking "github.com/goplugin/plugin-libocr/networking" + ocr1types "github.com/goplugin/plugin-libocr/offchainreporting/types" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonlogger "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/ocrcommon/peer_wrapper_test.go b/core/services/ocrcommon/peer_wrapper_test.go index 58d146bd..653bcf56 100644 --- a/core/services/ocrcommon/peer_wrapper_test.go +++ b/core/services/ocrcommon/peer_wrapper_test.go @@ -6,7 +6,7 @@ import ( "time" "github.com/hashicorp/consul/sdk/freeport" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/stretchr/testify/require" commonconfig "github.com/goplugin/plugin-common/pkg/config" diff --git a/core/services/ocrcommon/telemetry.go b/core/services/ocrcommon/telemetry.go index 135018da..b41ba282 100644 --- a/core/services/ocrcommon/telemetry.go +++ b/core/services/ocrcommon/telemetry.go @@ -10,8 +10,8 @@ import ( "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/commontypes" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/ocrcommon/telemetry_test.go b/core/services/ocrcommon/telemetry_test.go index 9619fef2..7733024c 100644 --- a/core/services/ocrcommon/telemetry_test.go +++ b/core/services/ocrcommon/telemetry_test.go @@ -12,7 +12,7 @@ import ( "go.uber.org/zap" "google.golang.org/protobuf/proto" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" "github.com/goplugin/plugin-common/pkg/types/mercury" diff --git a/core/services/pipeline/runner.go b/core/services/pipeline/runner.go index bf1c1330..5a949aa1 100644 --- a/core/services/pipeline/runner.go +++ b/core/services/pipeline/runner.go @@ -213,7 +213,7 @@ func (r *runner) OnRunFinished(fn func(*Run)) { r.runFinished = fn } -// github.com/goplugin/libocr/offchainreporting2plus/internal/protocol.ReportingPluginTimeoutWarningGracePeriod +// github.com/goplugin/plugin-libocr/offchainreporting2plus/internal/protocol.ReportingPluginTimeoutWarningGracePeriod var overtime = 100 * time.Millisecond func init() { diff --git a/core/services/relay/evm/address.go b/core/services/relay/evm/address.go index 8c575989..55d7a70a 100644 --- a/core/services/relay/evm/address.go +++ b/core/services/relay/evm/address.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) func AccountToAddress(accounts []types.Account) (addresses []common.Address, err error) { diff --git a/core/services/relay/evm/chain_reader_test.go b/core/services/relay/evm/chain_reader_test.go index 5bbb442b..20c4e9c6 100644 --- a/core/services/relay/evm/chain_reader_test.go +++ b/core/services/relay/evm/chain_reader_test.go @@ -19,7 +19,7 @@ import ( "github.com/ethereum/go-ethereum/core" evmtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/codec_test.go b/core/services/relay/evm/codec_test.go index 51252993..85ef4660 100644 --- a/core/services/relay/evm/codec_test.go +++ b/core/services/relay/evm/codec_test.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common/hexutil" - ocr2types "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr2types "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/config_poller.go b/core/services/relay/evm/config_poller.go index a23046ec..07de189b 100644 --- a/core/services/relay/evm/config_poller.go +++ b/core/services/relay/evm/config_poller.go @@ -11,9 +11,9 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - "github.com/goplugin/libocr/gethwrappers2/ocrconfigurationstoreevmsimple" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocrconfigurationstoreevmsimple" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/relay/evm/config_poller_test.go b/core/services/relay/evm/config_poller_test.go index 9f70591a..2cd44c9d 100644 --- a/core/services/relay/evm/config_poller_test.go +++ b/core/services/relay/evm/config_poller_test.go @@ -19,13 +19,13 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - "github.com/goplugin/libocr/gethwrappers2/ocrconfigurationstoreevmsimple" - testoffchainaggregator2 "github.com/goplugin/libocr/gethwrappers2/testocr2aggregator" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocrconfigurationstoreevmsimple" + testoffchainaggregator2 "github.com/goplugin/plugin-libocr/gethwrappers2/testocr2aggregator" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/client" diff --git a/core/services/relay/evm/contract_transmitter.go b/core/services/relay/evm/contract_transmitter.go index 6f00ec07..b5df67ef 100644 --- a/core/services/relay/evm/contract_transmitter.go +++ b/core/services/relay/evm/contract_transmitter.go @@ -11,8 +11,8 @@ import ( "github.com/ethereum/go-ethereum/common" gethcommon "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/logpoller" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/txmgr" diff --git a/core/services/relay/evm/contract_transmitter_test.go b/core/services/relay/evm/contract_transmitter_test.go index eed80d26..24f8bd6a 100644 --- a/core/services/relay/evm/contract_transmitter_test.go +++ b/core/services/relay/evm/contract_transmitter_test.go @@ -8,7 +8,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" gethcommon "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/evm.go b/core/services/relay/evm/evm.go index 9be00115..e82217a1 100644 --- a/core/services/relay/evm/evm.go +++ b/core/services/relay/evm/evm.go @@ -14,10 +14,10 @@ import ( pkgerrors "github.com/pkg/errors" "golang.org/x/exp/maps" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median/evmreportcodec" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median/evmreportcodec" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" commontypes "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/functions.go b/core/services/relay/evm/functions.go index 2257306f..c11761f1 100644 --- a/core/services/relay/evm/functions.go +++ b/core/services/relay/evm/functions.go @@ -10,7 +10,7 @@ import ( "go.uber.org/multierr" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" commontypes "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/functions/config_poller.go b/core/services/relay/evm/functions/config_poller.go index cda89afe..d2684c9a 100644 --- a/core/services/relay/evm/functions/config_poller.go +++ b/core/services/relay/evm/functions/config_poller.go @@ -9,9 +9,9 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/logpoller" "github.com/goplugin/pluginv3.0/v2/core/logger" @@ -37,7 +37,7 @@ type configPoller struct { var _ types.ConfigPoller = &configPoller{} var _ types.RouteUpdateSubscriber = &configPoller{} -// ConfigSet Common to all OCR2 evm based contracts: https://github.com/goplugin/libocr/blob/master/contract2/dev/OCR2Abstract.sol +// ConfigSet Common to all OCR2 evm based contracts: https://github.com/goplugin/plugin-libocr/blob/master/contract2/dev/OCR2Abstract.sol var ConfigSet common.Hash var defaultABI abi.ABI diff --git a/core/services/relay/evm/functions/config_poller_test.go b/core/services/relay/evm/functions/config_poller_test.go index ffda19c6..c033e80d 100644 --- a/core/services/relay/evm/functions/config_poller_test.go +++ b/core/services/relay/evm/functions/config_poller_test.go @@ -15,10 +15,10 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - testoffchainaggregator2 "github.com/goplugin/libocr/gethwrappers2/testocr2aggregator" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + testoffchainaggregator2 "github.com/goplugin/plugin-libocr/gethwrappers2/testocr2aggregator" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" diff --git a/core/services/relay/evm/functions/contract_transmitter.go b/core/services/relay/evm/functions/contract_transmitter.go index aceedd79..d81ab1a9 100644 --- a/core/services/relay/evm/functions/contract_transmitter.go +++ b/core/services/relay/evm/functions/contract_transmitter.go @@ -13,8 +13,8 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/logpoller" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/txmgr" diff --git a/core/services/relay/evm/functions/contract_transmitter_test.go b/core/services/relay/evm/functions/contract_transmitter_test.go index c51558d0..f74bfd3b 100644 --- a/core/services/relay/evm/functions/contract_transmitter_test.go +++ b/core/services/relay/evm/functions/contract_transmitter_test.go @@ -8,8 +8,8 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" gethcommon "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/functions/offchain_config_digester.go b/core/services/relay/evm/functions/offchain_config_digester.go index 5ec69bce..0e925ee0 100644 --- a/core/services/relay/evm/functions/offchain_config_digester.go +++ b/core/services/relay/evm/functions/offchain_config_digester.go @@ -7,8 +7,8 @@ import ( "sync/atomic" "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/offchainreporting2/chains/evmutil" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/chains/evmutil" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" evmRelayTypes "github.com/goplugin/pluginv3.0/v2/core/services/relay/evm/types" ) diff --git a/core/services/relay/evm/median.go b/core/services/relay/evm/median.go index 4ea8d564..da47e3ee 100644 --- a/core/services/relay/evm/median.go +++ b/core/services/relay/evm/median.go @@ -9,10 +9,10 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/jmoiron/sqlx" "github.com/pkg/errors" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - "github.com/goplugin/libocr/offchainreporting2plus/types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/pluginv3.0/v2/core/chains/legacyevm" diff --git a/core/services/relay/evm/mercury/config_digest.go b/core/services/relay/evm/mercury/config_digest.go index 81e49b2a..f5914d1f 100644 --- a/core/services/relay/evm/mercury/config_digest.go +++ b/core/services/relay/evm/mercury/config_digest.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/wsrpc/credentials" "github.com/goplugin/pluginv3.0/v2/core/gethwrappers/llo-feeds/generated/exposed_verifier" diff --git a/core/services/relay/evm/mercury/config_poller.go b/core/services/relay/evm/mercury/config_poller.go index 0827428a..01ee18a2 100644 --- a/core/services/relay/evm/mercury/config_poller.go +++ b/core/services/relay/evm/mercury/config_poller.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/logpoller" "github.com/goplugin/pluginv3.0/v2/core/gethwrappers/llo-feeds/generated/verifier" diff --git a/core/services/relay/evm/mercury/config_poller_test.go b/core/services/relay/evm/mercury/config_poller_test.go index 62decbb4..80d3f28b 100644 --- a/core/services/relay/evm/mercury/config_poller_test.go +++ b/core/services/relay/evm/mercury/config_poller_test.go @@ -8,9 +8,9 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/onsi/gomega" "github.com/pkg/errors" - confighelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" - ocrtypes2 "github.com/goplugin/libocr/offchainreporting2plus/types" + confighelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" + ocrtypes2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/umbracle/ethgo/abi" diff --git a/core/services/relay/evm/mercury/helpers_test.go b/core/services/relay/evm/mercury/helpers_test.go index 1025986b..e7d0f02b 100644 --- a/core/services/relay/evm/mercury/helpers_test.go +++ b/core/services/relay/evm/mercury/helpers_test.go @@ -14,8 +14,8 @@ import ( "github.com/ethereum/go-ethereum/eth/ethconfig" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services/servicetest" diff --git a/core/services/relay/evm/mercury/offchain_config_digester.go b/core/services/relay/evm/mercury/offchain_config_digester.go index cc33c576..7e0d2f14 100644 --- a/core/services/relay/evm/mercury/offchain_config_digester.go +++ b/core/services/relay/evm/mercury/offchain_config_digester.go @@ -8,7 +8,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/wsrpc/credentials" "github.com/goplugin/pluginv3.0/v2/core/services/relay/evm/mercury/utils" diff --git a/core/services/relay/evm/mercury/offchain_config_digester_test.go b/core/services/relay/evm/mercury/offchain_config_digester_test.go index 986b55af..ca66af30 100644 --- a/core/services/relay/evm/mercury/offchain_config_digester_test.go +++ b/core/services/relay/evm/mercury/offchain_config_digester_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/require" ) diff --git a/core/services/relay/evm/mercury/orm.go b/core/services/relay/evm/mercury/orm.go index 6cfcc68f..fae4b48b 100644 --- a/core/services/relay/evm/mercury/orm.go +++ b/core/services/relay/evm/mercury/orm.go @@ -12,7 +12,7 @@ import ( "github.com/lib/pq" pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/logger" "github.com/goplugin/pluginv3.0/v2/core/services/pg" diff --git a/core/services/relay/evm/mercury/orm_test.go b/core/services/relay/evm/mercury/orm_test.go index 8452aef8..356f82d6 100644 --- a/core/services/relay/evm/mercury/orm_test.go +++ b/core/services/relay/evm/mercury/orm_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/cometbft/cometbft/libs/rand" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/mercury/persistence_manager.go b/core/services/relay/evm/mercury/persistence_manager.go index 97dad1fe..8b0f0731 100644 --- a/core/services/relay/evm/mercury/persistence_manager.go +++ b/core/services/relay/evm/mercury/persistence_manager.go @@ -5,7 +5,7 @@ import ( "sync" "time" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/relay/evm/mercury/persistence_manager_test.go b/core/services/relay/evm/mercury/persistence_manager_test.go index c1aaff97..ac8ef1b0 100644 --- a/core/services/relay/evm/mercury/persistence_manager_test.go +++ b/core/services/relay/evm/mercury/persistence_manager_test.go @@ -11,7 +11,7 @@ import ( "go.uber.org/zap/zapcore" "go.uber.org/zap/zaptest/observer" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils/pgtest" diff --git a/core/services/relay/evm/mercury/queue.go b/core/services/relay/evm/mercury/queue.go index 8800d5cd..24e74110 100644 --- a/core/services/relay/evm/mercury/queue.go +++ b/core/services/relay/evm/mercury/queue.go @@ -11,7 +11,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/relay/evm/mercury/queue_test.go b/core/services/relay/evm/mercury/queue_test.go index 020eeb63..acd6bed8 100644 --- a/core/services/relay/evm/mercury/queue_test.go +++ b/core/services/relay/evm/mercury/queue_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zapcore" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/relay/evm/mercury/test_helpers.go b/core/services/relay/evm/mercury/test_helpers.go index d381a03e..4f060731 100644 --- a/core/services/relay/evm/mercury/test_helpers.go +++ b/core/services/relay/evm/mercury/test_helpers.go @@ -3,8 +3,8 @@ package mercury import ( "github.com/ethereum/go-ethereum/common/hexutil" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) func BuildSamplePayload(report []byte, reportCtx ocrtypes.ReportContext, sigs []ocrtypes.AttributedOnchainSignature) []byte { diff --git a/core/services/relay/evm/mercury/transmitter.go b/core/services/relay/evm/mercury/transmitter.go index 91bd4679..a6e97443 100644 --- a/core/services/relay/evm/mercury/transmitter.go +++ b/core/services/relay/evm/mercury/transmitter.go @@ -19,8 +19,8 @@ import ( "github.com/jmoiron/sqlx" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/plugin-common/pkg/types/mercury" diff --git a/core/services/relay/evm/mercury/transmitter_test.go b/core/services/relay/evm/mercury/transmitter_test.go index 476b89ed..cfe35cad 100644 --- a/core/services/relay/evm/mercury/transmitter_test.go +++ b/core/services/relay/evm/mercury/transmitter_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils/pgtest" diff --git a/core/services/relay/evm/mercury/types/types.go b/core/services/relay/evm/mercury/types/types.go index dd7af392..306c1671 100644 --- a/core/services/relay/evm/mercury/types/types.go +++ b/core/services/relay/evm/mercury/types/types.go @@ -6,7 +6,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/services/pg" ) diff --git a/core/services/relay/evm/mercury/v1/data_source.go b/core/services/relay/evm/mercury/v1/data_source.go index 6bacb287..1b4a3acc 100644 --- a/core/services/relay/evm/mercury/v1/data_source.go +++ b/core/services/relay/evm/mercury/v1/data_source.go @@ -11,7 +11,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/types/mercury" v1types "github.com/goplugin/plugin-common/pkg/types/mercury/v1" diff --git a/core/services/relay/evm/mercury/v1/data_source_test.go b/core/services/relay/evm/mercury/v1/data_source_test.go index 553c9602..8a33c293 100644 --- a/core/services/relay/evm/mercury/v1/data_source_test.go +++ b/core/services/relay/evm/mercury/v1/data_source_test.go @@ -13,7 +13,7 @@ import ( "github.com/pkg/errors" "github.com/stretchr/testify/assert" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" mercurytypes "github.com/goplugin/plugin-common/pkg/types/mercury" v1 "github.com/goplugin/plugin-common/pkg/types/mercury/v1" diff --git a/core/services/relay/evm/mercury/v1/reportcodec/report_codec.go b/core/services/relay/evm/mercury/v1/reportcodec/report_codec.go index eea7ea87..8075bf7c 100644 --- a/core/services/relay/evm/mercury/v1/reportcodec/report_codec.go +++ b/core/services/relay/evm/mercury/v1/reportcodec/report_codec.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v1 "github.com/goplugin/plugin-common/pkg/types/mercury/v1" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/relay/evm/mercury/v1/reportcodec/report_codec_test.go b/core/services/relay/evm/mercury/v1/reportcodec/report_codec_test.go index 74c0f1c3..c4a122e4 100644 --- a/core/services/relay/evm/mercury/v1/reportcodec/report_codec_test.go +++ b/core/services/relay/evm/mercury/v1/reportcodec/report_codec_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v1 "github.com/goplugin/plugin-common/pkg/types/mercury/v1" "github.com/goplugin/pluginv3.0/v2/core/chains/evm/utils" diff --git a/core/services/relay/evm/mercury/v2/data_source.go b/core/services/relay/evm/mercury/v2/data_source.go index 74545cd8..2c59871a 100644 --- a/core/services/relay/evm/mercury/v2/data_source.go +++ b/core/services/relay/evm/mercury/v2/data_source.go @@ -8,7 +8,7 @@ import ( pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/types/mercury" v2types "github.com/goplugin/plugin-common/pkg/types/mercury/v2" diff --git a/core/services/relay/evm/mercury/v2/data_source_test.go b/core/services/relay/evm/mercury/v2/data_source_test.go index 575801a6..651396a9 100644 --- a/core/services/relay/evm/mercury/v2/data_source_test.go +++ b/core/services/relay/evm/mercury/v2/data_source_test.go @@ -8,7 +8,7 @@ import ( "github.com/pkg/errors" "github.com/stretchr/testify/assert" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/types/mercury" v2 "github.com/goplugin/plugin-data-streams/mercury/v2" diff --git a/core/services/relay/evm/mercury/v2/reportcodec/report_codec.go b/core/services/relay/evm/mercury/v2/reportcodec/report_codec.go index 782b1acc..bc00568e 100644 --- a/core/services/relay/evm/mercury/v2/reportcodec/report_codec.go +++ b/core/services/relay/evm/mercury/v2/reportcodec/report_codec.go @@ -7,7 +7,7 @@ import ( pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v2 "github.com/goplugin/plugin-common/pkg/types/mercury/v2" diff --git a/core/services/relay/evm/mercury/v2/reportcodec/report_codec_test.go b/core/services/relay/evm/mercury/v2/reportcodec/report_codec_test.go index 7956a66d..1935a254 100644 --- a/core/services/relay/evm/mercury/v2/reportcodec/report_codec_test.go +++ b/core/services/relay/evm/mercury/v2/reportcodec/report_codec_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v2 "github.com/goplugin/plugin-common/pkg/types/mercury/v2" ) diff --git a/core/services/relay/evm/mercury/v3/data_source.go b/core/services/relay/evm/mercury/v3/data_source.go index ddc79822..9f9f6dd6 100644 --- a/core/services/relay/evm/mercury/v3/data_source.go +++ b/core/services/relay/evm/mercury/v3/data_source.go @@ -9,7 +9,7 @@ import ( pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/types/mercury" v3types "github.com/goplugin/plugin-common/pkg/types/mercury/v3" diff --git a/core/services/relay/evm/mercury/v3/data_source_test.go b/core/services/relay/evm/mercury/v3/data_source_test.go index f5783620..37e4f4c7 100644 --- a/core/services/relay/evm/mercury/v3/data_source_test.go +++ b/core/services/relay/evm/mercury/v3/data_source_test.go @@ -11,7 +11,7 @@ import ( mercurytypes "github.com/goplugin/plugin-common/pkg/types/mercury" relaymercuryv3 "github.com/goplugin/plugin-data-streams/mercury/v3" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/internal/testutils" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/relay/evm/mercury/v3/reportcodec/report_codec.go b/core/services/relay/evm/mercury/v3/reportcodec/report_codec.go index 6f85fb9b..df6d0f79 100644 --- a/core/services/relay/evm/mercury/v3/reportcodec/report_codec.go +++ b/core/services/relay/evm/mercury/v3/reportcodec/report_codec.go @@ -7,7 +7,7 @@ import ( pkgerrors "github.com/pkg/errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v3 "github.com/goplugin/plugin-common/pkg/types/mercury/v3" diff --git a/core/services/relay/evm/mercury/v3/reportcodec/report_codec_test.go b/core/services/relay/evm/mercury/v3/reportcodec/report_codec_test.go index 2582c05a..090aae83 100644 --- a/core/services/relay/evm/mercury/v3/reportcodec/report_codec_test.go +++ b/core/services/relay/evm/mercury/v3/reportcodec/report_codec_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" v3 "github.com/goplugin/plugin-common/pkg/types/mercury/v3" ) diff --git a/core/services/relay/evm/mercury_provider.go b/core/services/relay/evm/mercury_provider.go index 34a1eefa..187b0e64 100644 --- a/core/services/relay/evm/mercury_provider.go +++ b/core/services/relay/evm/mercury_provider.go @@ -4,7 +4,7 @@ import ( "context" "errors" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" commontypes "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/mocks/request_round_db.go b/core/services/relay/evm/mocks/request_round_db.go index 1670930d..4158680f 100644 --- a/core/services/relay/evm/mocks/request_round_db.go +++ b/core/services/relay/evm/mocks/request_round_db.go @@ -4,7 +4,7 @@ package mocks import ( pg "github.com/goplugin/pluginv3.0/v2/core/services/pg" - ocr2aggregator "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + ocr2aggregator "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" mock "github.com/stretchr/testify/mock" ) diff --git a/core/services/relay/evm/ocr2aggregator_decoder.go b/core/services/relay/evm/ocr2aggregator_decoder.go index 8df73b03..617542bb 100644 --- a/core/services/relay/evm/ocr2aggregator_decoder.go +++ b/core/services/relay/evm/ocr2aggregator_decoder.go @@ -6,8 +6,8 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ) var _ LogDecoder = &ocr2AggregatorLogDecoder{} diff --git a/core/services/relay/evm/ocr2keeper.go b/core/services/relay/evm/ocr2keeper.go index fa070adb..11e2f934 100644 --- a/core/services/relay/evm/ocr2keeper.go +++ b/core/services/relay/evm/ocr2keeper.go @@ -9,9 +9,9 @@ import ( "github.com/jmoiron/sqlx" "github.com/pkg/errors" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - "github.com/goplugin/libocr/offchainreporting2plus/ocr3types" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-automation/pkg/v3/plugin" commontypes "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/ocr2vrf.go b/core/services/relay/evm/ocr2vrf.go index 7d6362f6..1676a54a 100644 --- a/core/services/relay/evm/ocr2vrf.go +++ b/core/services/relay/evm/ocr2vrf.go @@ -7,8 +7,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/jmoiron/sqlx" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commontypes "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/plugin_provider.go b/core/services/relay/evm/plugin_provider.go index 26d2187a..cef19e53 100644 --- a/core/services/relay/evm/plugin_provider.go +++ b/core/services/relay/evm/plugin_provider.go @@ -3,7 +3,7 @@ package evm import ( "context" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/relay/evm/request_round_db.go b/core/services/relay/evm/request_round_db.go index 344168c9..36135231 100644 --- a/core/services/relay/evm/request_round_db.go +++ b/core/services/relay/evm/request_round_db.go @@ -5,8 +5,8 @@ import ( "encoding/json" "github.com/pkg/errors" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/logger" "github.com/goplugin/pluginv3.0/v2/core/services/pg" diff --git a/core/services/relay/evm/request_round_db_test.go b/core/services/relay/evm/request_round_db_test.go index 512cc4b1..81776506 100644 --- a/core/services/relay/evm/request_round_db_test.go +++ b/core/services/relay/evm/request_round_db_test.go @@ -3,7 +3,7 @@ package evm_test import ( "testing" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/core/services/relay/evm/request_round_tracker.go b/core/services/relay/evm/request_round_tracker.go index f32fdf3e..80c097e4 100644 --- a/core/services/relay/evm/request_round_tracker.go +++ b/core/services/relay/evm/request_round_tracker.go @@ -11,8 +11,8 @@ import ( "github.com/jmoiron/sqlx" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/services" diff --git a/core/services/relay/evm/request_round_tracker_test.go b/core/services/relay/evm/request_round_tracker_test.go index a867c0e8..18c79814 100644 --- a/core/services/relay/evm/request_round_tracker_test.go +++ b/core/services/relay/evm/request_round_tracker_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" commonmocks "github.com/goplugin/pluginv3.0/v2/common/mocks" evmclimocks "github.com/goplugin/pluginv3.0/v2/core/chains/evm/client/mocks" diff --git a/core/services/relay/evm/standard_config_provider.go b/core/services/relay/evm/standard_config_provider.go index d2b658f7..fe5d940a 100644 --- a/core/services/relay/evm/standard_config_provider.go +++ b/core/services/relay/evm/standard_config_provider.go @@ -6,8 +6,8 @@ import ( "github.com/ethereum/go-ethereum/common" - "github.com/goplugin/libocr/offchainreporting2plus/chains/evmutil" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/chains/evmutil" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/pluginv3.0/v2/core/chains/legacyevm" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/core/services/relay/evm/types/types.go b/core/services/relay/evm/types/types.go index 875e78ff..82849243 100644 --- a/core/services/relay/evm/types/types.go +++ b/core/services/relay/evm/types/types.go @@ -9,7 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/lib/pq" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "gopkg.in/guregu/null.v2" "github.com/goplugin/plugin-common/pkg/codec" diff --git a/core/services/relay/relay_test.go b/core/services/relay/relay_test.go index 5b1cf222..71976f41 100644 --- a/core/services/relay/relay_test.go +++ b/core/services/relay/relay_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/loop" "github.com/goplugin/plugin-common/pkg/types" diff --git a/core/services/telemetry/common.go b/core/services/telemetry/common.go index e811c266..40ab7013 100644 --- a/core/services/telemetry/common.go +++ b/core/services/telemetry/common.go @@ -1,7 +1,7 @@ package telemetry import ( - ocrtypes "github.com/goplugin/libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/services/synchronization" ) diff --git a/core/services/telemetry/ingress.go b/core/services/telemetry/ingress.go index 840a48db..d6b7d1a1 100644 --- a/core/services/telemetry/ingress.go +++ b/core/services/telemetry/ingress.go @@ -3,7 +3,7 @@ package telemetry import ( "context" - ocrtypes "github.com/goplugin/libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/services/synchronization" ) diff --git a/core/services/telemetry/ingress_batch.go b/core/services/telemetry/ingress_batch.go index e5087151..d3447470 100644 --- a/core/services/telemetry/ingress_batch.go +++ b/core/services/telemetry/ingress_batch.go @@ -3,7 +3,7 @@ package telemetry import ( "context" - ocrtypes "github.com/goplugin/libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/services/synchronization" ) diff --git a/core/services/telemetry/manager.go b/core/services/telemetry/manager.go index 4a236887..0e65e59a 100644 --- a/core/services/telemetry/manager.go +++ b/core/services/telemetry/manager.go @@ -9,7 +9,7 @@ import ( "github.com/pkg/errors" "go.uber.org/multierr" - "github.com/goplugin/libocr/commontypes" + "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/plugin-common/pkg/services" "github.com/goplugin/pluginv3.0/v2/core/config" diff --git a/core/services/telemetry/noop.go b/core/services/telemetry/noop.go index 31d78590..482300fe 100644 --- a/core/services/telemetry/noop.go +++ b/core/services/telemetry/noop.go @@ -1,7 +1,7 @@ package telemetry import ( - ocrtypes "github.com/goplugin/libocr/commontypes" + ocrtypes "github.com/goplugin/plugin-libocr/commontypes" "github.com/goplugin/pluginv3.0/v2/core/services/synchronization" ) diff --git a/core/utils/utils.go b/core/utils/utils.go index 879740d7..51f137b8 100644 --- a/core/utils/utils.go +++ b/core/utils/utils.go @@ -26,7 +26,7 @@ import ( "golang.org/x/crypto/bcrypt" "golang.org/x/crypto/sha3" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/goplugin/plugin-common/pkg/services" ) diff --git a/core/web/jobs_controller_test.go b/core/web/jobs_controller_test.go index 15004204..c40e46f5 100644 --- a/core/web/jobs_controller_test.go +++ b/core/web/jobs_controller_test.go @@ -19,7 +19,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/consul/sdk/freeport" "github.com/pelletier/go-toml" - ragep2ptypes "github.com/goplugin/libocr/ragep2p/types" + ragep2ptypes "github.com/goplugin/plugin-libocr/ragep2p/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" diff --git a/docs/Mercury.md b/docs/Mercury.md index 5a0722b2..82c84a87 100644 --- a/docs/Mercury.md +++ b/docs/Mercury.md @@ -6,7 +6,7 @@ [Contracts](https://github.com/goplugin/pluginv3.0/contracts/src/v0.8/llo-feeds) -[OCR3 Config Documentation](https://github.com/goplugin/libocr/blob/master/offchainreporting2plus/internal/config/ocr3config/public_config.go) +[OCR3 Config Documentation](https://github.com/goplugin/plugin-libocr/blob/master/offchainreporting2plus/internal/config/ocr3config/public_config.go) diff --git a/go.md b/go.md index bce99736..3edc2f81 100644 --- a/go.md +++ b/go.md @@ -41,7 +41,7 @@ flowchart LR plugin/v2 --> plugin-vrf click plugin-vrf href "https://github.com/goplugin/plugin-vrf" plugin/v2 --> libocr - click libocr href "https://github.com/goplugin/libocr" + click libocr href "https://github.com/goplugin/plugin-libocr" plugin/v2 --> tdh2/go/ocr2/decryptionplugin click tdh2/go/ocr2/decryptionplugin href "https://github.com/goplugin/tdh2" plugin/v2 --> tdh2/go/tdh2 diff --git a/go.mod b/go.mod index 09cdf0d6..9dfae254 100644 --- a/go.mod +++ b/go.mod @@ -75,7 +75,7 @@ require ( github.com/goplugin/plugin-solana v1.0.3-0.20240213161921-c4d342b761b0 github.com/goplugin/plugin-starknet/relayer v0.0.1-beta-test.0.20240213121419-1272736c2ac0 github.com/goplugin/plugin-vrf v0.0.0-20231120191722-fef03814f868 - github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a + github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1 github.com/goplugin/tdh2/go/tdh2 v0.0.0-20230906073235-9e478e5e19f1 github.com/goplugin/wsrpc v0.7.2 diff --git a/go.sum b/go.sum index 11a0e5d1..e985ccf2 100644 --- a/go.sum +++ b/go.sum @@ -1184,8 +1184,8 @@ github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16 h1:TFe+FvzxClbl github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16/go.mod h1:lBS5MtSSBZk0SHc66KACcjjlU6WzEVP/8pwz68aMkCI= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f h1:hgJif132UCdjo8u43i7iPN1/MFnu49hv7lFGFftCHKU= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f/go.mod h1:MvMXoufZAtqExNexqi4cjrNYE9MefKddKylxjS+//n0= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1 h1:yiKnypAqP8l0OX0P3klzZ7SCcBUxy5KqTAKZmQOvSQE= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1/go.mod h1:q6f4fe39oZPdsh1i57WznEZgxd8siidMaSFq3wdPmVg= github.com/goplugin/tdh2/go/tdh2 v0.0.0-20230906073235-9e478e5e19f1 h1:Dai1bn+Q5cpeGMQwRdjOdVjG8mmFFROVkSKuUgBErRQ= diff --git a/integration-tests/actions/automation_ocr_helpers.go b/integration-tests/actions/automation_ocr_helpers.go index f2d04316..5cbfa53b 100644 --- a/integration-tests/actions/automation_ocr_helpers.go +++ b/integration-tests/actions/automation_ocr_helpers.go @@ -14,9 +14,9 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/guregu/null.v4" - ocr2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocr3 "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocr3 "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers20config "github.com/goplugin/plugin-automation/pkg/v2/config" ocr2keepers30config "github.com/goplugin/plugin-automation/pkg/v3/config" diff --git a/integration-tests/actions/automation_ocr_helpers_local.go b/integration-tests/actions/automation_ocr_helpers_local.go index 5fdec682..01489029 100644 --- a/integration-tests/actions/automation_ocr_helpers_local.go +++ b/integration-tests/actions/automation_ocr_helpers_local.go @@ -11,9 +11,9 @@ import ( "github.com/rs/zerolog" "gopkg.in/guregu/null.v4" - ocr2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocr3 "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + ocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocr3 "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" ocr2keepers20config "github.com/goplugin/plugin-automation/pkg/v2/config" ocr2keepers30config "github.com/goplugin/plugin-automation/pkg/v3/config" diff --git a/integration-tests/actions/automationv2/actions.go b/integration-tests/actions/automationv2/actions.go index d3281a7d..8683913f 100644 --- a/integration-tests/actions/automationv2/actions.go +++ b/integration-tests/actions/automationv2/actions.go @@ -16,10 +16,10 @@ import ( "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/lib/pq" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocr2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - ocr3 "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocr2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + ocr3 "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" "gopkg.in/guregu/null.v4" diff --git a/integration-tests/actions/ocr2_helpers.go b/integration-tests/actions/ocr2_helpers.go index 2636238e..d38c3886 100644 --- a/integration-tests/actions/ocr2_helpers.go +++ b/integration-tests/actions/ocr2_helpers.go @@ -16,9 +16,9 @@ import ( "golang.org/x/sync/errgroup" "gopkg.in/guregu/null.v4" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-testing-framework/blockchain" ctfClient "github.com/goplugin/plugin-testing-framework/client" diff --git a/integration-tests/actions/ocr2_helpers_local.go b/integration-tests/actions/ocr2_helpers_local.go index f4a049e1..05db3a5d 100644 --- a/integration-tests/actions/ocr2_helpers_local.go +++ b/integration-tests/actions/ocr2_helpers_local.go @@ -12,9 +12,9 @@ import ( "github.com/google/uuid" "github.com/lib/pq" "github.com/rs/zerolog/log" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "golang.org/x/sync/errgroup" "gopkg.in/guregu/null.v4" diff --git a/integration-tests/actions/ocr2vrf_actions/ocr2vrf_config_helpers.go b/integration-tests/actions/ocr2vrf_actions/ocr2vrf_config_helpers.go index 2faa156f..28a93d11 100644 --- a/integration-tests/actions/ocr2vrf_actions/ocr2vrf_config_helpers.go +++ b/integration-tests/actions/ocr2vrf_actions/ocr2vrf_config_helpers.go @@ -16,8 +16,8 @@ import ( "go.dedis.ch/kyber/v3/group/edwards25519" "gopkg.in/guregu/null.v4" - "github.com/goplugin/libocr/offchainreporting2plus/confighelper" - "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-vrf/altbn_128" "github.com/goplugin/plugin-vrf/dkg" diff --git a/integration-tests/contracts/contract_deployer.go b/integration-tests/contracts/contract_deployer.go index b041087b..c7874b34 100644 --- a/integration-tests/contracts/contract_deployer.go +++ b/integration-tests/contracts/contract_deployer.go @@ -16,9 +16,9 @@ import ( "github.com/rs/zerolog" "github.com/rs/zerolog/log" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrConfigHelper "github.com/goplugin/libocr/offchainreporting/confighelper" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrConfigHelper "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" "github.com/goplugin/plugin-testing-framework/blockchain" "github.com/goplugin/pluginv3.0/v2/core/gethwrappers/generated/vrf_mock_ethlink_aggregator" diff --git a/integration-tests/contracts/contract_models.go b/integration-tests/contracts/contract_models.go index dc5d53d9..a51e9d71 100644 --- a/integration-tests/contracts/contract_models.go +++ b/integration-tests/contracts/contract_models.go @@ -8,10 +8,10 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrConfigHelper "github.com/goplugin/libocr/offchainreporting/confighelper" - ocrConfigHelper2 "github.com/goplugin/libocr/offchainreporting2plus/confighelper" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrConfigHelper "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" + ocrConfigHelper2 "github.com/goplugin/plugin-libocr/offchainreporting2plus/confighelper" "github.com/goplugin/pluginv3.0/integration-tests/client" "github.com/goplugin/pluginv3.0/v2/core/gethwrappers/generated/flux_aggregator_wrapper" diff --git a/integration-tests/contracts/ethereum_contracts.go b/integration-tests/contracts/ethereum_contracts.go index b0636473..d12fb0a6 100644 --- a/integration-tests/contracts/ethereum_contracts.go +++ b/integration-tests/contracts/ethereum_contracts.go @@ -16,10 +16,10 @@ import ( "github.com/rs/zerolog" "github.com/rs/zerolog/log" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" - ocrConfigHelper "github.com/goplugin/libocr/offchainreporting/confighelper" - ocrTypes "github.com/goplugin/libocr/offchainreporting/types" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" + ocrConfigHelper "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" + ocrTypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/plugin-testing-framework/blockchain" "github.com/goplugin/pluginv3.0/v2/core/gethwrappers/functions/generated/functions_coordinator" diff --git a/integration-tests/contracts/ethereum_contracts_local.go b/integration-tests/contracts/ethereum_contracts_local.go index 246b49c6..19478f09 100644 --- a/integration-tests/contracts/ethereum_contracts_local.go +++ b/integration-tests/contracts/ethereum_contracts_local.go @@ -6,8 +6,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/rs/zerolog/log" - ocrConfigHelper "github.com/goplugin/libocr/offchainreporting/confighelper" - ocrTypes "github.com/goplugin/libocr/offchainreporting/types" + ocrConfigHelper "github.com/goplugin/plugin-libocr/offchainreporting/confighelper" + ocrTypes "github.com/goplugin/plugin-libocr/offchainreporting/types" "github.com/goplugin/pluginv3.0/integration-tests/client" ) diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 37819c5e..70d5227b 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -28,7 +28,7 @@ require ( github.com/goplugin/plugin-testing-framework v1.23.2 github.com/goplugin/plugin-vrf v0.0.0-20231120191722-fef03814f868 github.com/goplugin/pluginv3.0/v2 v2.0.0-00010101000000-000000000000 - github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a + github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a github.com/goplugin/tdh2/go/tdh2 v0.0.0-20230906073235-9e478e5e19f1 github.com/goplugin/wasp v0.4.2 github.com/spf13/cobra v1.8.0 diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 6cbaf558..b2e04024 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1525,8 +1525,8 @@ github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16 h1:TFe+FvzxClbl github.com/goplugin/go-plugin v0.0.0-20240208201424-b3b91517de16/go.mod h1:lBS5MtSSBZk0SHc66KACcjjlU6WzEVP/8pwz68aMkCI= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f h1:hgJif132UCdjo8u43i7iPN1/MFnu49hv7lFGFftCHKU= github.com/goplugin/grpc-proxy v0.0.0-20230731113816-f1be6620749f/go.mod h1:MvMXoufZAtqExNexqi4cjrNYE9MefKddKylxjS+//n0= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= -github.com/goplugin/libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a h1:nGkZ9uXS8lPIJOi68rdftEo2c9Q8qbRAi5+XMnKobVc= +github.com/goplugin/plugin-libocr v0.0.0-20240215150045-fe2ba71b2f0a/go.mod h1:kC0qmVPUaVkFqGiZMNhmRmjdphuUmeyLEdlWFOQzFWI= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1 h1:yiKnypAqP8l0OX0P3klzZ7SCcBUxy5KqTAKZmQOvSQE= github.com/goplugin/tdh2/go/ocr2/decryptionplugin v0.0.0-20230906073235-9e478e5e19f1/go.mod h1:q6f4fe39oZPdsh1i57WznEZgxd8siidMaSFq3wdPmVg= github.com/goplugin/tdh2/go/tdh2 v0.0.0-20230906073235-9e478e5e19f1 h1:Dai1bn+Q5cpeGMQwRdjOdVjG8mmFFROVkSKuUgBErRQ= diff --git a/integration-tests/load/automationv2_1/automationv2_1_test.go b/integration-tests/load/automationv2_1/automationv2_1_test.go index 8047b267..184412cb 100644 --- a/integration-tests/load/automationv2_1/automationv2_1_test.go +++ b/integration-tests/load/automationv2_1/automationv2_1_test.go @@ -17,7 +17,7 @@ import ( "github.com/slack-go/slack" "github.com/stretchr/testify/require" - ocr3 "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" + ocr3 "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" "github.com/goplugin/wasp" ocr2keepers30config "github.com/goplugin/plugin-automation/pkg/v3/config" diff --git a/integration-tests/smoke/automation_test.go b/integration-tests/smoke/automation_test.go index f9a6befa..4a0249dd 100644 --- a/integration-tests/smoke/automation_test.go +++ b/integration-tests/smoke/automation_test.go @@ -12,7 +12,7 @@ import ( ctfTestEnv "github.com/goplugin/plugin-testing-framework/docker/test_env" - ocr3 "github.com/goplugin/libocr/offchainreporting2plus/ocr3confighelper" + ocr3 "github.com/goplugin/plugin-libocr/offchainreporting2plus/ocr3confighelper" ocr2keepers30config "github.com/goplugin/plugin-automation/pkg/v3/config" diff --git a/integration-tests/testsetups/ocr.go b/integration-tests/testsetups/ocr.go index 36044838..5c3f2e63 100644 --- a/integration-tests/testsetups/ocr.go +++ b/integration-tests/testsetups/ocr.go @@ -22,8 +22,8 @@ import ( "github.com/rs/zerolog" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/gethwrappers/offchainaggregator" - "github.com/goplugin/libocr/gethwrappers2/ocr2aggregator" + "github.com/goplugin/plugin-libocr/gethwrappers/offchainaggregator" + "github.com/goplugin/plugin-libocr/gethwrappers2/ocr2aggregator" "github.com/goplugin/plugin-testing-framework/blockchain" ctfClient "github.com/goplugin/plugin-testing-framework/client" diff --git a/plugins/README.md b/plugins/README.md index 42798d5d..69dc5096 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -24,7 +24,7 @@ Images built from this Dockerfile can otherwise be used normally, provided that LOOPPs communicate over GRPC, which always includes a `context.Context` and requires realistic timeouts. Placeholder/dummy values (e.g. `MaxDurationQuery = 0`) will not work and must be updated to realistic values. In lieu of reconfiguring already deployed contracts on Solana, the environment variable `CL_MIN_OCR2_MAX_DURATION_QUERY` can be set establish a new minimum -via libocr's [LocalConfig.MinOCR2MaxDurationQuery](https://pkg.go.dev/github.com/goplugin/libocr/offchainreporting2plus/types#LocalConfig). +via libocr's [LocalConfig.MinOCR2MaxDurationQuery](https://pkg.go.dev/github.com/goplugin/plugin-libocr/offchainreporting2plus/types#LocalConfig). If left unset, the default value is `100ms`. #### Prometheus diff --git a/plugins/medianpoc/data_source.go b/plugins/medianpoc/data_source.go index 2c422117..5d6da85c 100644 --- a/plugins/medianpoc/data_source.go +++ b/plugins/medianpoc/data_source.go @@ -8,7 +8,7 @@ import ( "sync" "time" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/plugin-common/pkg/types" diff --git a/plugins/medianpoc/data_source_test.go b/plugins/medianpoc/data_source_test.go index 7f91631a..9e33b7bb 100644 --- a/plugins/medianpoc/data_source_test.go +++ b/plugins/medianpoc/data_source_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/utils/tests" "github.com/goplugin/pluginv3.0/v2/core/logger" diff --git a/plugins/medianpoc/plugin.go b/plugins/medianpoc/plugin.go index dedd7b0e..b776dab1 100644 --- a/plugins/medianpoc/plugin.go +++ b/plugins/medianpoc/plugin.go @@ -5,9 +5,9 @@ import ( "encoding/json" "fmt" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/logger" "github.com/goplugin/plugin-common/pkg/loop" diff --git a/plugins/medianpoc/plugin_test.go b/plugins/medianpoc/plugin_test.go index bc65ec27..2b41743f 100644 --- a/plugins/medianpoc/plugin_test.go +++ b/plugins/medianpoc/plugin_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/goplugin/libocr/offchainreporting2/reportingplugin/median" - ocrtypes "github.com/goplugin/libocr/offchainreporting2plus/types" + "github.com/goplugin/plugin-libocr/offchainreporting2/reportingplugin/median" + ocrtypes "github.com/goplugin/plugin-libocr/offchainreporting2plus/types" "github.com/goplugin/plugin-common/pkg/types" "github.com/goplugin/plugin-common/pkg/utils/tests"