From 36b9d4fbfb0dc3523b6dddedefd85ed5b9f882ba Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 21 Aug 2024 16:54:05 +0900 Subject: [PATCH] feat: update package name --- node/README.md | 4 +- node/cmd/admin/main.go | 4 +- node/cmd/api/main.go | 22 +++---- node/cmd/boot_api/main.go | 4 +- node/cmd/dal/main.go | 4 +- node/cmd/delegator/main.go | 16 ++--- node/cmd/fetcher/main.go | 6 +- node/cmd/logscribe/main.go | 2 +- node/cmd/node/main.go | 16 ++--- node/cmd/por/main.go | 4 +- node/cmd/reporter/main.go | 4 +- node/cmd/sentinel/main.go | 22 +++---- node/go.mod | 2 +- node/pkg/admin/admin.go | 20 +++---- node/pkg/admin/aggregator/controller.go | 8 +-- node/pkg/admin/config/controller.go | 6 +- node/pkg/admin/feed/controller.go | 2 +- node/pkg/admin/fetcher/controller.go | 4 +- node/pkg/admin/host/controller.go | 4 +- node/pkg/admin/providerUrl/controller.go | 2 +- node/pkg/admin/proxy/controller.go | 2 +- node/pkg/admin/tests/aggregator_test.go | 2 +- node/pkg/admin/tests/config_test.go | 4 +- node/pkg/admin/tests/feed_test.go | 2 +- node/pkg/admin/tests/fetcher_test.go | 2 +- node/pkg/admin/tests/host_test.go | 2 +- node/pkg/admin/tests/main_test.go | 20 +++---- node/pkg/admin/tests/providerUrl_test.go | 4 +- node/pkg/admin/tests/proxy_test.go | 4 +- node/pkg/admin/tests/test_helper.go | 2 +- node/pkg/admin/utils/utils.go | 6 +- node/pkg/aggregator/aggregator.go | 8 +-- node/pkg/aggregator/aggregator_test.go | 4 +- node/pkg/aggregator/app.go | 8 +-- node/pkg/aggregator/app_test.go | 2 +- .../aggregator/globalaggregatebulkwriter.go | 4 +- node/pkg/aggregator/main_test.go | 16 ++--- node/pkg/aggregator/types.go | 8 +-- node/pkg/aggregator/utils.go | 4 +- node/pkg/alert/alert.go | 2 +- node/pkg/api/apierr/controller.go | 2 +- node/pkg/api/blocks/controller.go | 2 +- node/pkg/api/chain/controller.go | 2 +- node/pkg/api/l2aggregator/controller.go | 4 +- node/pkg/api/listener/controller.go | 6 +- node/pkg/api/proxy/controller.go | 2 +- node/pkg/api/reporter/controller.go | 6 +- node/pkg/api/service/controller.go | 2 +- node/pkg/api/tests/apierr_test.go | 4 +- node/pkg/api/tests/chain_test.go | 4 +- node/pkg/api/tests/listener_test.go | 8 +-- node/pkg/api/tests/proxy_test.go | 4 +- node/pkg/api/tests/reporter_test.go | 8 +-- node/pkg/api/tests/service_test.go | 4 +- node/pkg/api/tests/vrf_test.go | 6 +- node/pkg/api/utils/utils.go | 2 +- node/pkg/api/vrf/controller.go | 4 +- node/pkg/boot/boot.go | 12 ++-- node/pkg/boot/peer/controller.go | 4 +- node/pkg/boot/tests/main_test.go | 8 +-- node/pkg/boot/tests/peer_test.go | 12 ++-- node/pkg/boot/utils/utils.go | 4 +- node/pkg/bus/bus.go | 2 +- node/pkg/chain/helper/helper.go | 10 ++-- node/pkg/chain/helper/signer.go | 6 +- node/pkg/chain/helper/types.go | 4 +- node/pkg/chain/tests/cachedabi_test.go | 4 +- node/pkg/chain/tests/chain_test.go | 10 ++-- node/pkg/chain/tests/noncemanager_test.go | 2 +- node/pkg/chain/utils/abicached.go | 2 +- node/pkg/chain/utils/utils.go | 6 +- node/pkg/chain/websocketchainreader/type.go | 2 +- .../websocketchainreader/websocketreader.go | 6 +- node/pkg/checker/balance/app.go | 4 +- node/pkg/checker/dal/app.go | 10 ++-- node/pkg/checker/dalstats/app.go | 6 +- node/pkg/checker/dbcronjob/app.go | 6 +- node/pkg/checker/event/app.go | 6 +- node/pkg/checker/health/app.go | 4 +- node/pkg/checker/inspect/app.go | 6 +- node/pkg/checker/offset/app.go | 6 +- node/pkg/checker/peers/app.go | 4 +- node/pkg/checker/signer/app.go | 2 +- node/pkg/dal/apiv2/controller.go | 12 ++-- node/pkg/dal/apiv2/types.go | 8 +-- node/pkg/dal/app.go | 14 ++--- node/pkg/dal/collector/collector.go | 14 ++--- node/pkg/dal/collector/utils.go | 6 +- node/pkg/dal/hub/hub.go | 8 +-- node/pkg/dal/tests/api_test.go | 12 ++-- node/pkg/dal/tests/collector_test.go | 8 +-- node/pkg/dal/tests/keycache_test.go | 2 +- node/pkg/dal/tests/main_test.go | 20 +++---- node/pkg/dal/tests/stats_test.go | 4 +- node/pkg/dal/utils/keycache/keycache.go | 2 +- node/pkg/dal/utils/stats/stats.go | 2 +- node/pkg/db/pgsql.go | 4 +- node/pkg/db/redis.go | 4 +- node/pkg/db/rediscribe.go | 2 +- node/pkg/delegator/contract/controller.go | 2 +- node/pkg/delegator/function/controller.go | 2 +- node/pkg/delegator/organization/controller.go | 2 +- node/pkg/delegator/reporter/controller.go | 2 +- node/pkg/delegator/sign/controller.go | 2 +- node/pkg/delegator/tests/contract_test.go | 4 +- node/pkg/delegator/tests/function_test.go | 4 +- node/pkg/delegator/tests/globals_test.go | 12 ++-- node/pkg/delegator/tests/main_test.go | 2 +- node/pkg/delegator/tests/organization_test.go | 4 +- node/pkg/delegator/tests/reporter_test.go | 4 +- node/pkg/delegator/tests/sign_test.go | 4 +- node/pkg/delegator/utils/utils.go | 2 +- node/pkg/fetcher/app.go | 8 +-- node/pkg/fetcher/app_test.go | 2 +- node/pkg/fetcher/fetcher.go | 6 +- node/pkg/fetcher/fetcher_test.go | 2 +- node/pkg/fetcher/localaggregatebulkwriter.go | 2 +- .../fetcher/localaggregatebulkwriter_test.go | 2 +- node/pkg/fetcher/localaggregator.go | 2 +- node/pkg/fetcher/main_test.go | 16 ++--- node/pkg/fetcher/types.go | 8 +-- node/pkg/fetcher/utils.go | 10 ++-- node/pkg/fetcher/utils_test.go | 2 +- node/pkg/libp2p/helper/app.go | 6 +- node/pkg/libp2p/setup/setup.go | 6 +- node/pkg/libp2p/setup/type.go | 2 +- node/pkg/libp2p/tests/helper_test.go | 6 +- node/pkg/libp2p/tests/libp2p_test.go | 4 +- node/pkg/libp2p/utils/utils.go | 4 +- node/pkg/logscribe/api/controller.go | 4 +- node/pkg/logscribe/app.go | 4 +- .../logscribe/logprocessor/logprocessor.go | 8 +-- node/pkg/logscribe/tests/app_test.go | 8 +-- node/pkg/logscribe/tests/controller_test.go | 8 +-- node/pkg/logscribe/tests/main_test.go | 4 +- node/pkg/logscribe/utils.go | 6 +- node/pkg/logscribeconsumer/app.go | 4 +- node/pkg/logscribeconsumer/app_test.go | 2 +- node/pkg/logscribeconsumer/main_test.go | 8 +-- node/pkg/logscribeconsumer/types.go | 2 +- node/pkg/por/app.go | 14 ++--- node/pkg/por/types.go | 4 +- node/pkg/raft/raft.go | 2 +- node/pkg/raft/raft_test.go | 2 +- node/pkg/reporter/app.go | 8 +-- node/pkg/reporter/reporter.go | 2 +- node/pkg/reporter/reporter_test.go | 2 +- node/pkg/reporter/types.go | 6 +- node/pkg/reporter/utils.go | 10 ++-- node/pkg/utils/calculator/calculator.go | 2 +- node/pkg/utils/encryptor/encryptor.go | 2 +- node/pkg/utils/reducer/reducer.go | 2 +- node/pkg/utils/request/request.go | 2 +- node/pkg/utils/tests/calculator_test.go | 2 +- node/pkg/utils/tests/encryptor_test.go | 2 +- node/pkg/utils/tests/pool_test.go | 2 +- node/pkg/utils/tests/reducer_test.go | 2 +- node/pkg/utils/tests/request_test.go | 2 +- node/pkg/utils/tests/retrier_test.go | 2 +- node/pkg/utils/tests/set_test.go | 2 +- node/pkg/websocketfetcher/app.go | 58 +++++++++---------- node/pkg/websocketfetcher/common/type.go | 6 +- .../providers/binance/binance.go | 4 +- .../providers/binance/utils.go | 2 +- .../websocketfetcher/providers/bingx/bingx.go | 4 +- .../websocketfetcher/providers/bingx/utils.go | 2 +- .../providers/bitget/bitget.go | 4 +- .../providers/bitget/utils.go | 2 +- .../providers/bithumb/bithumb.go | 4 +- .../providers/bithumb/utils.go | 2 +- .../providers/bitmart/bitmart.go | 4 +- .../providers/bitmart/utils.go | 2 +- .../providers/bitstamp/bitstamp.go | 4 +- .../providers/bitstamp/utils.go | 4 +- .../websocketfetcher/providers/btse/btse.go | 4 +- .../websocketfetcher/providers/btse/utils.go | 4 +- .../websocketfetcher/providers/bybit/bybit.go | 4 +- .../websocketfetcher/providers/bybit/utils.go | 2 +- .../providers/coinbase/coinbase.go | 4 +- .../providers/coinbase/utils.go | 2 +- .../providers/coinex/coinex.go | 4 +- .../providers/coinex/utils.go | 2 +- .../providers/coinone/coinone.go | 4 +- .../providers/coinone/utils.go | 2 +- .../providers/crypto/crypto.go | 4 +- .../providers/crypto/utils.go | 2 +- .../providers/gateio/gateio.go | 4 +- .../providers/gateio/utils.go | 2 +- .../providers/gemini/gemini.go | 4 +- .../providers/gemini/utils.go | 4 +- .../websocketfetcher/providers/gopax/gopax.go | 6 +- .../websocketfetcher/providers/gopax/utils.go | 4 +- .../websocketfetcher/providers/huobi/huobi.go | 4 +- .../websocketfetcher/providers/huobi/utils.go | 2 +- .../providers/korbit/korbit.go | 4 +- .../providers/korbit/utils.go | 2 +- .../providers/kraken/kraken.go | 4 +- .../providers/kraken/utils.go | 2 +- .../providers/kucoin/kucoin.go | 6 +- .../providers/kucoin/utils.go | 2 +- .../websocketfetcher/providers/lbank/lbank.go | 4 +- .../websocketfetcher/providers/lbank/utils.go | 2 +- .../websocketfetcher/providers/mexc/mexc.go | 4 +- .../websocketfetcher/providers/mexc/utils.go | 2 +- .../pkg/websocketfetcher/providers/okx/okx.go | 4 +- .../websocketfetcher/providers/okx/utils.go | 2 +- .../providers/uniswap/uniswap.go | 8 +-- .../websocketfetcher/providers/upbit/upbit.go | 4 +- .../websocketfetcher/providers/upbit/utils.go | 2 +- .../websocketfetcher/providers/xt/utils.go | 2 +- node/pkg/websocketfetcher/providers/xt/xt.go | 4 +- node/pkg/websocketfetcher/tests/utils_test.go | 30 +++++----- node/pkg/wss/utils.go | 2 +- node/script/inspector/main.go | 2 +- node/script/test_connection/main.go | 2 +- node/script/test_dal_consumer/main.go | 6 +- node/script/test_dal_consumer_ws/main.go | 6 +- node/script/test_fetcher/main.go | 6 +- .../test_fetcher_and_aggregator/main.go | 10 ++-- node/script/test_raft/main.go | 4 +- node/script/test_single_fetch/main.go | 4 +- node/script/test_submission/main.go | 2 +- node/script/test_websocketDexFetcher/main.go | 6 +- node/script/test_websocketFetcher/main.go | 4 +- node/script/test_websocketchainreader/main.go | 4 +- 225 files changed, 591 insertions(+), 591 deletions(-) diff --git a/node/README.md b/node/README.md index 87e6df6b0..0462820cf 100644 --- a/node/README.md +++ b/node/README.md @@ -563,7 +563,7 @@ go test ./tests -v ## Run docker-compose from local environment -- Change api service's docker image into bisonai.com/orakl/apis +- Change api service's docker image into bisonai.com/miko/apis - And if there's `schema={}` in DB connection url in .api.env file update it into keyword `search_path={}` # How to use DB migration tool @@ -578,7 +578,7 @@ brew install golang-migrate ## Migrate commands -- Run commands from bisonai.com/orakl/api folder +- Run commands from bisonai.com/miko/api folder - Write appropriate db connection url for each usecases - Be careful on adding `sslmode=disbale`, if it has other option such as `?schema=public` add `&sslmode=disable` else add `?sslmode=disable` diff --git a/node/cmd/admin/main.go b/node/cmd/admin/main.go index 8bdf990ca..37d4b88ff 100644 --- a/node/cmd/admin/main.go +++ b/node/cmd/admin/main.go @@ -3,8 +3,8 @@ package main import ( "context" - "bisonai.com/orakl/node/pkg/admin" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/admin" + "bisonai.com/miko/node/pkg/bus" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/api/main.go b/node/cmd/api/main.go index a9f2a37c0..b9c3f4755 100644 --- a/node/cmd/api/main.go +++ b/node/cmd/api/main.go @@ -4,17 +4,17 @@ import ( "context" _ "embed" - "bisonai.com/orakl/node/pkg/api/apierr" - "bisonai.com/orakl/node/pkg/api/blocks" - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/listener" - "bisonai.com/orakl/node/pkg/api/proxy" - "bisonai.com/orakl/node/pkg/api/reporter" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" - "bisonai.com/orakl/node/pkg/api/vrf" - - "bisonai.com/orakl/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/api/apierr" + "bisonai.com/miko/node/pkg/api/blocks" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/listener" + "bisonai.com/miko/node/pkg/api/proxy" + "bisonai.com/miko/node/pkg/api/reporter" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/vrf" + + "bisonai.com/miko/node/pkg/logscribeconsumer" "github.com/gofiber/fiber/v2" "github.com/joho/godotenv" "github.com/rs/zerolog/log" diff --git a/node/cmd/boot_api/main.go b/node/cmd/boot_api/main.go index 1546aa565..bc6aedb98 100644 --- a/node/cmd/boot_api/main.go +++ b/node/cmd/boot_api/main.go @@ -3,8 +3,8 @@ package main import ( "context" - "bisonai.com/orakl/node/pkg/boot" - "bisonai.com/orakl/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/boot" + "bisonai.com/miko/node/pkg/logscribeconsumer" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/dal/main.go b/node/cmd/dal/main.go index fd1734b7d..6d5024314 100644 --- a/node/cmd/dal/main.go +++ b/node/cmd/dal/main.go @@ -3,8 +3,8 @@ package main import ( "context" - "bisonai.com/orakl/node/pkg/dal" - "bisonai.com/orakl/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/dal" + "bisonai.com/miko/node/pkg/logscribeconsumer" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/delegator/main.go b/node/cmd/delegator/main.go index a5f7a02a6..b78156c5b 100644 --- a/node/cmd/delegator/main.go +++ b/node/cmd/delegator/main.go @@ -5,14 +5,14 @@ import ( _ "embed" "os" - "bisonai.com/orakl/node/pkg/logscribeconsumer" - - "bisonai.com/orakl/node/pkg/delegator/contract" - "bisonai.com/orakl/node/pkg/delegator/function" - "bisonai.com/orakl/node/pkg/delegator/organization" - "bisonai.com/orakl/node/pkg/delegator/reporter" - "bisonai.com/orakl/node/pkg/delegator/sign" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/logscribeconsumer" + + "bisonai.com/miko/node/pkg/delegator/contract" + "bisonai.com/miko/node/pkg/delegator/function" + "bisonai.com/miko/node/pkg/delegator/organization" + "bisonai.com/miko/node/pkg/delegator/reporter" + "bisonai.com/miko/node/pkg/delegator/sign" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/gofiber/fiber/v2" "github.com/joho/godotenv" diff --git a/node/cmd/fetcher/main.go b/node/cmd/fetcher/main.go index ce95b343b..328ce6532 100644 --- a/node/cmd/fetcher/main.go +++ b/node/cmd/fetcher/main.go @@ -4,9 +4,9 @@ import ( "context" "sync" - "bisonai.com/orakl/node/pkg/admin" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/fetcher" + "bisonai.com/miko/node/pkg/admin" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/fetcher" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/logscribe/main.go b/node/cmd/logscribe/main.go index 577fcf2f2..e8c37d70a 100644 --- a/node/cmd/logscribe/main.go +++ b/node/cmd/logscribe/main.go @@ -5,7 +5,7 @@ import ( "os" "strings" - "bisonai.com/orakl/node/pkg/logscribe" + "bisonai.com/miko/node/pkg/logscribe" "github.com/rs/zerolog" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/node/main.go b/node/cmd/node/main.go index 5cc410183..5ba12a7a8 100644 --- a/node/cmd/node/main.go +++ b/node/cmd/node/main.go @@ -6,14 +6,14 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/admin" - "bisonai.com/orakl/node/pkg/aggregator" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/fetcher" - "bisonai.com/orakl/node/pkg/libp2p/helper" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" - "bisonai.com/orakl/node/pkg/logscribeconsumer" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/admin" + "bisonai.com/miko/node/pkg/aggregator" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/fetcher" + "bisonai.com/miko/node/pkg/libp2p/helper" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/por/main.go b/node/cmd/por/main.go index 61d0ce955..5d5c7c89e 100644 --- a/node/cmd/por/main.go +++ b/node/cmd/por/main.go @@ -3,8 +3,8 @@ package main import ( "context" - "bisonai.com/orakl/node/pkg/logscribeconsumer" - "bisonai.com/orakl/node/pkg/por" + "bisonai.com/miko/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/por" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/reporter/main.go b/node/cmd/reporter/main.go index 6ddd9342b..2260f1092 100644 --- a/node/cmd/reporter/main.go +++ b/node/cmd/reporter/main.go @@ -7,8 +7,8 @@ import ( "os/signal" "syscall" - "bisonai.com/orakl/node/pkg/logscribeconsumer" - "bisonai.com/orakl/node/pkg/reporter" + "bisonai.com/miko/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/reporter" "github.com/rs/zerolog/log" ) diff --git a/node/cmd/sentinel/main.go b/node/cmd/sentinel/main.go index 07906e3c3..f48a8ad62 100644 --- a/node/cmd/sentinel/main.go +++ b/node/cmd/sentinel/main.go @@ -6,17 +6,17 @@ import ( "os" "sync" - "bisonai.com/orakl/node/pkg/checker/balance" - // "bisonai.com/orakl/node/pkg/checker/dal" - // "bisonai.com/orakl/node/pkg/checker/dalstats" - "bisonai.com/orakl/node/pkg/checker/dbcronjob" - "bisonai.com/orakl/node/pkg/checker/event" - "bisonai.com/orakl/node/pkg/checker/health" - "bisonai.com/orakl/node/pkg/checker/inspect" - "bisonai.com/orakl/node/pkg/checker/offset" - "bisonai.com/orakl/node/pkg/checker/peers" - "bisonai.com/orakl/node/pkg/checker/signer" - "bisonai.com/orakl/node/pkg/logscribeconsumer" + "bisonai.com/miko/node/pkg/checker/balance" + // "bisonai.com/miko/node/pkg/checker/dal" + // "bisonai.com/miko/node/pkg/checker/dalstats" + "bisonai.com/miko/node/pkg/checker/dbcronjob" + "bisonai.com/miko/node/pkg/checker/event" + "bisonai.com/miko/node/pkg/checker/health" + "bisonai.com/miko/node/pkg/checker/inspect" + "bisonai.com/miko/node/pkg/checker/offset" + "bisonai.com/miko/node/pkg/checker/peers" + "bisonai.com/miko/node/pkg/checker/signer" + "bisonai.com/miko/node/pkg/logscribeconsumer" "github.com/rs/zerolog/log" ) diff --git a/node/go.mod b/node/go.mod index e085bcc5a..521701c4c 100644 --- a/node/go.mod +++ b/node/go.mod @@ -1,4 +1,4 @@ -module bisonai.com/orakl/node +module bisonai.com/miko/node go 1.22.3 diff --git a/node/pkg/admin/admin.go b/node/pkg/admin/admin.go index 5702a43a6..eaf0a14a1 100644 --- a/node/pkg/admin/admin.go +++ b/node/pkg/admin/admin.go @@ -5,16 +5,16 @@ import ( "fmt" "os" - "bisonai.com/orakl/node/pkg/admin/aggregator" - "bisonai.com/orakl/node/pkg/admin/config" - "bisonai.com/orakl/node/pkg/admin/feed" - "bisonai.com/orakl/node/pkg/admin/fetcher" - "bisonai.com/orakl/node/pkg/admin/host" - "bisonai.com/orakl/node/pkg/admin/providerUrl" - "bisonai.com/orakl/node/pkg/admin/proxy" - - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/admin/aggregator" + "bisonai.com/miko/node/pkg/admin/config" + "bisonai.com/miko/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/admin/fetcher" + "bisonai.com/miko/node/pkg/admin/host" + "bisonai.com/miko/node/pkg/admin/providerUrl" + "bisonai.com/miko/node/pkg/admin/proxy" + + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/aggregator/controller.go b/node/pkg/admin/aggregator/controller.go index 303e544e6..3cb4541b1 100644 --- a/node/pkg/admin/aggregator/controller.go +++ b/node/pkg/admin/aggregator/controller.go @@ -5,10 +5,10 @@ import ( "os" "strconv" - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" - chainutils "bisonai.com/orakl/node/pkg/chain/utils" - errorsentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" + chainutils "bisonai.com/miko/node/pkg/chain/utils" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/config/controller.go b/node/pkg/admin/config/controller.go index a4610afee..82cf1ddc0 100644 --- a/node/pkg/admin/config/controller.go +++ b/node/pkg/admin/config/controller.go @@ -8,9 +8,9 @@ import ( "strconv" "strings" - "bisonai.com/orakl/node/pkg/admin/feed" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/utils/request" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/feed/controller.go b/node/pkg/admin/feed/controller.go index ca999aa55..9623333ce 100644 --- a/node/pkg/admin/feed/controller.go +++ b/node/pkg/admin/feed/controller.go @@ -3,7 +3,7 @@ package feed import ( "encoding/json" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/fetcher/controller.go b/node/pkg/admin/fetcher/controller.go index 49c06f31b..35b0c6594 100644 --- a/node/pkg/admin/fetcher/controller.go +++ b/node/pkg/admin/fetcher/controller.go @@ -3,8 +3,8 @@ package fetcher import ( "strconv" - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/host/controller.go b/node/pkg/admin/host/controller.go index 7551e1247..4059a4c81 100644 --- a/node/pkg/admin/host/controller.go +++ b/node/pkg/admin/host/controller.go @@ -1,8 +1,8 @@ package host import ( - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/admin/providerUrl/controller.go b/node/pkg/admin/providerUrl/controller.go index 8ced681b8..635a7ac81 100644 --- a/node/pkg/admin/providerUrl/controller.go +++ b/node/pkg/admin/providerUrl/controller.go @@ -1,7 +1,7 @@ package providerUrl import ( - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" diff --git a/node/pkg/admin/proxy/controller.go b/node/pkg/admin/proxy/controller.go index 6f860c194..fa59f4041 100644 --- a/node/pkg/admin/proxy/controller.go +++ b/node/pkg/admin/proxy/controller.go @@ -1,7 +1,7 @@ package proxy import ( - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" diff --git a/node/pkg/admin/tests/aggregator_test.go b/node/pkg/admin/tests/aggregator_test.go index e17816cba..31bfeab7b 100644 --- a/node/pkg/admin/tests/aggregator_test.go +++ b/node/pkg/admin/tests/aggregator_test.go @@ -6,7 +6,7 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/bus" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/config_test.go b/node/pkg/admin/tests/config_test.go index e77d9512e..df6677d7a 100644 --- a/node/pkg/admin/tests/config_test.go +++ b/node/pkg/admin/tests/config_test.go @@ -6,8 +6,8 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/admin/config" - "bisonai.com/orakl/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/admin/config" + "bisonai.com/miko/node/pkg/admin/feed" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/feed_test.go b/node/pkg/admin/tests/feed_test.go index 59ec65d66..804c4a84e 100644 --- a/node/pkg/admin/tests/feed_test.go +++ b/node/pkg/admin/tests/feed_test.go @@ -6,7 +6,7 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/admin/feed" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/fetcher_test.go b/node/pkg/admin/tests/fetcher_test.go index ef6dfb85b..6048b1751 100644 --- a/node/pkg/admin/tests/fetcher_test.go +++ b/node/pkg/admin/tests/fetcher_test.go @@ -6,7 +6,7 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/bus" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/host_test.go b/node/pkg/admin/tests/host_test.go index 201e627f6..96e23ccbe 100644 --- a/node/pkg/admin/tests/host_test.go +++ b/node/pkg/admin/tests/host_test.go @@ -6,7 +6,7 @@ import ( "testing" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/bus" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/main_test.go b/node/pkg/admin/tests/main_test.go index 998e4b24c..d3970317c 100644 --- a/node/pkg/admin/tests/main_test.go +++ b/node/pkg/admin/tests/main_test.go @@ -5,16 +5,16 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/admin/aggregator" - "bisonai.com/orakl/node/pkg/admin/config" - "bisonai.com/orakl/node/pkg/admin/feed" - "bisonai.com/orakl/node/pkg/admin/fetcher" - "bisonai.com/orakl/node/pkg/admin/host" - "bisonai.com/orakl/node/pkg/admin/providerUrl" - "bisonai.com/orakl/node/pkg/admin/proxy" - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/admin/aggregator" + "bisonai.com/miko/node/pkg/admin/config" + "bisonai.com/miko/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/admin/fetcher" + "bisonai.com/miko/node/pkg/admin/host" + "bisonai.com/miko/node/pkg/admin/providerUrl" + "bisonai.com/miko/node/pkg/admin/proxy" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/db" "github.com/gofiber/fiber/v2" ) diff --git a/node/pkg/admin/tests/providerUrl_test.go b/node/pkg/admin/tests/providerUrl_test.go index 284a9b430..08ef28ceb 100644 --- a/node/pkg/admin/tests/providerUrl_test.go +++ b/node/pkg/admin/tests/providerUrl_test.go @@ -6,8 +6,8 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/admin/providerUrl" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/admin/providerUrl" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/proxy_test.go b/node/pkg/admin/tests/proxy_test.go index 2a67a5942..e775349bf 100644 --- a/node/pkg/admin/tests/proxy_test.go +++ b/node/pkg/admin/tests/proxy_test.go @@ -6,8 +6,8 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/admin/proxy" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/admin/proxy" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/admin/tests/test_helper.go b/node/pkg/admin/tests/test_helper.go index be809a3a9..89dfdd7f8 100644 --- a/node/pkg/admin/tests/test_helper.go +++ b/node/pkg/admin/tests/test_helper.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/bus" "github.com/rs/zerolog/log" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/admin/utils/utils.go b/node/pkg/admin/utils/utils.go index cb6641645..33f08916d 100644 --- a/node/pkg/admin/utils/utils.go +++ b/node/pkg/admin/utils/utils.go @@ -8,9 +8,9 @@ import ( "runtime/debug" "strings" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/cors" diff --git a/node/pkg/aggregator/aggregator.go b/node/pkg/aggregator/aggregator.go index c13ed783d..dba22ab62 100644 --- a/node/pkg/aggregator/aggregator.go +++ b/node/pkg/aggregator/aggregator.go @@ -7,10 +7,10 @@ import ( "time" - "bisonai.com/orakl/node/pkg/chain/helper" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/raft" - "bisonai.com/orakl/node/pkg/utils/calculator" + "bisonai.com/miko/node/pkg/chain/helper" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/raft" + "bisonai.com/miko/node/pkg/utils/calculator" pubsub "github.com/libp2p/go-libp2p-pubsub" "github.com/libp2p/go-libp2p/core/host" "github.com/rs/zerolog/log" diff --git a/node/pkg/aggregator/aggregator_test.go b/node/pkg/aggregator/aggregator_test.go index 348203527..f5baca788 100644 --- a/node/pkg/aggregator/aggregator_test.go +++ b/node/pkg/aggregator/aggregator_test.go @@ -6,8 +6,8 @@ import ( "context" "testing" - "bisonai.com/orakl/node/pkg/common/keys" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/common/keys" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/aggregator/app.go b/node/pkg/aggregator/app.go index 4e623c715..796e9915b 100644 --- a/node/pkg/aggregator/app.go +++ b/node/pkg/aggregator/app.go @@ -7,11 +7,11 @@ import ( "strconv" "time" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" pubsub "github.com/libp2p/go-libp2p-pubsub" "github.com/libp2p/go-libp2p/core/host" "github.com/rs/zerolog/log" diff --git a/node/pkg/aggregator/app_test.go b/node/pkg/aggregator/app_test.go index 5d6bb6c74..38ea0aa26 100644 --- a/node/pkg/aggregator/app_test.go +++ b/node/pkg/aggregator/app_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/admin/tests" + "bisonai.com/miko/node/pkg/admin/tests" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/aggregator/globalaggregatebulkwriter.go b/node/pkg/aggregator/globalaggregatebulkwriter.go index 663e64947..68ed46057 100644 --- a/node/pkg/aggregator/globalaggregatebulkwriter.go +++ b/node/pkg/aggregator/globalaggregatebulkwriter.go @@ -4,8 +4,8 @@ import ( "context" "time" - "bisonai.com/orakl/node/pkg/common/keys" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/common/keys" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/aggregator/main_test.go b/node/pkg/aggregator/main_test.go index 278936e13..e3d270fd9 100644 --- a/node/pkg/aggregator/main_test.go +++ b/node/pkg/aggregator/main_test.go @@ -6,14 +6,14 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/admin/aggregator" - "bisonai.com/orakl/node/pkg/admin/config" - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/chain/helper" - - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/db" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/admin/aggregator" + "bisonai.com/miko/node/pkg/admin/config" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/chain/helper" + + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/db" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog" ) diff --git a/node/pkg/aggregator/types.go b/node/pkg/aggregator/types.go index afec8120b..fcd689ecb 100644 --- a/node/pkg/aggregator/types.go +++ b/node/pkg/aggregator/types.go @@ -5,10 +5,10 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/raft" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/raft" pubsub "github.com/libp2p/go-libp2p-pubsub" "github.com/libp2p/go-libp2p/core/host" ) diff --git a/node/pkg/aggregator/utils.go b/node/pkg/aggregator/utils.go index f67009ffb..137e2338b 100644 --- a/node/pkg/aggregator/utils.go +++ b/node/pkg/aggregator/utils.go @@ -3,8 +3,8 @@ package aggregator import ( "context" - "bisonai.com/orakl/node/pkg/common/keys" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/common/keys" + "bisonai.com/miko/node/pkg/db" ) func FilterNegative(values []int64) []int64 { diff --git a/node/pkg/alert/alert.go b/node/pkg/alert/alert.go index e2b452e24..2ff83d3fd 100644 --- a/node/pkg/alert/alert.go +++ b/node/pkg/alert/alert.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/secrets" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/api/apierr/controller.go b/node/pkg/api/apierr/controller.go index 2b26b8278..5f309a707 100644 --- a/node/pkg/api/apierr/controller.go +++ b/node/pkg/api/apierr/controller.go @@ -3,7 +3,7 @@ package apierr import ( "fmt" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/blocks/controller.go b/node/pkg/api/blocks/controller.go index 3e45657c6..ed1a8d0eb 100644 --- a/node/pkg/api/blocks/controller.go +++ b/node/pkg/api/blocks/controller.go @@ -1,7 +1,7 @@ package blocks import ( - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" ) diff --git a/node/pkg/api/chain/controller.go b/node/pkg/api/chain/controller.go index d7fe6fb74..58fe8ac53 100644 --- a/node/pkg/api/chain/controller.go +++ b/node/pkg/api/chain/controller.go @@ -1,7 +1,7 @@ package chain import ( - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/l2aggregator/controller.go b/node/pkg/api/l2aggregator/controller.go index 691b2cc92..e4004fe41 100644 --- a/node/pkg/api/l2aggregator/controller.go +++ b/node/pkg/api/l2aggregator/controller.go @@ -1,8 +1,8 @@ package l2aggregator import ( - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/utils" "github.com/gofiber/fiber/v2" ) diff --git a/node/pkg/api/listener/controller.go b/node/pkg/api/listener/controller.go index 8dad261c3..1f762304d 100644 --- a/node/pkg/api/listener/controller.go +++ b/node/pkg/api/listener/controller.go @@ -1,9 +1,9 @@ package listener import ( - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/proxy/controller.go b/node/pkg/api/proxy/controller.go index 82093791d..6c1435ef4 100644 --- a/node/pkg/api/proxy/controller.go +++ b/node/pkg/api/proxy/controller.go @@ -1,7 +1,7 @@ package proxy import ( - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/reporter/controller.go b/node/pkg/api/reporter/controller.go index f1a110e5d..14e80aa47 100644 --- a/node/pkg/api/reporter/controller.go +++ b/node/pkg/api/reporter/controller.go @@ -1,9 +1,9 @@ package reporter import ( - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/service/controller.go b/node/pkg/api/service/controller.go index c969784ed..11df7a4ec 100644 --- a/node/pkg/api/service/controller.go +++ b/node/pkg/api/service/controller.go @@ -1,7 +1,7 @@ package service import ( - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/tests/apierr_test.go b/node/pkg/api/tests/apierr_test.go index 71684ec76..030ec6af6 100644 --- a/node/pkg/api/tests/apierr_test.go +++ b/node/pkg/api/tests/apierr_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/api/apierr" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/apierr" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/chain_test.go b/node/pkg/api/tests/chain_test.go index 6ec044997..d0da4fc62 100644 --- a/node/pkg/api/tests/chain_test.go +++ b/node/pkg/api/tests/chain_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/listener_test.go b/node/pkg/api/tests/listener_test.go index f3c9bd732..23a395a2c 100644 --- a/node/pkg/api/tests/listener_test.go +++ b/node/pkg/api/tests/listener_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/listener" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/listener" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/proxy_test.go b/node/pkg/api/tests/proxy_test.go index a77f7f9c4..32e0ce9ae 100644 --- a/node/pkg/api/tests/proxy_test.go +++ b/node/pkg/api/tests/proxy_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/proxy" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/proxy" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/reporter_test.go b/node/pkg/api/tests/reporter_test.go index ec40c1d3d..513de1195 100644 --- a/node/pkg/api/tests/reporter_test.go +++ b/node/pkg/api/tests/reporter_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/reporter" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/reporter" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/service_test.go b/node/pkg/api/tests/service_test.go index e7f4231fc..29bbabd51 100644 --- a/node/pkg/api/tests/service_test.go +++ b/node/pkg/api/tests/service_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/service" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/service" + "bisonai.com/miko/node/pkg/api/utils" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/tests/vrf_test.go b/node/pkg/api/tests/vrf_test.go index 3c4f3c24c..3a6d4be8c 100644 --- a/node/pkg/api/tests/vrf_test.go +++ b/node/pkg/api/tests/vrf_test.go @@ -4,9 +4,9 @@ import ( "fmt" "testing" - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/utils" - "bisonai.com/orakl/node/pkg/api/vrf" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/vrf" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/node/pkg/api/utils/utils.go b/node/pkg/api/utils/utils.go index dc3a24cd1..f571dc369 100644 --- a/node/pkg/api/utils/utils.go +++ b/node/pkg/api/utils/utils.go @@ -13,7 +13,7 @@ import ( "strconv" "strings" - "bisonai.com/orakl/node/pkg/api/secrets" + "bisonai.com/miko/node/pkg/api/secrets" "golang.org/x/crypto/scrypt" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/api/vrf/controller.go b/node/pkg/api/vrf/controller.go index 57e612d95..280a692ab 100644 --- a/node/pkg/api/vrf/controller.go +++ b/node/pkg/api/vrf/controller.go @@ -1,8 +1,8 @@ package vrf import ( - "bisonai.com/orakl/node/pkg/api/chain" - "bisonai.com/orakl/node/pkg/api/utils" + "bisonai.com/miko/node/pkg/api/chain" + "bisonai.com/miko/node/pkg/api/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/boot/boot.go b/node/pkg/boot/boot.go index 46b930379..bf20d589f 100644 --- a/node/pkg/boot/boot.go +++ b/node/pkg/boot/boot.go @@ -7,12 +7,12 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/boot/peer" - "bisonai.com/orakl/node/pkg/boot/utils" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" - libp2pUtils "bisonai.com/orakl/node/pkg/libp2p/utils" + "bisonai.com/miko/node/pkg/boot/peer" + "bisonai.com/miko/node/pkg/boot/utils" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" + libp2pUtils "bisonai.com/miko/node/pkg/libp2p/utils" "github.com/gofiber/fiber/v2" "github.com/libp2p/go-libp2p/core/host" "github.com/rs/zerolog/log" diff --git a/node/pkg/boot/peer/controller.go b/node/pkg/boot/peer/controller.go index 0c4844076..419e84b18 100644 --- a/node/pkg/boot/peer/controller.go +++ b/node/pkg/boot/peer/controller.go @@ -1,8 +1,8 @@ package peer import ( - "bisonai.com/orakl/node/pkg/db" - libp2pUtils "bisonai.com/orakl/node/pkg/libp2p/utils" + "bisonai.com/miko/node/pkg/db" + libp2pUtils "bisonai.com/miko/node/pkg/libp2p/utils" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" "github.com/libp2p/go-libp2p/core/host" diff --git a/node/pkg/boot/tests/main_test.go b/node/pkg/boot/tests/main_test.go index c2ae6e0fb..70083bf14 100644 --- a/node/pkg/boot/tests/main_test.go +++ b/node/pkg/boot/tests/main_test.go @@ -5,10 +5,10 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/boot/peer" - "bisonai.com/orakl/node/pkg/boot/utils" - "bisonai.com/orakl/node/pkg/db" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/boot/peer" + "bisonai.com/miko/node/pkg/boot/utils" + "bisonai.com/miko/node/pkg/db" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/gofiber/fiber/v2" "github.com/libp2p/go-libp2p/core/host" ) diff --git a/node/pkg/boot/tests/peer_test.go b/node/pkg/boot/tests/peer_test.go index 4a4ef7e84..222503c0c 100644 --- a/node/pkg/boot/tests/peer_test.go +++ b/node/pkg/boot/tests/peer_test.go @@ -5,12 +5,12 @@ import ( "context" "testing" - adminTests "bisonai.com/orakl/node/pkg/admin/tests" - "bisonai.com/orakl/node/pkg/boot" - "bisonai.com/orakl/node/pkg/boot/peer" - "bisonai.com/orakl/node/pkg/db" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" - libp2pUtils "bisonai.com/orakl/node/pkg/libp2p/utils" + adminTests "bisonai.com/miko/node/pkg/admin/tests" + "bisonai.com/miko/node/pkg/boot" + "bisonai.com/miko/node/pkg/boot/peer" + "bisonai.com/miko/node/pkg/db" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" + libp2pUtils "bisonai.com/miko/node/pkg/libp2p/utils" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/boot/utils/utils.go b/node/pkg/boot/utils/utils.go index 16fefc4bb..1fddbbd4d 100644 --- a/node/pkg/boot/utils/utils.go +++ b/node/pkg/boot/utils/utils.go @@ -8,8 +8,8 @@ import ( "runtime/debug" "strings" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/cors" "github.com/gofiber/fiber/v2/middleware/recover" diff --git a/node/pkg/bus/bus.go b/node/pkg/bus/bus.go index 2ec2909e8..e1399e53f 100644 --- a/node/pkg/bus/bus.go +++ b/node/pkg/bus/bus.go @@ -3,7 +3,7 @@ package bus import ( "strconv" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/chain/helper/helper.go b/node/pkg/chain/helper/helper.go index b91a14a67..b3dc80110 100644 --- a/node/pkg/chain/helper/helper.go +++ b/node/pkg/chain/helper/helper.go @@ -8,11 +8,11 @@ import ( "os" "strings" - "bisonai.com/orakl/node/pkg/chain/noncemanager" - "bisonai.com/orakl/node/pkg/chain/utils" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/chain/noncemanager" + "bisonai.com/miko/node/pkg/chain/utils" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/request" "github.com/klaytn/klaytn/blockchain/types" "github.com/klaytn/klaytn/common" "github.com/klaytn/klaytn/crypto" diff --git a/node/pkg/chain/helper/signer.go b/node/pkg/chain/helper/signer.go index 839318cf5..803028568 100644 --- a/node/pkg/chain/helper/signer.go +++ b/node/pkg/chain/helper/signer.go @@ -8,9 +8,9 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/chain/utils" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/chain/utils" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" "github.com/klaytn/klaytn/common" "github.com/klaytn/klaytn/crypto" "github.com/rs/zerolog/log" diff --git a/node/pkg/chain/helper/types.go b/node/pkg/chain/helper/types.go index 662dd8aff..c64f7e88e 100644 --- a/node/pkg/chain/helper/types.go +++ b/node/pkg/chain/helper/types.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/chain/eth_client" - "bisonai.com/orakl/node/pkg/chain/utils" + "bisonai.com/miko/node/pkg/chain/eth_client" + "bisonai.com/miko/node/pkg/chain/utils" "github.com/klaytn/klaytn/client" ) diff --git a/node/pkg/chain/tests/cachedabi_test.go b/node/pkg/chain/tests/cachedabi_test.go index a8d1b2250..51615c5cc 100644 --- a/node/pkg/chain/tests/cachedabi_test.go +++ b/node/pkg/chain/tests/cachedabi_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "bisonai.com/orakl/node/pkg/chain/utils" - errorsentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/chain/utils" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/klaytn/klaytn/accounts/abi" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/chain/tests/chain_test.go b/node/pkg/chain/tests/chain_test.go index dd2c48c36..ac32251c5 100644 --- a/node/pkg/chain/tests/chain_test.go +++ b/node/pkg/chain/tests/chain_test.go @@ -12,11 +12,11 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/chain/noncemanager" - "bisonai.com/orakl/node/pkg/chain/utils" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/chain/noncemanager" + "bisonai.com/miko/node/pkg/chain/utils" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/klaytn/klaytn/blockchain/types" "github.com/klaytn/klaytn/common" "github.com/klaytn/klaytn/crypto" diff --git a/node/pkg/chain/tests/noncemanager_test.go b/node/pkg/chain/tests/noncemanager_test.go index ca2341264..8d24f448f 100644 --- a/node/pkg/chain/tests/noncemanager_test.go +++ b/node/pkg/chain/tests/noncemanager_test.go @@ -5,7 +5,7 @@ import ( "sync" "testing" - "bisonai.com/orakl/node/pkg/chain/noncemanager" + "bisonai.com/miko/node/pkg/chain/noncemanager" ) func TestNonceManager(t *testing.T) { diff --git a/node/pkg/chain/utils/abicached.go b/node/pkg/chain/utils/abicached.go index 0c72c163f..b396468a4 100644 --- a/node/pkg/chain/utils/abicached.go +++ b/node/pkg/chain/utils/abicached.go @@ -3,7 +3,7 @@ package utils import ( "sync" - errorsentinel "bisonai.com/orakl/node/pkg/error" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/klaytn/klaytn/accounts/abi" ) diff --git a/node/pkg/chain/utils/utils.go b/node/pkg/chain/utils/utils.go index 1c1c59bda..00971dc2e 100644 --- a/node/pkg/chain/utils/utils.go +++ b/node/pkg/chain/utils/utils.go @@ -11,9 +11,9 @@ import ( "regexp" "strings" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/encryptor" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/encryptor" "github.com/klaytn/klaytn" "github.com/klaytn/klaytn/accounts/abi" diff --git a/node/pkg/chain/websocketchainreader/type.go b/node/pkg/chain/websocketchainreader/type.go index dc79d8555..74fcf4b7f 100644 --- a/node/pkg/chain/websocketchainreader/type.go +++ b/node/pkg/chain/websocketchainreader/type.go @@ -4,7 +4,7 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/chain/utils" + "bisonai.com/miko/node/pkg/chain/utils" "github.com/klaytn/klaytn/blockchain/types" ) diff --git a/node/pkg/chain/websocketchainreader/websocketreader.go b/node/pkg/chain/websocketchainreader/websocketreader.go index db8aafb94..8091d10f5 100644 --- a/node/pkg/chain/websocketchainreader/websocketreader.go +++ b/node/pkg/chain/websocketchainreader/websocketreader.go @@ -5,9 +5,9 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/chain/eth_client" - "bisonai.com/orakl/node/pkg/chain/utils" - errorSentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/chain/eth_client" + "bisonai.com/miko/node/pkg/chain/utils" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/klaytn/klaytn" "github.com/klaytn/klaytn/blockchain/types" "github.com/klaytn/klaytn/client" diff --git a/node/pkg/checker/balance/app.go b/node/pkg/checker/balance/app.go index d9596278e..fd8b6ae0d 100644 --- a/node/pkg/checker/balance/app.go +++ b/node/pkg/checker/balance/app.go @@ -16,8 +16,8 @@ import ( "github.com/klaytn/klaytn/common" "github.com/rs/zerolog/log" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/utils/request" ) func init() { diff --git a/node/pkg/checker/dal/app.go b/node/pkg/checker/dal/app.go index 78c9a9216..bfbbcd520 100644 --- a/node/pkg/checker/dal/app.go +++ b/node/pkg/checker/dal/app.go @@ -10,11 +10,11 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/wss" "github.com/jackc/pgx/v5/pgxpool" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/checker/dalstats/app.go b/node/pkg/checker/dalstats/app.go index be06f0d42..3f0c34166 100644 --- a/node/pkg/checker/dalstats/app.go +++ b/node/pkg/checker/dalstats/app.go @@ -5,9 +5,9 @@ import ( "errors" "fmt" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/secrets" "github.com/jackc/pgx/v5/pgxpool" "github.com/robfig/cron/v3" "github.com/rs/zerolog/log" diff --git a/node/pkg/checker/dbcronjob/app.go b/node/pkg/checker/dbcronjob/app.go index e343b5f97..dd053dbf5 100644 --- a/node/pkg/checker/dbcronjob/app.go +++ b/node/pkg/checker/dbcronjob/app.go @@ -6,9 +6,9 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/secrets" "github.com/jackc/pgx/v5/pgxpool" "github.com/rs/zerolog/log" diff --git a/node/pkg/checker/event/app.go b/node/pkg/checker/event/app.go index 3c6073fe9..abde0de1b 100644 --- a/node/pkg/checker/event/app.go +++ b/node/pkg/checker/event/app.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/checker/health/app.go b/node/pkg/checker/health/app.go index b0d4a3811..a27db7f1f 100644 --- a/node/pkg/checker/health/app.go +++ b/node/pkg/checker/health/app.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/secrets" "github.com/jackc/pgx/v5/pgxpool" "github.com/redis/go-redis/v9" "github.com/rs/zerolog/log" diff --git a/node/pkg/checker/inspect/app.go b/node/pkg/checker/inspect/app.go index db792f16f..652811992 100644 --- a/node/pkg/checker/inspect/app.go +++ b/node/pkg/checker/inspect/app.go @@ -9,9 +9,9 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/secrets" klaytncommon "github.com/klaytn/klaytn/common" "github.com/robfig/cron/v3" diff --git a/node/pkg/checker/offset/app.go b/node/pkg/checker/offset/app.go index 3772d1c39..629a98538 100644 --- a/node/pkg/checker/offset/app.go +++ b/node/pkg/checker/offset/app.go @@ -9,9 +9,9 @@ import ( "fmt" "math" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/secrets" "time" diff --git a/node/pkg/checker/peers/app.go b/node/pkg/checker/peers/app.go index efc0bf4ad..b1fe6c2cc 100644 --- a/node/pkg/checker/peers/app.go +++ b/node/pkg/checker/peers/app.go @@ -6,8 +6,8 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/alert" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/alert" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/checker/signer/app.go b/node/pkg/checker/signer/app.go index 9eccd964b..194a86efd 100644 --- a/node/pkg/checker/signer/app.go +++ b/node/pkg/checker/signer/app.go @@ -7,7 +7,7 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/alert" + "bisonai.com/miko/node/pkg/alert" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/dal/apiv2/controller.go b/node/pkg/dal/apiv2/controller.go index b011ccf2f..705c692c5 100644 --- a/node/pkg/dal/apiv2/controller.go +++ b/node/pkg/dal/apiv2/controller.go @@ -8,12 +8,12 @@ import ( "net/http" "strings" - "bisonai.com/orakl/node/pkg/dal/collector" - dalcommon "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/dal/hub" - "bisonai.com/orakl/node/pkg/dal/utils/keycache" - "bisonai.com/orakl/node/pkg/dal/utils/stats" - errorsentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/dal/collector" + dalcommon "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/dal/hub" + "bisonai.com/miko/node/pkg/dal/utils/keycache" + "bisonai.com/miko/node/pkg/dal/utils/stats" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/rs/zerolog/log" "nhooyr.io/websocket" "nhooyr.io/websocket/wsjson" diff --git a/node/pkg/dal/apiv2/types.go b/node/pkg/dal/apiv2/types.go index 2d2ced35f..7c6515bb3 100644 --- a/node/pkg/dal/apiv2/types.go +++ b/node/pkg/dal/apiv2/types.go @@ -3,10 +3,10 @@ package apiv2 import ( "net/http" - "bisonai.com/orakl/node/pkg/dal/collector" - "bisonai.com/orakl/node/pkg/dal/hub" - "bisonai.com/orakl/node/pkg/dal/utils/keycache" - "bisonai.com/orakl/node/pkg/dal/utils/stats" + "bisonai.com/miko/node/pkg/dal/collector" + "bisonai.com/miko/node/pkg/dal/hub" + "bisonai.com/miko/node/pkg/dal/utils/keycache" + "bisonai.com/miko/node/pkg/dal/utils/stats" ) type BulkResponse struct { diff --git a/node/pkg/dal/app.go b/node/pkg/dal/app.go index 7d18eeb04..4e21ef9ae 100644 --- a/node/pkg/dal/app.go +++ b/node/pkg/dal/app.go @@ -6,13 +6,13 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/dal/apiv2" - "bisonai.com/orakl/node/pkg/dal/collector" - "bisonai.com/orakl/node/pkg/dal/hub" - "bisonai.com/orakl/node/pkg/dal/utils/keycache" - "bisonai.com/orakl/node/pkg/dal/utils/stats" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/dal/apiv2" + "bisonai.com/miko/node/pkg/dal/collector" + "bisonai.com/miko/node/pkg/dal/hub" + "bisonai.com/miko/node/pkg/dal/utils/keycache" + "bisonai.com/miko/node/pkg/dal/utils/stats" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/dal/collector/collector.go b/node/pkg/dal/collector/collector.go index 544b6afff..2a980e988 100644 --- a/node/pkg/dal/collector/collector.go +++ b/node/pkg/dal/collector/collector.go @@ -9,13 +9,13 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/aggregator" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" - "bisonai.com/orakl/node/pkg/common/keys" - "bisonai.com/orakl/node/pkg/common/types" - dalcommon "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/db" - errorsentinel "bisonai.com/orakl/node/pkg/error" + "bisonai.com/miko/node/pkg/aggregator" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/common/keys" + "bisonai.com/miko/node/pkg/common/types" + dalcommon "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/db" + errorsentinel "bisonai.com/miko/node/pkg/error" klaytncommon "github.com/klaytn/klaytn/common" "github.com/klaytn/klaytn/crypto" "github.com/redis/go-redis/v9" diff --git a/node/pkg/dal/collector/utils.go b/node/pkg/dal/collector/utils.go index 91836f4ed..fe39af5a1 100644 --- a/node/pkg/dal/collector/utils.go +++ b/node/pkg/dal/collector/utils.go @@ -6,10 +6,10 @@ import ( "errors" "time" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" - chainutils "bisonai.com/orakl/node/pkg/chain/utils" - errorsentinel "bisonai.com/orakl/node/pkg/error" + chainutils "bisonai.com/miko/node/pkg/chain/utils" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/klaytn/klaytn/blockchain/types" klaytncommon "github.com/klaytn/klaytn/common" "github.com/rs/zerolog/log" diff --git a/node/pkg/dal/hub/hub.go b/node/pkg/dal/hub/hub.go index 62cceb8e7..9969df85d 100644 --- a/node/pkg/dal/hub/hub.go +++ b/node/pkg/dal/hub/hub.go @@ -6,10 +6,10 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/dal/collector" - dalcommon "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/dal/utils/stats" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/dal/collector" + dalcommon "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/dal/utils/stats" "github.com/rs/zerolog/log" "nhooyr.io/websocket" "nhooyr.io/websocket/wsjson" diff --git a/node/pkg/dal/tests/api_test.go b/node/pkg/dal/tests/api_test.go index 24476ee83..8357952f0 100644 --- a/node/pkg/dal/tests/api_test.go +++ b/node/pkg/dal/tests/api_test.go @@ -7,12 +7,12 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/dal/apiv2" - "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/dal/hub" - "bisonai.com/orakl/node/pkg/utils/request" - wsfcommon "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/dal/apiv2" + "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/dal/hub" + "bisonai.com/miko/node/pkg/utils/request" + wsfcommon "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/dal/tests/collector_test.go b/node/pkg/dal/tests/collector_test.go index 2e445fb2e..1aab2aa3b 100644 --- a/node/pkg/dal/tests/collector_test.go +++ b/node/pkg/dal/tests/collector_test.go @@ -6,10 +6,10 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/dal/hub" - wsfcommon "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/dal/hub" + wsfcommon "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/dal/tests/keycache_test.go b/node/pkg/dal/tests/keycache_test.go index e783cd192..c91af200c 100644 --- a/node/pkg/dal/tests/keycache_test.go +++ b/node/pkg/dal/tests/keycache_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/dal/utils/keycache" + "bisonai.com/miko/node/pkg/dal/utils/keycache" ) func TestKeyCache_SetAndGet(t *testing.T) { diff --git a/node/pkg/dal/tests/main_test.go b/node/pkg/dal/tests/main_test.go index b748a891e..053b2c377 100644 --- a/node/pkg/dal/tests/main_test.go +++ b/node/pkg/dal/tests/main_test.go @@ -9,16 +9,16 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/aggregator" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/common/keys" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/dal/apiv2" - "bisonai.com/orakl/node/pkg/dal/collector" - "bisonai.com/orakl/node/pkg/dal/hub" - "bisonai.com/orakl/node/pkg/dal/utils/keycache" - "bisonai.com/orakl/node/pkg/dal/utils/stats" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/aggregator" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/common/keys" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/dal/apiv2" + "bisonai.com/miko/node/pkg/dal/collector" + "bisonai.com/miko/node/pkg/dal/hub" + "bisonai.com/miko/node/pkg/dal/utils/keycache" + "bisonai.com/miko/node/pkg/dal/utils/stats" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/dal/tests/stats_test.go b/node/pkg/dal/tests/stats_test.go index 34dfa2a78..b7c216f61 100644 --- a/node/pkg/dal/tests/stats_test.go +++ b/node/pkg/dal/tests/stats_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/dal/utils/stats" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/dal/utils/stats" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/dal/utils/keycache/keycache.go b/node/pkg/dal/utils/keycache/keycache.go index e3648996f..f1aa5e954 100644 --- a/node/pkg/dal/utils/keycache/keycache.go +++ b/node/pkg/dal/utils/keycache/keycache.go @@ -5,7 +5,7 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/dal/utils/stats/stats.go b/node/pkg/dal/utils/stats/stats.go index 413a6cf11..bf0ed9549 100644 --- a/node/pkg/dal/utils/stats/stats.go +++ b/node/pkg/dal/utils/stats/stats.go @@ -9,7 +9,7 @@ import ( "net/http" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/db/pgsql.go b/node/pkg/db/pgsql.go index d27e1aa4c..4213f0290 100644 --- a/node/pkg/db/pgsql.go +++ b/node/pkg/db/pgsql.go @@ -7,8 +7,8 @@ import ( "strings" "sync" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" "github.com/jackc/pgx/v5" "github.com/jackc/pgx/v5/pgxpool" "github.com/rs/zerolog/log" diff --git a/node/pkg/db/redis.go b/node/pkg/db/redis.go index 2310a736b..9e48f84a6 100644 --- a/node/pkg/db/redis.go +++ b/node/pkg/db/redis.go @@ -9,8 +9,8 @@ import ( "sync" "time" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/retrier" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/redis/go-redis/v9" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/db/rediscribe.go b/node/pkg/db/rediscribe.go index f9c205ab4..5fa6e26f0 100644 --- a/node/pkg/db/rediscribe.go +++ b/node/pkg/db/rediscribe.go @@ -5,7 +5,7 @@ import ( "sync" "time" - errorsentinel "bisonai.com/orakl/node/pkg/error" + errorsentinel "bisonai.com/miko/node/pkg/error" "github.com/redis/go-redis/v9" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/delegator/contract/controller.go b/node/pkg/delegator/contract/controller.go index 3d24fbd7c..8b6e34b4f 100644 --- a/node/pkg/delegator/contract/controller.go +++ b/node/pkg/delegator/contract/controller.go @@ -3,7 +3,7 @@ package contract import ( "strings" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/delegator/function/controller.go b/node/pkg/delegator/function/controller.go index 4ceda1eac..d2a11b6d6 100644 --- a/node/pkg/delegator/function/controller.go +++ b/node/pkg/delegator/function/controller.go @@ -3,7 +3,7 @@ package function import ( "encoding/hex" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" "github.com/klaytn/klaytn/crypto" diff --git a/node/pkg/delegator/organization/controller.go b/node/pkg/delegator/organization/controller.go index 43ee66bd4..592764cf7 100644 --- a/node/pkg/delegator/organization/controller.go +++ b/node/pkg/delegator/organization/controller.go @@ -1,7 +1,7 @@ package organization import ( - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/go-playground/validator/v10" "github.com/gofiber/fiber/v2" ) diff --git a/node/pkg/delegator/reporter/controller.go b/node/pkg/delegator/reporter/controller.go index 730577ebe..28d6b10d0 100644 --- a/node/pkg/delegator/reporter/controller.go +++ b/node/pkg/delegator/reporter/controller.go @@ -3,7 +3,7 @@ package reporter import ( "strings" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/delegator/sign/controller.go b/node/pkg/delegator/sign/controller.go index 70c0226fa..4787cc50d 100644 --- a/node/pkg/delegator/sign/controller.go +++ b/node/pkg/delegator/sign/controller.go @@ -11,7 +11,7 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/go-playground/validator" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/delegator/tests/contract_test.go b/node/pkg/delegator/tests/contract_test.go index 4f039b29a..b81df0482 100644 --- a/node/pkg/delegator/tests/contract_test.go +++ b/node/pkg/delegator/tests/contract_test.go @@ -4,8 +4,8 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/delegator/contract" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/contract" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/delegator/tests/function_test.go b/node/pkg/delegator/tests/function_test.go index 0111e42a2..942ed7324 100644 --- a/node/pkg/delegator/tests/function_test.go +++ b/node/pkg/delegator/tests/function_test.go @@ -4,8 +4,8 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/delegator/function" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/function" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/delegator/tests/globals_test.go b/node/pkg/delegator/tests/globals_test.go index 1f6e2a149..d00b24e47 100644 --- a/node/pkg/delegator/tests/globals_test.go +++ b/node/pkg/delegator/tests/globals_test.go @@ -10,12 +10,12 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/delegator/contract" - "bisonai.com/orakl/node/pkg/delegator/function" - "bisonai.com/orakl/node/pkg/delegator/organization" - "bisonai.com/orakl/node/pkg/delegator/reporter" - "bisonai.com/orakl/node/pkg/delegator/sign" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/contract" + "bisonai.com/miko/node/pkg/delegator/function" + "bisonai.com/miko/node/pkg/delegator/organization" + "bisonai.com/miko/node/pkg/delegator/reporter" + "bisonai.com/miko/node/pkg/delegator/sign" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/joho/godotenv" "github.com/klaytn/klaytn/blockchain/types" diff --git a/node/pkg/delegator/tests/main_test.go b/node/pkg/delegator/tests/main_test.go index b0450b750..54563eaef 100644 --- a/node/pkg/delegator/tests/main_test.go +++ b/node/pkg/delegator/tests/main_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/joho/godotenv" ) diff --git a/node/pkg/delegator/tests/organization_test.go b/node/pkg/delegator/tests/organization_test.go index edf47a7c5..8c7a46fbb 100644 --- a/node/pkg/delegator/tests/organization_test.go +++ b/node/pkg/delegator/tests/organization_test.go @@ -4,8 +4,8 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/delegator/organization" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/organization" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/delegator/tests/reporter_test.go b/node/pkg/delegator/tests/reporter_test.go index 48fada3aa..848729e42 100644 --- a/node/pkg/delegator/tests/reporter_test.go +++ b/node/pkg/delegator/tests/reporter_test.go @@ -4,8 +4,8 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/delegator/reporter" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/reporter" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/delegator/tests/sign_test.go b/node/pkg/delegator/tests/sign_test.go index 05266ce2e..2da149179 100644 --- a/node/pkg/delegator/tests/sign_test.go +++ b/node/pkg/delegator/tests/sign_test.go @@ -10,8 +10,8 @@ import ( "strconv" "testing" - "bisonai.com/orakl/node/pkg/delegator/sign" - "bisonai.com/orakl/node/pkg/delegator/utils" + "bisonai.com/miko/node/pkg/delegator/sign" + "bisonai.com/miko/node/pkg/delegator/utils" "github.com/gofiber/fiber/v2" "github.com/klaytn/klaytn" diff --git a/node/pkg/delegator/utils/utils.go b/node/pkg/delegator/utils/utils.go index d7e0d72e5..786d8efea 100644 --- a/node/pkg/delegator/utils/utils.go +++ b/node/pkg/delegator/utils/utils.go @@ -12,7 +12,7 @@ import ( "strings" "sync" - "bisonai.com/orakl/node/pkg/delegator/secrets" + "bisonai.com/miko/node/pkg/delegator/secrets" secretmanager "cloud.google.com/go/secretmanager/apiv1" "cloud.google.com/go/secretmanager/apiv1/secretmanagerpb" "github.com/gofiber/fiber/v2" diff --git a/node/pkg/fetcher/app.go b/node/pkg/fetcher/app.go index 162c915e1..2f8eb15f7 100644 --- a/node/pkg/fetcher/app.go +++ b/node/pkg/fetcher/app.go @@ -8,10 +8,10 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/websocketfetcher" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/websocketfetcher" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/fetcher/app_test.go b/node/pkg/fetcher/app_test.go index 3bb8f7d4a..904fb7ce5 100644 --- a/node/pkg/fetcher/app_test.go +++ b/node/pkg/fetcher/app_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/fetcher/fetcher.go b/node/pkg/fetcher/fetcher.go index e07f48ba8..149cd0568 100644 --- a/node/pkg/fetcher/fetcher.go +++ b/node/pkg/fetcher/fetcher.go @@ -8,9 +8,9 @@ import ( "math/rand" "time" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/reducer" - "bisonai.com/orakl/node/pkg/utils/request" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/reducer" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/fetcher/fetcher_test.go b/node/pkg/fetcher/fetcher_test.go index b849c3a35..a282a31ec 100644 --- a/node/pkg/fetcher/fetcher_test.go +++ b/node/pkg/fetcher/fetcher_test.go @@ -9,7 +9,7 @@ import ( "net/http" - "bisonai.com/orakl/node/pkg/admin/tests" + "bisonai.com/miko/node/pkg/admin/tests" "github.com/elazarl/goproxy" "github.com/rs/zerolog/log" "github.com/stretchr/testify/assert" diff --git a/node/pkg/fetcher/localaggregatebulkwriter.go b/node/pkg/fetcher/localaggregatebulkwriter.go index 5a6b90a65..e03b25111 100644 --- a/node/pkg/fetcher/localaggregatebulkwriter.go +++ b/node/pkg/fetcher/localaggregatebulkwriter.go @@ -4,7 +4,7 @@ import ( "context" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/fetcher/localaggregatebulkwriter_test.go b/node/pkg/fetcher/localaggregatebulkwriter_test.go index b132e90a7..222d14b90 100644 --- a/node/pkg/fetcher/localaggregatebulkwriter_test.go +++ b/node/pkg/fetcher/localaggregatebulkwriter_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/fetcher/localaggregator.go b/node/pkg/fetcher/localaggregator.go index 6bf649e6f..61961685b 100644 --- a/node/pkg/fetcher/localaggregator.go +++ b/node/pkg/fetcher/localaggregator.go @@ -8,7 +8,7 @@ import ( "slices" "time" - "bisonai.com/orakl/node/pkg/bus" + "bisonai.com/miko/node/pkg/bus" "github.com/montanaflynn/stats" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/fetcher/main_test.go b/node/pkg/fetcher/main_test.go index a216e2827..2eb89fb06 100644 --- a/node/pkg/fetcher/main_test.go +++ b/node/pkg/fetcher/main_test.go @@ -9,14 +9,14 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/admin/config" - "bisonai.com/orakl/node/pkg/admin/feed" - "bisonai.com/orakl/node/pkg/admin/fetcher" - "bisonai.com/orakl/node/pkg/admin/proxy" - "bisonai.com/orakl/node/pkg/admin/tests" - "bisonai.com/orakl/node/pkg/admin/utils" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/admin/config" + "bisonai.com/miko/node/pkg/admin/feed" + "bisonai.com/miko/node/pkg/admin/fetcher" + "bisonai.com/miko/node/pkg/admin/proxy" + "bisonai.com/miko/node/pkg/admin/tests" + "bisonai.com/miko/node/pkg/admin/utils" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/db" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog" ) diff --git a/node/pkg/fetcher/types.go b/node/pkg/fetcher/types.go index 53cc1d5a3..09c3f1f18 100644 --- a/node/pkg/fetcher/types.go +++ b/node/pkg/fetcher/types.go @@ -5,10 +5,10 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/utils/reducer" - "bisonai.com/orakl/node/pkg/websocketfetcher" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/utils/reducer" + "bisonai.com/miko/node/pkg/websocketfetcher" ) const ( diff --git a/node/pkg/fetcher/utils.go b/node/pkg/fetcher/utils.go index 3405917f6..9ece1d8bd 100644 --- a/node/pkg/fetcher/utils.go +++ b/node/pkg/fetcher/utils.go @@ -4,11 +4,11 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/calculator" - "bisonai.com/orakl/node/pkg/utils/reducer" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/calculator" + "bisonai.com/miko/node/pkg/utils/reducer" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/fetcher/utils_test.go b/node/pkg/fetcher/utils_test.go index e650af263..25ec7dcb3 100644 --- a/node/pkg/fetcher/utils_test.go +++ b/node/pkg/fetcher/utils_test.go @@ -10,7 +10,7 @@ import ( "net/http" "net/http/httptest" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/libp2p/helper/app.go b/node/pkg/libp2p/helper/app.go index bde1f2c91..72dc925c2 100644 --- a/node/pkg/libp2p/helper/app.go +++ b/node/pkg/libp2p/helper/app.go @@ -5,9 +5,9 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/bus" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/bus" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/libp2p/go-libp2p/core/event" "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/network" diff --git a/node/pkg/libp2p/setup/setup.go b/node/pkg/libp2p/setup/setup.go index f35941af5..9076fc5d1 100644 --- a/node/pkg/libp2p/setup/setup.go +++ b/node/pkg/libp2p/setup/setup.go @@ -5,9 +5,9 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/libp2p/utils" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/libp2p/utils" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/libp2p/go-libp2p/core/host" "github.com/rs/zerolog/log" diff --git a/node/pkg/libp2p/setup/type.go b/node/pkg/libp2p/setup/type.go index 23061ea09..c13dc1481 100644 --- a/node/pkg/libp2p/setup/type.go +++ b/node/pkg/libp2p/setup/type.go @@ -7,7 +7,7 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/secrets" "github.com/libp2p/go-libp2p" pubsub "github.com/libp2p/go-libp2p-pubsub" diff --git a/node/pkg/libp2p/tests/helper_test.go b/node/pkg/libp2p/tests/helper_test.go index ed2c90240..746dba055 100644 --- a/node/pkg/libp2p/tests/helper_test.go +++ b/node/pkg/libp2p/tests/helper_test.go @@ -5,9 +5,9 @@ import ( "context" "testing" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/libp2p/helper" - "bisonai.com/orakl/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/libp2p/helper" + "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/libp2p/go-libp2p/core/peer" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/libp2p/tests/libp2p_test.go b/node/pkg/libp2p/tests/libp2p_test.go index 0a2786431..34407ad40 100644 --- a/node/pkg/libp2p/tests/libp2p_test.go +++ b/node/pkg/libp2p/tests/libp2p_test.go @@ -5,8 +5,8 @@ import ( "context" "testing" - "bisonai.com/orakl/node/pkg/libp2p/setup" - "bisonai.com/orakl/node/pkg/libp2p/utils" + "bisonai.com/miko/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/libp2p/utils" ) func TestMakeHost(t *testing.T) { diff --git a/node/pkg/libp2p/utils/utils.go b/node/pkg/libp2p/utils/utils.go index 2dd77f3dd..4b4d92861 100644 --- a/node/pkg/libp2p/utils/utils.go +++ b/node/pkg/libp2p/utils/utils.go @@ -7,8 +7,8 @@ import ( "strings" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/retrier" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/peer" diff --git a/node/pkg/logscribe/api/controller.go b/node/pkg/logscribe/api/controller.go index e6738b844..146f87ca9 100644 --- a/node/pkg/logscribe/api/controller.go +++ b/node/pkg/logscribe/api/controller.go @@ -1,8 +1,8 @@ package api import ( - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/logscribe/app.go b/node/pkg/logscribe/app.go index 4a45106ab..d9c8e5ca2 100644 --- a/node/pkg/logscribe/app.go +++ b/node/pkg/logscribe/app.go @@ -4,8 +4,8 @@ import ( "context" "os" - "bisonai.com/orakl/node/pkg/logscribe/api" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/logscribe/api" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/logscribe/logprocessor/logprocessor.go b/node/pkg/logscribe/logprocessor/logprocessor.go index 884888d0e..e2b4fab60 100644 --- a/node/pkg/logscribe/logprocessor/logprocessor.go +++ b/node/pkg/logscribe/logprocessor/logprocessor.go @@ -14,10 +14,10 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/db" - errorsentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/db" + errorsentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/google/go-github/github" "github.com/robfig/cron/v3" "github.com/rs/zerolog/log" diff --git a/node/pkg/logscribe/tests/app_test.go b/node/pkg/logscribe/tests/app_test.go index 1a89936d8..30df0e613 100644 --- a/node/pkg/logscribe/tests/app_test.go +++ b/node/pkg/logscribe/tests/app_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/logscribe" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/logscribe" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/utils/request" "github.com/robfig/cron/v3" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/logscribe/tests/controller_test.go b/node/pkg/logscribe/tests/controller_test.go index 5ffd17028..83bbee771 100644 --- a/node/pkg/logscribe/tests/controller_test.go +++ b/node/pkg/logscribe/tests/controller_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/logscribe" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/logscribe" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/utils/request" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/logscribe/tests/main_test.go b/node/pkg/logscribe/tests/main_test.go index 79692953c..9a0950a43 100644 --- a/node/pkg/logscribe/tests/main_test.go +++ b/node/pkg/logscribe/tests/main_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/logscribe/api" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/logscribe/api" "github.com/rs/zerolog" ) diff --git a/node/pkg/logscribe/utils.go b/node/pkg/logscribe/utils.go index 5f09254cc..3677c338d 100644 --- a/node/pkg/logscribe/utils.go +++ b/node/pkg/logscribe/utils.go @@ -8,9 +8,9 @@ import ( "runtime/debug" "strings" - "bisonai.com/orakl/node/pkg/db" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/db" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/cors" diff --git a/node/pkg/logscribeconsumer/app.go b/node/pkg/logscribeconsumer/app.go index 86c17047e..bb252a853 100644 --- a/node/pkg/logscribeconsumer/app.go +++ b/node/pkg/logscribeconsumer/app.go @@ -8,8 +8,8 @@ import ( "strconv" "time" - errorsentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/utils/request" + errorsentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/logscribeconsumer/app_test.go b/node/pkg/logscribeconsumer/app_test.go index a9d088bb7..4200a8baf 100644 --- a/node/pkg/logscribeconsumer/app_test.go +++ b/node/pkg/logscribeconsumer/app_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" + "bisonai.com/miko/node/pkg/db" "github.com/rs/zerolog" "github.com/rs/zerolog/log" "github.com/stretchr/testify/assert" diff --git a/node/pkg/logscribeconsumer/main_test.go b/node/pkg/logscribeconsumer/main_test.go index 28a8754ed..d4a426867 100644 --- a/node/pkg/logscribeconsumer/main_test.go +++ b/node/pkg/logscribeconsumer/main_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/logscribe" - "bisonai.com/orakl/node/pkg/logscribe/api" - "bisonai.com/orakl/node/pkg/logscribe/logprocessor" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/logscribe" + "bisonai.com/miko/node/pkg/logscribe/api" + "bisonai.com/miko/node/pkg/logscribe/logprocessor" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/logscribeconsumer/types.go b/node/pkg/logscribeconsumer/types.go index 2c8a46f62..7ddd09196 100644 --- a/node/pkg/logscribeconsumer/types.go +++ b/node/pkg/logscribeconsumer/types.go @@ -3,7 +3,7 @@ package logscribeconsumer import ( "time" - "bisonai.com/orakl/node/pkg/logscribe/api" + "bisonai.com/miko/node/pkg/logscribe/api" "github.com/rs/zerolog" ) diff --git a/node/pkg/por/app.go b/node/pkg/por/app.go index a7dc32dff..4378b5812 100644 --- a/node/pkg/por/app.go +++ b/node/pkg/por/app.go @@ -9,13 +9,13 @@ import ( "os" "time" - "bisonai.com/orakl/node/pkg/chain/helper" - chainUtils "bisonai.com/orakl/node/pkg/chain/utils" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/fetcher" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/chain/helper" + chainUtils "bisonai.com/miko/node/pkg/chain/utils" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/fetcher" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/por/types.go b/node/pkg/por/types.go index dc72f92e4..ba2616925 100644 --- a/node/pkg/por/types.go +++ b/node/pkg/por/types.go @@ -5,8 +5,8 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/fetcher" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/fetcher" ) const ( diff --git a/node/pkg/raft/raft.go b/node/pkg/raft/raft.go index 5bb44acf8..6b6102f4c 100644 --- a/node/pkg/raft/raft.go +++ b/node/pkg/raft/raft.go @@ -9,7 +9,7 @@ import ( "github.com/rs/zerolog/log" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" pubsub "github.com/libp2p/go-libp2p-pubsub" "github.com/libp2p/go-libp2p/core/host" ) diff --git a/node/pkg/raft/raft_test.go b/node/pkg/raft/raft_test.go index 158d9f369..788d4439e 100644 --- a/node/pkg/raft/raft_test.go +++ b/node/pkg/raft/raft_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - libp2psetup "bisonai.com/orakl/node/pkg/libp2p/setup" + libp2psetup "bisonai.com/miko/node/pkg/libp2p/setup" pubsub "github.com/libp2p/go-libp2p-pubsub" "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/peer" diff --git a/node/pkg/reporter/app.go b/node/pkg/reporter/app.go index f1855b7e6..71a59e0a8 100644 --- a/node/pkg/reporter/app.go +++ b/node/pkg/reporter/app.go @@ -6,10 +6,10 @@ import ( "os" "sync" - "bisonai.com/orakl/node/pkg/chain/helper" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/chain/helper" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/request" "github.com/klaytn/klaytn/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/reporter/reporter.go b/node/pkg/reporter/reporter.go index 7a83c0ea9..b6db17039 100644 --- a/node/pkg/reporter/reporter.go +++ b/node/pkg/reporter/reporter.go @@ -7,7 +7,7 @@ import ( "sync" "time" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/reporter/reporter_test.go b/node/pkg/reporter/reporter_test.go index f43620e7d..8412e6fa3 100644 --- a/node/pkg/reporter/reporter_test.go +++ b/node/pkg/reporter/reporter_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/chain/helper" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/reporter/types.go b/node/pkg/reporter/types.go index 2f28b66d8..bfc390ae4 100644 --- a/node/pkg/reporter/types.go +++ b/node/pkg/reporter/types.go @@ -4,9 +4,9 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/wss" "github.com/klaytn/klaytn/common" ) diff --git a/node/pkg/reporter/utils.go b/node/pkg/reporter/utils.go index 62059b530..ed1949eb9 100644 --- a/node/pkg/reporter/utils.go +++ b/node/pkg/reporter/utils.go @@ -10,11 +10,11 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/chain/helper" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/secrets" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/chain/helper" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/secrets" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/wss" klaytncommon "github.com/klaytn/klaytn/common" "github.com/rs/zerolog/log" diff --git a/node/pkg/utils/calculator/calculator.go b/node/pkg/utils/calculator/calculator.go index 1e5eec1ba..4b714c0bd 100644 --- a/node/pkg/utils/calculator/calculator.go +++ b/node/pkg/utils/calculator/calculator.go @@ -4,7 +4,7 @@ import ( "math/rand" "sort" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" ) func RandomNumberGenerator() int { diff --git a/node/pkg/utils/encryptor/encryptor.go b/node/pkg/utils/encryptor/encryptor.go index 84ce49b48..73efe9a15 100644 --- a/node/pkg/utils/encryptor/encryptor.go +++ b/node/pkg/utils/encryptor/encryptor.go @@ -6,7 +6,7 @@ import ( "crypto/rand" "encoding/hex" - "bisonai.com/orakl/node/pkg/secrets" + "bisonai.com/miko/node/pkg/secrets" "golang.org/x/crypto/scrypt" ) diff --git a/node/pkg/utils/reducer/reducer.go b/node/pkg/utils/reducer/reducer.go index 4f8836a29..cfa7ce00b 100644 --- a/node/pkg/utils/reducer/reducer.go +++ b/node/pkg/utils/reducer/reducer.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" ) type Reducer struct { diff --git a/node/pkg/utils/request/request.go b/node/pkg/utils/request/request.go index a6056866a..df70620e1 100644 --- a/node/pkg/utils/request/request.go +++ b/node/pkg/utils/request/request.go @@ -8,7 +8,7 @@ import ( "net/url" "time" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/utils/tests/calculator_test.go b/node/pkg/utils/tests/calculator_test.go index 643e018b8..4b1aefaf8 100644 --- a/node/pkg/utils/tests/calculator_test.go +++ b/node/pkg/utils/tests/calculator_test.go @@ -3,7 +3,7 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/utils/calculator" + "bisonai.com/miko/node/pkg/utils/calculator" ) func TestFloatAvgOddLength(t *testing.T) { diff --git a/node/pkg/utils/tests/encryptor_test.go b/node/pkg/utils/tests/encryptor_test.go index fdb62bc86..ae5b366a9 100644 --- a/node/pkg/utils/tests/encryptor_test.go +++ b/node/pkg/utils/tests/encryptor_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "bisonai.com/orakl/node/pkg/utils/encryptor" + "bisonai.com/miko/node/pkg/utils/encryptor" ) func TestEncryptDecryptText(t *testing.T) { diff --git a/node/pkg/utils/tests/pool_test.go b/node/pkg/utils/tests/pool_test.go index d04c32db5..045360cf5 100644 --- a/node/pkg/utils/tests/pool_test.go +++ b/node/pkg/utils/tests/pool_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/utils/pool" + "bisonai.com/miko/node/pkg/utils/pool" ) const POOL_WORKER_COUNT = 3 diff --git a/node/pkg/utils/tests/reducer_test.go b/node/pkg/utils/tests/reducer_test.go index a7e9f2dc6..bef7a6d28 100644 --- a/node/pkg/utils/tests/reducer_test.go +++ b/node/pkg/utils/tests/reducer_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "bisonai.com/orakl/node/pkg/utils/reducer" + "bisonai.com/miko/node/pkg/utils/reducer" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/utils/tests/request_test.go b/node/pkg/utils/tests/request_test.go index b0a0ed60f..e59a56c0b 100644 --- a/node/pkg/utils/tests/request_test.go +++ b/node/pkg/utils/tests/request_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/utils/request" ) type TestResponse struct { diff --git a/node/pkg/utils/tests/retrier_test.go b/node/pkg/utils/tests/retrier_test.go index 9e112d0b0..dbb2fbe33 100644 --- a/node/pkg/utils/tests/retrier_test.go +++ b/node/pkg/utils/tests/retrier_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/utils/retrier" ) func TestRetry_MaxAttemptsReached(t *testing.T) { diff --git a/node/pkg/utils/tests/set_test.go b/node/pkg/utils/tests/set_test.go index 6b482f408..8af7e1c39 100644 --- a/node/pkg/utils/tests/set_test.go +++ b/node/pkg/utils/tests/set_test.go @@ -3,7 +3,7 @@ package tests import ( "testing" - "bisonai.com/orakl/node/pkg/utils/set" + "bisonai.com/miko/node/pkg/utils/set" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/websocketfetcher/app.go b/node/pkg/websocketfetcher/app.go index 95a90f6b5..f2ed15819 100644 --- a/node/pkg/websocketfetcher/app.go +++ b/node/pkg/websocketfetcher/app.go @@ -7,35 +7,35 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/db" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/binance" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bingx" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bitget" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bithumb" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bitmart" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bitstamp" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/btse" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bybit" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinbase" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinex" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinone" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/crypto" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/gateio" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/gemini" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/gopax" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/huobi" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/korbit" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/kraken" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/kucoin" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/lbank" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/mexc" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/okx" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/uniswap" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/upbit" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/xt" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/db" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/binance" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bingx" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bitget" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bithumb" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bitmart" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bitstamp" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/btse" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bybit" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinbase" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinex" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinone" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/crypto" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/gateio" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/gemini" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/gopax" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/huobi" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/korbit" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/kraken" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/kucoin" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/lbank" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/mexc" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/okx" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/uniswap" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/upbit" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/xt" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/common/type.go b/node/pkg/websocketfetcher/common/type.go index abeda1aeb..9cce71e09 100644 --- a/node/pkg/websocketfetcher/common/type.go +++ b/node/pkg/websocketfetcher/common/type.go @@ -7,9 +7,9 @@ import ( "time" "unicode" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/wss" ) const ( diff --git a/node/pkg/websocketfetcher/providers/binance/binance.go b/node/pkg/websocketfetcher/providers/binance/binance.go index d98ed4ab6..8b92f9236 100644 --- a/node/pkg/websocketfetcher/providers/binance/binance.go +++ b/node/pkg/websocketfetcher/providers/binance/binance.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/binance/utils.go b/node/pkg/websocketfetcher/providers/binance/utils.go index 22ee7cbdb..788899b6b 100644 --- a/node/pkg/websocketfetcher/providers/binance/utils.go +++ b/node/pkg/websocketfetcher/providers/binance/utils.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func TickerToFeedData(miniTicker MiniTicker, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/bingx/bingx.go b/node/pkg/websocketfetcher/providers/bingx/bingx.go index b07aacc3d..cf9e0f25b 100644 --- a/node/pkg/websocketfetcher/providers/bingx/bingx.go +++ b/node/pkg/websocketfetcher/providers/bingx/bingx.go @@ -5,8 +5,8 @@ import ( "encoding/json" "fmt" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/google/uuid" "github.com/rs/zerolog/log" "nhooyr.io/websocket" diff --git a/node/pkg/websocketfetcher/providers/bingx/utils.go b/node/pkg/websocketfetcher/providers/bingx/utils.go index f5c330ae2..ba17c09bb 100644 --- a/node/pkg/websocketfetcher/providers/bingx/utils.go +++ b/node/pkg/websocketfetcher/providers/bingx/utils.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(response Response, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/bitget/bitget.go b/node/pkg/websocketfetcher/providers/bitget/bitget.go index b55c7ba4e..70e6e2455 100644 --- a/node/pkg/websocketfetcher/providers/bitget/bitget.go +++ b/node/pkg/websocketfetcher/providers/bitget/bitget.go @@ -5,8 +5,8 @@ import ( "encoding/json" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "nhooyr.io/websocket" ) diff --git a/node/pkg/websocketfetcher/providers/bitget/utils.go b/node/pkg/websocketfetcher/providers/bitget/utils.go index cc4ad6f98..9eb650d0a 100644 --- a/node/pkg/websocketfetcher/providers/bitget/utils.go +++ b/node/pkg/websocketfetcher/providers/bitget/utils.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bithumb/bithumb.go b/node/pkg/websocketfetcher/providers/bithumb/bithumb.go index 70f30cef4..cf9e5047e 100644 --- a/node/pkg/websocketfetcher/providers/bithumb/bithumb.go +++ b/node/pkg/websocketfetcher/providers/bithumb/bithumb.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bithumb/utils.go b/node/pkg/websocketfetcher/providers/bithumb/utils.go index 62e198fac..e90fcb00d 100644 --- a/node/pkg/websocketfetcher/providers/bithumb/utils.go +++ b/node/pkg/websocketfetcher/providers/bithumb/utils.go @@ -4,7 +4,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bitmart/bitmart.go b/node/pkg/websocketfetcher/providers/bitmart/bitmart.go index 52d03c328..af222bda2 100644 --- a/node/pkg/websocketfetcher/providers/bitmart/bitmart.go +++ b/node/pkg/websocketfetcher/providers/bitmart/bitmart.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "nhooyr.io/websocket" ) diff --git a/node/pkg/websocketfetcher/providers/bitmart/utils.go b/node/pkg/websocketfetcher/providers/bitmart/utils.go index 775d69d4d..fb0fb2d1c 100644 --- a/node/pkg/websocketfetcher/providers/bitmart/utils.go +++ b/node/pkg/websocketfetcher/providers/bitmart/utils.go @@ -4,7 +4,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bitstamp/bitstamp.go b/node/pkg/websocketfetcher/providers/bitstamp/bitstamp.go index 4bccc5250..388dac234 100644 --- a/node/pkg/websocketfetcher/providers/bitstamp/bitstamp.go +++ b/node/pkg/websocketfetcher/providers/bitstamp/bitstamp.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bitstamp/utils.go b/node/pkg/websocketfetcher/providers/bitstamp/utils.go index a3a1b046e..513ee32e4 100644 --- a/node/pkg/websocketfetcher/providers/bitstamp/utils.go +++ b/node/pkg/websocketfetcher/providers/bitstamp/utils.go @@ -6,8 +6,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/btse/btse.go b/node/pkg/websocketfetcher/providers/btse/btse.go index 9317dc696..e754bae23 100644 --- a/node/pkg/websocketfetcher/providers/btse/btse.go +++ b/node/pkg/websocketfetcher/providers/btse/btse.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/btse/utils.go b/node/pkg/websocketfetcher/providers/btse/utils.go index 652d94560..7541e0112 100644 --- a/node/pkg/websocketfetcher/providers/btse/utils.go +++ b/node/pkg/websocketfetcher/providers/btse/utils.go @@ -3,8 +3,8 @@ package btse import ( "time" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bybit/bybit.go b/node/pkg/websocketfetcher/providers/bybit/bybit.go index 1de60a388..f4af474e3 100644 --- a/node/pkg/websocketfetcher/providers/bybit/bybit.go +++ b/node/pkg/websocketfetcher/providers/bybit/bybit.go @@ -5,8 +5,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/bybit/utils.go b/node/pkg/websocketfetcher/providers/bybit/utils.go index fa379391f..b4b89968f 100644 --- a/node/pkg/websocketfetcher/providers/bybit/utils.go +++ b/node/pkg/websocketfetcher/providers/bybit/utils.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(data Response, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/coinbase/coinbase.go b/node/pkg/websocketfetcher/providers/coinbase/coinbase.go index 35525ff12..ee6e4bed6 100644 --- a/node/pkg/websocketfetcher/providers/coinbase/coinbase.go +++ b/node/pkg/websocketfetcher/providers/coinbase/coinbase.go @@ -3,8 +3,8 @@ package coinbase import ( "context" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/coinbase/utils.go b/node/pkg/websocketfetcher/providers/coinbase/utils.go index cfcf4b7f9..55f157607 100644 --- a/node/pkg/websocketfetcher/providers/coinbase/utils.go +++ b/node/pkg/websocketfetcher/providers/coinbase/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/coinex/coinex.go b/node/pkg/websocketfetcher/providers/coinex/coinex.go index 575908aad..64ca4c892 100644 --- a/node/pkg/websocketfetcher/providers/coinex/coinex.go +++ b/node/pkg/websocketfetcher/providers/coinex/coinex.go @@ -3,8 +3,8 @@ package coinex import ( "context" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/coinex/utils.go b/node/pkg/websocketfetcher/providers/coinex/utils.go index 5ef122440..d5ec13e17 100644 --- a/node/pkg/websocketfetcher/providers/coinex/utils.go +++ b/node/pkg/websocketfetcher/providers/coinex/utils.go @@ -3,7 +3,7 @@ package coinex import ( "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/coinone/coinone.go b/node/pkg/websocketfetcher/providers/coinone/coinone.go index 597dc7e4c..0b54a395f 100644 --- a/node/pkg/websocketfetcher/providers/coinone/coinone.go +++ b/node/pkg/websocketfetcher/providers/coinone/coinone.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/coinone/utils.go b/node/pkg/websocketfetcher/providers/coinone/utils.go index b4fe1ff0a..5c725a74a 100644 --- a/node/pkg/websocketfetcher/providers/coinone/utils.go +++ b/node/pkg/websocketfetcher/providers/coinone/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func DataToFeedData(data Data, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/crypto/crypto.go b/node/pkg/websocketfetcher/providers/crypto/crypto.go index 16bb13e60..a4f7db2b7 100644 --- a/node/pkg/websocketfetcher/providers/crypto/crypto.go +++ b/node/pkg/websocketfetcher/providers/crypto/crypto.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/crypto/utils.go b/node/pkg/websocketfetcher/providers/crypto/utils.go index 4f07197c2..1d9f878b0 100644 --- a/node/pkg/websocketfetcher/providers/crypto/utils.go +++ b/node/pkg/websocketfetcher/providers/crypto/utils.go @@ -4,7 +4,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/gateio/gateio.go b/node/pkg/websocketfetcher/providers/gateio/gateio.go index 235905ac8..290b84df9 100644 --- a/node/pkg/websocketfetcher/providers/gateio/gateio.go +++ b/node/pkg/websocketfetcher/providers/gateio/gateio.go @@ -5,8 +5,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/gateio/utils.go b/node/pkg/websocketfetcher/providers/gateio/utils.go index 749e5f985..5e621fff4 100644 --- a/node/pkg/websocketfetcher/providers/gateio/utils.go +++ b/node/pkg/websocketfetcher/providers/gateio/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(data Response, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/gemini/gemini.go b/node/pkg/websocketfetcher/providers/gemini/gemini.go index 8b1dd9d8a..e352f640a 100644 --- a/node/pkg/websocketfetcher/providers/gemini/gemini.go +++ b/node/pkg/websocketfetcher/providers/gemini/gemini.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/gemini/utils.go b/node/pkg/websocketfetcher/providers/gemini/utils.go index ac77d81cc..48aa769d1 100644 --- a/node/pkg/websocketfetcher/providers/gemini/utils.go +++ b/node/pkg/websocketfetcher/providers/gemini/utils.go @@ -4,8 +4,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/gopax/gopax.go b/node/pkg/websocketfetcher/providers/gopax/gopax.go index 995a129ad..a3db88ec8 100644 --- a/node/pkg/websocketfetcher/providers/gopax/gopax.go +++ b/node/pkg/websocketfetcher/providers/gopax/gopax.go @@ -7,9 +7,9 @@ import ( "fmt" "strings" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "nhooyr.io/websocket" ) diff --git a/node/pkg/websocketfetcher/providers/gopax/utils.go b/node/pkg/websocketfetcher/providers/gopax/utils.go index c9dc20e45..7e1db9021 100644 --- a/node/pkg/websocketfetcher/providers/gopax/utils.go +++ b/node/pkg/websocketfetcher/providers/gopax/utils.go @@ -4,9 +4,9 @@ import ( "errors" "time" - errorSentinel "bisonai.com/orakl/node/pkg/error" + errorSentinel "bisonai.com/miko/node/pkg/error" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/huobi/huobi.go b/node/pkg/websocketfetcher/providers/huobi/huobi.go index 0d187d172..a1186a408 100644 --- a/node/pkg/websocketfetcher/providers/huobi/huobi.go +++ b/node/pkg/websocketfetcher/providers/huobi/huobi.go @@ -5,8 +5,8 @@ import ( "encoding/json" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "nhooyr.io/websocket" ) diff --git a/node/pkg/websocketfetcher/providers/huobi/utils.go b/node/pkg/websocketfetcher/providers/huobi/utils.go index 5a4a708e8..c398c9079 100644 --- a/node/pkg/websocketfetcher/providers/huobi/utils.go +++ b/node/pkg/websocketfetcher/providers/huobi/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/korbit/korbit.go b/node/pkg/websocketfetcher/providers/korbit/korbit.go index 3deac3330..5e98ea1b7 100644 --- a/node/pkg/websocketfetcher/providers/korbit/korbit.go +++ b/node/pkg/websocketfetcher/providers/korbit/korbit.go @@ -5,8 +5,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/korbit/utils.go b/node/pkg/websocketfetcher/providers/korbit/utils.go index 956383f9e..3649ca301 100644 --- a/node/pkg/websocketfetcher/providers/korbit/utils.go +++ b/node/pkg/websocketfetcher/providers/korbit/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func DataToFeedData(data Ticker, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/kraken/kraken.go b/node/pkg/websocketfetcher/providers/kraken/kraken.go index 30b2ebd0e..38e841eb5 100644 --- a/node/pkg/websocketfetcher/providers/kraken/kraken.go +++ b/node/pkg/websocketfetcher/providers/kraken/kraken.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/kraken/utils.go b/node/pkg/websocketfetcher/providers/kraken/utils.go index 81980a9f2..574698fb1 100644 --- a/node/pkg/websocketfetcher/providers/kraken/utils.go +++ b/node/pkg/websocketfetcher/providers/kraken/utils.go @@ -4,7 +4,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(response Response, feedMap map[string]int32) []*common.FeedData { diff --git a/node/pkg/websocketfetcher/providers/kucoin/kucoin.go b/node/pkg/websocketfetcher/providers/kucoin/kucoin.go index 25152019c..512a867e2 100644 --- a/node/pkg/websocketfetcher/providers/kucoin/kucoin.go +++ b/node/pkg/websocketfetcher/providers/kucoin/kucoin.go @@ -7,9 +7,9 @@ import ( "net/http" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" "nhooyr.io/websocket" ) diff --git a/node/pkg/websocketfetcher/providers/kucoin/utils.go b/node/pkg/websocketfetcher/providers/kucoin/utils.go index 6cea5e403..08e5922b6 100644 --- a/node/pkg/websocketfetcher/providers/kucoin/utils.go +++ b/node/pkg/websocketfetcher/providers/kucoin/utils.go @@ -3,7 +3,7 @@ package kucoin import ( "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func RawDataToFeedData(raw SymbolSnapshotRaw, feedMap map[string]int32) *common.FeedData { diff --git a/node/pkg/websocketfetcher/providers/lbank/lbank.go b/node/pkg/websocketfetcher/providers/lbank/lbank.go index f4212f651..eeafba163 100644 --- a/node/pkg/websocketfetcher/providers/lbank/lbank.go +++ b/node/pkg/websocketfetcher/providers/lbank/lbank.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/lbank/utils.go b/node/pkg/websocketfetcher/providers/lbank/utils.go index 0aa719ee7..11bd89007 100644 --- a/node/pkg/websocketfetcher/providers/lbank/utils.go +++ b/node/pkg/websocketfetcher/providers/lbank/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) const layout = "2006-01-02T15:04:05.000" diff --git a/node/pkg/websocketfetcher/providers/mexc/mexc.go b/node/pkg/websocketfetcher/providers/mexc/mexc.go index 733baacdc..b0cf8c3dc 100644 --- a/node/pkg/websocketfetcher/providers/mexc/mexc.go +++ b/node/pkg/websocketfetcher/providers/mexc/mexc.go @@ -3,8 +3,8 @@ package mexc import ( "context" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/mexc/utils.go b/node/pkg/websocketfetcher/providers/mexc/utils.go index e1bf2ea50..57a4f1af3 100644 --- a/node/pkg/websocketfetcher/providers/mexc/utils.go +++ b/node/pkg/websocketfetcher/providers/mexc/utils.go @@ -3,7 +3,7 @@ package mexc import ( "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedDataList(response BatchResponse, feedMap map[string]int32) ([]*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/okx/okx.go b/node/pkg/websocketfetcher/providers/okx/okx.go index 379e4f811..f9a066727 100644 --- a/node/pkg/websocketfetcher/providers/okx/okx.go +++ b/node/pkg/websocketfetcher/providers/okx/okx.go @@ -3,8 +3,8 @@ package okx import ( "context" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/okx/utils.go b/node/pkg/websocketfetcher/providers/okx/utils.go index 1a270520d..60413147f 100644 --- a/node/pkg/websocketfetcher/providers/okx/utils.go +++ b/node/pkg/websocketfetcher/providers/okx/utils.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/uniswap/uniswap.go b/node/pkg/websocketfetcher/providers/uniswap/uniswap.go index 5f42d2d81..9b6ef8b86 100644 --- a/node/pkg/websocketfetcher/providers/uniswap/uniswap.go +++ b/node/pkg/websocketfetcher/providers/uniswap/uniswap.go @@ -7,10 +7,10 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/chain/utils" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" - errorSentinel "bisonai.com/orakl/node/pkg/error" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/chain/utils" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" + errorSentinel "bisonai.com/miko/node/pkg/error" + "bisonai.com/miko/node/pkg/websocketfetcher/common" "github.com/klaytn/klaytn/blockchain/types" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/upbit/upbit.go b/node/pkg/websocketfetcher/providers/upbit/upbit.go index 1249a329d..b390b6d95 100644 --- a/node/pkg/websocketfetcher/providers/upbit/upbit.go +++ b/node/pkg/websocketfetcher/providers/upbit/upbit.go @@ -4,8 +4,8 @@ import ( "context" "strings" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/google/uuid" "github.com/rs/zerolog/log" ) diff --git a/node/pkg/websocketfetcher/providers/upbit/utils.go b/node/pkg/websocketfetcher/providers/upbit/utils.go index 78ce510a0..d10ddffdc 100644 --- a/node/pkg/websocketfetcher/providers/upbit/utils.go +++ b/node/pkg/websocketfetcher/providers/upbit/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(data Response, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/xt/utils.go b/node/pkg/websocketfetcher/providers/xt/utils.go index c264098d1..0dc70057a 100644 --- a/node/pkg/websocketfetcher/providers/xt/utils.go +++ b/node/pkg/websocketfetcher/providers/xt/utils.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/common" ) func ResponseToFeedData(response Response, feedMap map[string]int32) (*common.FeedData, error) { diff --git a/node/pkg/websocketfetcher/providers/xt/xt.go b/node/pkg/websocketfetcher/providers/xt/xt.go index 21309f6a1..5dcb6fdab 100644 --- a/node/pkg/websocketfetcher/providers/xt/xt.go +++ b/node/pkg/websocketfetcher/providers/xt/xt.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/wss" "github.com/google/uuid" "github.com/rs/zerolog/log" "nhooyr.io/websocket" diff --git a/node/pkg/websocketfetcher/tests/utils_test.go b/node/pkg/websocketfetcher/tests/utils_test.go index 627106e59..215fa034b 100644 --- a/node/pkg/websocketfetcher/tests/utils_test.go +++ b/node/pkg/websocketfetcher/tests/utils_test.go @@ -5,21 +5,21 @@ import ( "strings" "testing" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/binance" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bitget" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bithumb" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bitstamp" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/btse" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinbase" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinex" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/coinone" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/crypto" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/gateio" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/gemini" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/korbit" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/lbank" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/upbit" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/binance" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bitget" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bithumb" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bitstamp" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/btse" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinbase" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinex" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/coinone" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/crypto" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/gateio" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/gemini" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/korbit" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/lbank" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/upbit" "github.com/stretchr/testify/assert" ) diff --git a/node/pkg/wss/utils.go b/node/pkg/wss/utils.go index 9bb95bdc5..2ffb2aebb 100644 --- a/node/pkg/wss/utils.go +++ b/node/pkg/wss/utils.go @@ -7,7 +7,7 @@ import ( "net/url" "time" - "bisonai.com/orakl/node/pkg/utils/retrier" + "bisonai.com/miko/node/pkg/utils/retrier" "github.com/rs/zerolog/log" "nhooyr.io/websocket" "nhooyr.io/websocket/wsjson" diff --git a/node/script/inspector/main.go b/node/script/inspector/main.go index 4d2b3618f..8ce217722 100644 --- a/node/script/inspector/main.go +++ b/node/script/inspector/main.go @@ -4,7 +4,7 @@ import ( "context" "os" - "bisonai.com/orakl/node/pkg/checker/inspect" + "bisonai.com/miko/node/pkg/checker/inspect" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_connection/main.go b/node/script/test_connection/main.go index 72d42cdc5..a88e4b834 100644 --- a/node/script/test_connection/main.go +++ b/node/script/test_connection/main.go @@ -5,7 +5,7 @@ import ( "flag" "time" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_dal_consumer/main.go b/node/script/test_dal_consumer/main.go index 846c21c18..059abc288 100644 --- a/node/script/test_dal_consumer/main.go +++ b/node/script/test_dal_consumer/main.go @@ -6,9 +6,9 @@ import ( "os" "strings" - "bisonai.com/orakl/node/pkg/chain/helper" - "bisonai.com/orakl/node/pkg/dal/common" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/dal/common" + "bisonai.com/miko/node/pkg/utils/request" klaytncommon "github.com/klaytn/klaytn/common" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_dal_consumer_ws/main.go b/node/script/test_dal_consumer_ws/main.go index b7774704c..60e8be937 100644 --- a/node/script/test_dal_consumer_ws/main.go +++ b/node/script/test_dal_consumer_ws/main.go @@ -8,9 +8,9 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/common/types" - "bisonai.com/orakl/node/pkg/utils/request" - "bisonai.com/orakl/node/pkg/wss" + "bisonai.com/miko/node/pkg/common/types" + "bisonai.com/miko/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/wss" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_fetcher/main.go b/node/script/test_fetcher/main.go index f336ec00f..2862645ca 100644 --- a/node/script/test_fetcher/main.go +++ b/node/script/test_fetcher/main.go @@ -4,9 +4,9 @@ import ( "context" "sync" - "bisonai.com/orakl/node/pkg/admin" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/fetcher" + "bisonai.com/miko/node/pkg/admin" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/fetcher" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_fetcher_and_aggregator/main.go b/node/script/test_fetcher_and_aggregator/main.go index df75c8808..5a6d8e375 100644 --- a/node/script/test_fetcher_and_aggregator/main.go +++ b/node/script/test_fetcher_and_aggregator/main.go @@ -8,11 +8,11 @@ import ( "sync" "time" - "bisonai.com/orakl/node/pkg/admin" - "bisonai.com/orakl/node/pkg/aggregator" - "bisonai.com/orakl/node/pkg/bus" - "bisonai.com/orakl/node/pkg/fetcher" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/admin" + "bisonai.com/miko/node/pkg/aggregator" + "bisonai.com/miko/node/pkg/bus" + "bisonai.com/miko/node/pkg/fetcher" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_raft/main.go b/node/script/test_raft/main.go index 17eb8c63e..cb21c6d4e 100644 --- a/node/script/test_raft/main.go +++ b/node/script/test_raft/main.go @@ -6,8 +6,8 @@ import ( "flag" "time" - libp2pSetup "bisonai.com/orakl/node/pkg/libp2p/setup" - "bisonai.com/orakl/node/pkg/raft" + libp2pSetup "bisonai.com/miko/node/pkg/libp2p/setup" + "bisonai.com/miko/node/pkg/raft" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_single_fetch/main.go b/node/script/test_single_fetch/main.go index d1344bd70..7f9d161d1 100644 --- a/node/script/test_single_fetch/main.go +++ b/node/script/test_single_fetch/main.go @@ -3,8 +3,8 @@ package main import ( "encoding/json" - "bisonai.com/orakl/node/pkg/utils/reducer" - "bisonai.com/orakl/node/pkg/utils/request" + "bisonai.com/miko/node/pkg/utils/reducer" + "bisonai.com/miko/node/pkg/utils/request" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_submission/main.go b/node/script/test_submission/main.go index c20262c83..a59a1772f 100644 --- a/node/script/test_submission/main.go +++ b/node/script/test_submission/main.go @@ -6,7 +6,7 @@ import ( "math/big" "time" - "bisonai.com/orakl/node/pkg/chain/helper" + "bisonai.com/miko/node/pkg/chain/helper" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_websocketDexFetcher/main.go b/node/script/test_websocketDexFetcher/main.go index c3c1364f8..e52831869 100644 --- a/node/script/test_websocketDexFetcher/main.go +++ b/node/script/test_websocketDexFetcher/main.go @@ -5,9 +5,9 @@ import ( "encoding/json" "os" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/uniswap" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/uniswap" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_websocketFetcher/main.go b/node/script/test_websocketFetcher/main.go index ac8438cf0..735d2aeab 100644 --- a/node/script/test_websocketFetcher/main.go +++ b/node/script/test_websocketFetcher/main.go @@ -5,8 +5,8 @@ import ( "encoding/json" "fmt" - "bisonai.com/orakl/node/pkg/websocketfetcher/common" - "bisonai.com/orakl/node/pkg/websocketfetcher/providers/bybit" + "bisonai.com/miko/node/pkg/websocketfetcher/common" + "bisonai.com/miko/node/pkg/websocketfetcher/providers/bybit" "github.com/rs/zerolog/log" ) diff --git a/node/script/test_websocketchainreader/main.go b/node/script/test_websocketchainreader/main.go index b06a6f15c..adf24e067 100644 --- a/node/script/test_websocketchainreader/main.go +++ b/node/script/test_websocketchainreader/main.go @@ -4,8 +4,8 @@ import ( "context" "os" - "bisonai.com/orakl/node/pkg/chain/utils" - "bisonai.com/orakl/node/pkg/chain/websocketchainreader" + "bisonai.com/miko/node/pkg/chain/utils" + "bisonai.com/miko/node/pkg/chain/websocketchainreader" "github.com/klaytn/klaytn/blockchain/types" "github.com/rs/zerolog/log"