diff --git a/astria/execution/v1alpha2.go b/astria/execution/v1alpha2.go index dc4837ee6..99059c1e3 100644 --- a/astria/execution/v1alpha2.go +++ b/astria/execution/v1alpha2.go @@ -7,11 +7,11 @@ import ( astriaGrpc "buf.build/gen/go/astria/execution-apis/grpc/go/astria/execution/v1alpha2/executionv1alpha2grpc" astriaPb "buf.build/gen/go/astria/execution-apis/protocolbuffers/go/astria/execution/v1alpha2" + "github.com/astriaorg/rollkit/block" + "github.com/astriaorg/rollkit/store" + "github.com/astriaorg/rollkit/types" cmbytes "github.com/cometbft/cometbft/libs/bytes" "github.com/cometbft/cometbft/libs/log" - "github.com/rollkit/rollkit/block" - "github.com/rollkit/rollkit/store" - "github.com/rollkit/rollkit/types" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" "google.golang.org/protobuf/encoding/protojson" diff --git a/astria/mempool/reaper.go b/astria/mempool/reaper.go index 669665f0d..e5b5b570d 100644 --- a/astria/mempool/reaper.go +++ b/astria/mempool/reaper.go @@ -4,9 +4,9 @@ import ( "fmt" "sync" + "github.com/astriaorg/rollkit/astria/sequencer" + "github.com/astriaorg/rollkit/mempool" "github.com/cometbft/cometbft/libs/log" - "github.com/rollkit/rollkit/astria/sequencer" - "github.com/rollkit/rollkit/mempool" ) type MempoolReaper struct { diff --git a/block/block_cache.go b/block/block_cache.go index 8ef368e52..de35edd77 100644 --- a/block/block_cache.go +++ b/block/block_cache.go @@ -3,7 +3,7 @@ package block import ( "sync" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" ) // BlockCache maintains blocks that are seen and hard confirmed diff --git a/block/block_cache_test.go b/block/block_cache_test.go index 528fc2812..4fb8a0295 100644 --- a/block/block_cache_test.go +++ b/block/block_cache_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" ) func TestBlockCache(t *testing.T) { diff --git a/block/ss_manager.go b/block/ss_manager.go index 8f0ca12b0..f282e1950 100644 --- a/block/ss_manager.go +++ b/block/ss_manager.go @@ -17,12 +17,12 @@ import ( ds "github.com/ipfs/go-datastore" "github.com/libp2p/go-libp2p/core/crypto" - "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/store" - "github.com/rollkit/rollkit/third_party/log" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/store" + "github.com/astriaorg/rollkit/third_party/log" + "github.com/astriaorg/rollkit/types" ) // Manager is responsible for aggregating transactions into blocks. diff --git a/da/da.go b/da/da.go index 952a323c5..742286a85 100644 --- a/da/da.go +++ b/da/da.go @@ -8,10 +8,10 @@ import ( "github.com/gogo/protobuf/proto" + "github.com/astriaorg/rollkit/third_party/log" + "github.com/astriaorg/rollkit/types" + pb "github.com/astriaorg/rollkit/types/pb/rollkit" goDA "github.com/rollkit/go-da" - "github.com/rollkit/rollkit/third_party/log" - "github.com/rollkit/rollkit/types" - pb "github.com/rollkit/rollkit/types/pb/rollkit" ) var ( diff --git a/da/da_test.go b/da/da_test.go index 087895829..bbea62326 100644 --- a/da/da_test.go +++ b/da/da_test.go @@ -19,10 +19,10 @@ import ( "google.golang.org/grpc/credentials/insecure" + "github.com/astriaorg/rollkit/types" "github.com/rollkit/go-da" "github.com/rollkit/go-da/proxy" goDATest "github.com/rollkit/go-da/test" - "github.com/rollkit/rollkit/types" ) const mockDaBlockTime = 100 * time.Millisecond diff --git a/go.mod b/go.mod index d70928526..5f4d99337 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/rollkit/rollkit +module github.com/astriaorg/rollkit go 1.21.1 diff --git a/mempool/clist_mempool.go b/mempool/clist_mempool.go index 3da6b0a58..f7d543d6e 100644 --- a/mempool/clist_mempool.go +++ b/mempool/clist_mempool.go @@ -14,7 +14,7 @@ import ( "github.com/cometbft/cometbft/proxy" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/mempool/clist" + "github.com/astriaorg/rollkit/mempool/clist" ) // CListMempool is an ordered in-memory pool for transactions before they are diff --git a/node/full.go b/node/full.go index f8634bb9a..770aacd3f 100644 --- a/node/full.go +++ b/node/full.go @@ -24,19 +24,19 @@ import ( rpcclient "github.com/cometbft/cometbft/rpc/client" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/astria/execution" - astriamempool "github.com/rollkit/rollkit/astria/mempool" - "github.com/rollkit/rollkit/astria/sequencer" - "github.com/rollkit/rollkit/block" - "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/state/indexer" - blockidxkv "github.com/rollkit/rollkit/state/indexer/block/kv" - "github.com/rollkit/rollkit/state/txindex" - "github.com/rollkit/rollkit/state/txindex/kv" - "github.com/rollkit/rollkit/store" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/astria/execution" + astriamempool "github.com/astriaorg/rollkit/astria/mempool" + "github.com/astriaorg/rollkit/astria/sequencer" + "github.com/astriaorg/rollkit/block" + "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/state/indexer" + blockidxkv "github.com/astriaorg/rollkit/state/indexer/block/kv" + "github.com/astriaorg/rollkit/state/txindex" + "github.com/astriaorg/rollkit/state/txindex/kv" + "github.com/astriaorg/rollkit/store" + "github.com/astriaorg/rollkit/types" ) // prefixes used in KV store to separate main node data from DALC data diff --git a/node/full_client.go b/node/full_client.go index 853e80b36..b71652cc6 100644 --- a/node/full_client.go +++ b/node/full_client.go @@ -19,10 +19,10 @@ import ( cmtypes "github.com/cometbft/cometbft/types" "github.com/cometbft/cometbft/version" - rconfig "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/types" - abciconv "github.com/rollkit/rollkit/types/abci" + rconfig "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/types" + abciconv "github.com/astriaorg/rollkit/types/abci" ) const ( diff --git a/node/full_client_test.go b/node/full_client_test.go index c994329ba..d3b066b23 100644 --- a/node/full_client_test.go +++ b/node/full_client_test.go @@ -26,11 +26,11 @@ import ( "github.com/libp2p/go-libp2p/core/crypto" "github.com/libp2p/go-libp2p/core/peer" - "github.com/rollkit/rollkit/config" - test "github.com/rollkit/rollkit/test/log" - "github.com/rollkit/rollkit/test/mocks" - "github.com/rollkit/rollkit/types" - abciconv "github.com/rollkit/rollkit/types/abci" + "github.com/astriaorg/rollkit/config" + test "github.com/astriaorg/rollkit/test/log" + "github.com/astriaorg/rollkit/test/mocks" + "github.com/astriaorg/rollkit/types" + abciconv "github.com/astriaorg/rollkit/types/abci" ) var expectedInfo = &abci.ResponseInfo{ diff --git a/node/full_node_integration_test.go b/node/full_node_integration_test.go index 1a6a49a33..2997a602a 100644 --- a/node/full_node_integration_test.go +++ b/node/full_node_integration_test.go @@ -24,10 +24,10 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/config" - test "github.com/rollkit/rollkit/test/log" - "github.com/rollkit/rollkit/test/mocks" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/config" + test "github.com/astriaorg/rollkit/test/log" + "github.com/astriaorg/rollkit/test/mocks" + "github.com/astriaorg/rollkit/types" testutils "github.com/celestiaorg/utils/test" ) diff --git a/node/full_node_test.go b/node/full_node_test.go index 33656632d..07eb11428 100644 --- a/node/full_node_test.go +++ b/node/full_node_test.go @@ -17,11 +17,11 @@ import ( testutils "github.com/celestiaorg/utils/test" - "github.com/rollkit/rollkit/block" - "github.com/rollkit/rollkit/da" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/test/mocks" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/block" + "github.com/astriaorg/rollkit/da" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/test/mocks" + "github.com/astriaorg/rollkit/types" ) // simply check that node is starting and stopping without panicking diff --git a/node/node.go b/node/node.go index 2246b1b69..8b3555ef0 100644 --- a/node/node.go +++ b/node/node.go @@ -10,7 +10,7 @@ import ( rpcclient "github.com/cometbft/cometbft/rpc/client" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/config" + "github.com/astriaorg/rollkit/config" ) // Node is the interface for a rollup node diff --git a/node/node_test.go b/node/node_test.go index a064b32e6..f0fbd1360 100644 --- a/node/node_test.go +++ b/node/node_test.go @@ -11,9 +11,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/config" - test "github.com/rollkit/rollkit/test/log" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/config" + test "github.com/astriaorg/rollkit/test/log" + "github.com/astriaorg/rollkit/types" ) var MockServerAddr = ":7980" diff --git a/node/setup.go b/node/setup.go index 6d78a04b2..87dff0ed5 100644 --- a/node/setup.go +++ b/node/setup.go @@ -6,10 +6,10 @@ import ( cmcfg "github.com/cometbft/cometbft/config" proxy "github.com/cometbft/cometbft/proxy" - "github.com/rollkit/rollkit/block" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/p2p" - "github.com/rollkit/rollkit/state" + "github.com/astriaorg/rollkit/block" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/p2p" + "github.com/astriaorg/rollkit/state" ) const readHeaderTimeout = 10 * time.Second diff --git a/p2p/client.go b/p2p/client.go index e36196c57..974145482 100644 --- a/p2p/client.go +++ b/p2p/client.go @@ -27,8 +27,8 @@ import ( tmcrypto "github.com/tendermint/tendermint/crypto" - "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/third_party/log" ) // TODO(tzdybal): refactor to configuration parameters diff --git a/p2p/client_test.go b/p2p/client_test.go index ad7b5d1a6..be6385cc7 100644 --- a/p2p/client_test.go +++ b/p2p/client_test.go @@ -16,8 +16,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/config" - test "github.com/rollkit/rollkit/test/log" + "github.com/astriaorg/rollkit/config" + test "github.com/astriaorg/rollkit/test/log" ) func TestClientStartup(t *testing.T) { diff --git a/p2p/gossip.go b/p2p/gossip.go index bee023d29..2ca1d089b 100644 --- a/p2p/gossip.go +++ b/p2p/gossip.go @@ -8,7 +8,7 @@ import ( "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/peer" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/third_party/log" ) // GossipMessage represents message gossiped via P2P network (e.g. transaction, Block etc). diff --git a/p2p/utils_test.go b/p2p/utils_test.go index 7f7190d31..1e891b777 100644 --- a/p2p/utils_test.go +++ b/p2p/utils_test.go @@ -17,8 +17,8 @@ import ( "github.com/multiformats/go-multiaddr" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/third_party/log" ) type testNet []*Client diff --git a/proto/rollkit/rollkit.proto b/proto/rollkit/rollkit.proto index f6da6e526..fbccd2b50 100644 --- a/proto/rollkit/rollkit.proto +++ b/proto/rollkit/rollkit.proto @@ -1,6 +1,6 @@ syntax = "proto3"; package rollkit; -option go_package = "github.com/rollkit/rollkit/types/pb/rollkit"; +option go_package = "github.com/astriaorg/rollkit/types/pb/rollkit"; import "tendermint/types/validator.proto"; // Version captures the consensus rules for processing a block in the blockchain, diff --git a/proto/rollkit/state.proto b/proto/rollkit/state.proto index 3f78b00d1..d9e328395 100644 --- a/proto/rollkit/state.proto +++ b/proto/rollkit/state.proto @@ -1,6 +1,6 @@ syntax = "proto3"; package rollkit; -option go_package = "github.com/rollkit/rollkit/types/pb/rollkit"; +option go_package = "github.com/astriaorg/rollkit/types/pb/rollkit"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; diff --git a/rpc/json/handler.go b/rpc/json/handler.go index 0d116b920..477ba74da 100644 --- a/rpc/json/handler.go +++ b/rpc/json/handler.go @@ -15,7 +15,7 @@ import ( "github.com/gorilla/rpc/v2" "github.com/gorilla/rpc/v2/json2" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/third_party/log" ) type handler struct { diff --git a/rpc/json/helpers_test.go b/rpc/json/helpers_test.go index 6b2a936bb..bd34bfffe 100644 --- a/rpc/json/helpers_test.go +++ b/rpc/json/helpers_test.go @@ -17,10 +17,10 @@ import ( "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/config" - "github.com/rollkit/rollkit/node" - "github.com/rollkit/rollkit/test/mocks" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/config" + "github.com/astriaorg/rollkit/node" + "github.com/astriaorg/rollkit/test/mocks" + "github.com/astriaorg/rollkit/types" ) func prepareProposalResponse(_ context.Context, req *abci.RequestPrepareProposal) (*abci.ResponsePrepareProposal, error) { diff --git a/rpc/json/service.go b/rpc/json/service.go index 013556a7c..bd059421b 100644 --- a/rpc/json/service.go +++ b/rpc/json/service.go @@ -16,7 +16,7 @@ import ( "github.com/gorilla/rpc/v2" "github.com/gorilla/rpc/v2/json2" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/third_party/log" ) // GetHTTPHandler returns handler configured to serve Tendermint-compatible RPC. diff --git a/rpc/json/service_test.go b/rpc/json/service_test.go index 4294cfef4..b4a38bc03 100644 --- a/rpc/json/service_test.go +++ b/rpc/json/service_test.go @@ -18,7 +18,7 @@ import ( coretypes "github.com/cometbft/cometbft/rpc/core/types" "github.com/stretchr/testify/mock" - "github.com/rollkit/rollkit/test/mocks" + "github.com/astriaorg/rollkit/test/mocks" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/rpc/json/ws.go b/rpc/json/ws.go index 15c5ed98f..06b0d2019 100644 --- a/rpc/json/ws.go +++ b/rpc/json/ws.go @@ -9,7 +9,7 @@ import ( "github.com/gorilla/websocket" - "github.com/rollkit/rollkit/third_party/log" + "github.com/astriaorg/rollkit/third_party/log" ) type wsConn struct { diff --git a/rpc/server.go b/rpc/server.go index 1a4804d02..ff73fabf7 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -15,8 +15,8 @@ import ( "github.com/rs/cors" "golang.org/x/net/netutil" - "github.com/rollkit/rollkit/node" - "github.com/rollkit/rollkit/rpc/json" + "github.com/astriaorg/rollkit/node" + "github.com/astriaorg/rollkit/rpc/json" ) // Server handles HTTP and JSON-RPC requests, exposing Tendermint-compatible API. diff --git a/state/executor.go b/state/executor.go index a6213189f..c08476e01 100644 --- a/state/executor.go +++ b/state/executor.go @@ -13,10 +13,10 @@ import ( "github.com/cometbft/cometbft/proxy" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/third_party/log" - "github.com/rollkit/rollkit/types" - abciconv "github.com/rollkit/rollkit/types/abci" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/third_party/log" + "github.com/astriaorg/rollkit/types" + abciconv "github.com/astriaorg/rollkit/types/abci" ) // ErrEmptyValSetGenerated is returned when applying the validator changes would result in empty set. diff --git a/state/executor_test.go b/state/executor_test.go index 404c96317..82707a490 100644 --- a/state/executor_test.go +++ b/state/executor_test.go @@ -20,9 +20,9 @@ import ( "github.com/cometbft/cometbft/proxy" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/mempool" - "github.com/rollkit/rollkit/test/mocks" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/mempool" + "github.com/astriaorg/rollkit/test/mocks" + "github.com/astriaorg/rollkit/types" ) func prepareProposalResponse(_ context.Context, req *abci.RequestPrepareProposal) (*abci.ResponsePrepareProposal, error) { diff --git a/state/indexer/block/kv/kv.go b/state/indexer/block/kv/kv.go index 4ec0a897d..51974294e 100644 --- a/state/indexer/block/kv/kv.go +++ b/state/indexer/block/kv/kv.go @@ -15,9 +15,9 @@ import ( "github.com/cometbft/cometbft/libs/pubsub/query/syntax" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/state/indexer" - "github.com/rollkit/rollkit/store" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/state/indexer" + "github.com/astriaorg/rollkit/store" ) var _ indexer.BlockIndexer = (*BlockerIndexer)(nil) diff --git a/state/indexer/block/kv/kv_test.go b/state/indexer/block/kv/kv_test.go index 51f052cac..760ce72e2 100644 --- a/state/indexer/block/kv/kv_test.go +++ b/state/indexer/block/kv/kv_test.go @@ -12,8 +12,8 @@ import ( ktds "github.com/ipfs/go-datastore/keytransform" "github.com/stretchr/testify/require" - blockidxkv "github.com/rollkit/rollkit/state/indexer/block/kv" - "github.com/rollkit/rollkit/store" + blockidxkv "github.com/astriaorg/rollkit/state/indexer/block/kv" + "github.com/astriaorg/rollkit/store" ) func TestBlockIndexer(t *testing.T) { diff --git a/state/indexer/block/kv/util.go b/state/indexer/block/kv/util.go index 384a397b9..85afbdb33 100644 --- a/state/indexer/block/kv/util.go +++ b/state/indexer/block/kv/util.go @@ -7,11 +7,11 @@ import ( "strconv" "strings" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/state/indexer" + "github.com/astriaorg/rollkit/store" "github.com/cometbft/cometbft/libs/pubsub/query/syntax" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/state/indexer" - "github.com/rollkit/rollkit/store" ) type HeightInfo struct { diff --git a/state/indexer/block/null/null.go b/state/indexer/block/null/null.go index 41ce8288f..4d3067487 100644 --- a/state/indexer/block/null/null.go +++ b/state/indexer/block/null/null.go @@ -7,7 +7,7 @@ import ( "github.com/cometbft/cometbft/libs/pubsub/query" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state/indexer" + "github.com/astriaorg/rollkit/state/indexer" ) var _ indexer.BlockIndexer = (*BlockerIndexer)(nil) diff --git a/state/indexer_utils.go b/state/indexer_utils.go index 09f021c56..5923c90e7 100644 --- a/state/indexer_utils.go +++ b/state/indexer_utils.go @@ -4,7 +4,7 @@ import ( "fmt" "math/big" - "github.com/rollkit/rollkit/state/indexer" + "github.com/astriaorg/rollkit/state/indexer" ) // If the actual event value is a float, we get the condition and parse it as a float diff --git a/state/txindex/indexer_service.go b/state/txindex/indexer_service.go index f19d060ca..76a5c7126 100644 --- a/state/txindex/indexer_service.go +++ b/state/txindex/indexer_service.go @@ -3,9 +3,9 @@ package txindex import ( "context" + "github.com/astriaorg/rollkit/state/indexer" "github.com/cometbft/cometbft/libs/service" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state/indexer" ) // XXX/TODO: These types should be moved to the indexer package. diff --git a/state/txindex/indexer_service_test.go b/state/txindex/indexer_service_test.go index 3f2b1c9c9..e1c78b705 100644 --- a/state/txindex/indexer_service_test.go +++ b/state/txindex/indexer_service_test.go @@ -5,15 +5,15 @@ import ( "testing" "time" + blockidxkv "github.com/astriaorg/rollkit/state/indexer/block/kv" + "github.com/astriaorg/rollkit/state/txindex" + "github.com/astriaorg/rollkit/state/txindex/kv" + "github.com/astriaorg/rollkit/store" abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/log" "github.com/cometbft/cometbft/types" ds "github.com/ipfs/go-datastore" ktds "github.com/ipfs/go-datastore/keytransform" - blockidxkv "github.com/rollkit/rollkit/state/indexer/block/kv" - "github.com/rollkit/rollkit/state/txindex" - "github.com/rollkit/rollkit/state/txindex/kv" - "github.com/rollkit/rollkit/store" "github.com/stretchr/testify/require" ) diff --git a/state/txindex/kv/kv.go b/state/txindex/kv/kv.go index 37454bdf7..05fc03ddb 100644 --- a/state/txindex/kv/kv.go +++ b/state/txindex/kv/kv.go @@ -16,10 +16,10 @@ import ( "github.com/cometbft/cometbft/libs/pubsub/query/syntax" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/state/indexer" - "github.com/rollkit/rollkit/state/txindex" - "github.com/rollkit/rollkit/store" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/state/indexer" + "github.com/astriaorg/rollkit/state/txindex" + "github.com/astriaorg/rollkit/store" ) const ( diff --git a/state/txindex/kv/kv_bench_test.go b/state/txindex/kv/kv_bench_test.go index 6f27cb1e2..3e75f196a 100644 --- a/state/txindex/kv/kv_bench_test.go +++ b/state/txindex/kv/kv_bench_test.go @@ -11,7 +11,7 @@ import ( "github.com/cometbft/cometbft/libs/pubsub/query" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/store" + "github.com/astriaorg/rollkit/store" ) func BenchmarkTxSearch(b *testing.B) { diff --git a/state/txindex/kv/kv_test.go b/state/txindex/kv/kv_test.go index 0e206b758..41d20c58a 100644 --- a/state/txindex/kv/kv_test.go +++ b/state/txindex/kv/kv_test.go @@ -18,8 +18,8 @@ import ( cmrand "github.com/cometbft/cometbft/libs/rand" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state/txindex" - "github.com/rollkit/rollkit/store" + "github.com/astriaorg/rollkit/state/txindex" + "github.com/astriaorg/rollkit/store" ) func TestTxIndex(t *testing.T) { diff --git a/state/txindex/kv/utils.go b/state/txindex/kv/utils.go index 8013ead8c..91d4514cd 100644 --- a/state/txindex/kv/utils.go +++ b/state/txindex/kv/utils.go @@ -3,10 +3,10 @@ package kv import ( "math/big" + "github.com/astriaorg/rollkit/state" + "github.com/astriaorg/rollkit/state/indexer" cmtsyntax "github.com/cometbft/cometbft/libs/pubsub/query/syntax" "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/state" - "github.com/rollkit/rollkit/state/indexer" ) type HeightInfo struct { diff --git a/state/txindex/null/null.go b/state/txindex/null/null.go index 9b74416b8..bf773ea38 100644 --- a/state/txindex/null/null.go +++ b/state/txindex/null/null.go @@ -7,7 +7,7 @@ import ( abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/pubsub/query" - "github.com/rollkit/rollkit/state/txindex" + "github.com/astriaorg/rollkit/state/txindex" ) var _ txindex.TxIndexer = (*TxIndex)(nil) diff --git a/store/store.go b/store/store.go index 7025f5b82..d238c56b9 100644 --- a/store/store.go +++ b/store/store.go @@ -12,8 +12,8 @@ import ( "github.com/celestiaorg/go-header" - "github.com/rollkit/rollkit/types" - pb "github.com/rollkit/rollkit/types/pb/rollkit" + "github.com/astriaorg/rollkit/types" + pb "github.com/astriaorg/rollkit/types/pb/rollkit" ) var ( diff --git a/store/store_test.go b/store/store_test.go index 0039e3ccc..b0b62621b 100644 --- a/store/store_test.go +++ b/store/store_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" ) func TestStoreHeight(t *testing.T) { diff --git a/store/types.go b/store/types.go index 28547a1a2..62729822d 100644 --- a/store/types.go +++ b/store/types.go @@ -5,7 +5,7 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" ) // Store is minimal interface for storing and retrieving blocks, commits and state. diff --git a/third_party/celestia-app/namespace/consts.go b/third_party/celestia-app/namespace/consts.go index bcfed190d..d6041610d 100644 --- a/third_party/celestia-app/namespace/consts.go +++ b/third_party/celestia-app/namespace/consts.go @@ -4,7 +4,7 @@ import ( "bytes" "math" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" ) const ( diff --git a/third_party/celestia-app/shares/compact_shares_test.go b/third_party/celestia-app/shares/compact_shares_test.go index f2f5756f3..0cd95900a 100644 --- a/third_party/celestia-app/shares/compact_shares_test.go +++ b/third_party/celestia-app/shares/compact_shares_test.go @@ -9,9 +9,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" - "github.com/rollkit/rollkit/third_party/celestia-app/testfactory" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/testfactory" ) func TestCompactShareSplitter(t *testing.T) { diff --git a/third_party/celestia-app/shares/info_byte.go b/third_party/celestia-app/shares/info_byte.go index 224a1ddab..389fcfeba 100644 --- a/third_party/celestia-app/shares/info_byte.go +++ b/third_party/celestia-app/shares/info_byte.go @@ -3,7 +3,7 @@ package shares import ( "fmt" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" ) // InfoByte is a byte with the following structure: the first 7 bits are diff --git a/third_party/celestia-app/shares/parse_compact_shares.go b/third_party/celestia-app/shares/parse_compact_shares.go index 815f96a06..c99c8548b 100644 --- a/third_party/celestia-app/shares/parse_compact_shares.go +++ b/third_party/celestia-app/shares/parse_compact_shares.go @@ -1,7 +1,7 @@ package shares import ( - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" ) func ParseCompactShares(shares []Share) (data [][]byte, err error) { diff --git a/third_party/celestia-app/shares/reserved_bytes.go b/third_party/celestia-app/shares/reserved_bytes.go index 9fd0580f9..e17fa6e49 100644 --- a/third_party/celestia-app/shares/reserved_bytes.go +++ b/third_party/celestia-app/shares/reserved_bytes.go @@ -4,7 +4,7 @@ import ( "encoding/binary" "fmt" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" ) // NewReservedBytes returns a byte slice of length diff --git a/third_party/celestia-app/shares/share_builder.go b/third_party/celestia-app/shares/share_builder.go index 16362f758..4daf8ecf5 100644 --- a/third_party/celestia-app/shares/share_builder.go +++ b/third_party/celestia-app/shares/share_builder.go @@ -4,8 +4,8 @@ import ( "encoding/binary" "errors" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) type Builder struct { diff --git a/third_party/celestia-app/shares/share_builder_test.go b/third_party/celestia-app/shares/share_builder_test.go index b356fd709..65d83a15c 100644 --- a/third_party/celestia-app/shares/share_builder_test.go +++ b/third_party/celestia-app/shares/share_builder_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) func TestShareBuilderIsEmptyShare(t *testing.T) { diff --git a/third_party/celestia-app/shares/share_sequence.go b/third_party/celestia-app/shares/share_sequence.go index b5bf48fdd..2027b3af1 100644 --- a/third_party/celestia-app/shares/share_sequence.go +++ b/third_party/celestia-app/shares/share_sequence.go @@ -3,8 +3,8 @@ package shares import ( "fmt" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) // ShareSequence represents a contiguous sequence of shares that are part of the diff --git a/third_party/celestia-app/shares/share_sequence_test.go b/third_party/celestia-app/shares/share_sequence_test.go index 79f851b98..a86cdd2e3 100644 --- a/third_party/celestia-app/shares/share_sequence_test.go +++ b/third_party/celestia-app/shares/share_sequence_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) func TestShareSequenceRawData(t *testing.T) { diff --git a/third_party/celestia-app/shares/shares.go b/third_party/celestia-app/shares/shares.go index d3e9d6785..171553ea1 100644 --- a/third_party/celestia-app/shares/shares.go +++ b/third_party/celestia-app/shares/shares.go @@ -5,8 +5,8 @@ import ( "encoding/binary" "fmt" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) // Share contains the raw share data (including namespace ID). diff --git a/third_party/celestia-app/shares/shares_test.go b/third_party/celestia-app/shares/shares_test.go index e5f529271..669908a93 100644 --- a/third_party/celestia-app/shares/shares_test.go +++ b/third_party/celestia-app/shares/shares_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) // // TestPadFirstIndexedBlob ensures that we are adding padding to the first share diff --git a/third_party/celestia-app/shares/split_compact_shares.go b/third_party/celestia-app/shares/split_compact_shares.go index 2d7182185..e041cf3fe 100644 --- a/third_party/celestia-app/shares/split_compact_shares.go +++ b/third_party/celestia-app/shares/split_compact_shares.go @@ -6,8 +6,8 @@ import ( coretypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) type ShareRange struct { diff --git a/third_party/celestia-app/shares/split_compact_shares_test.go b/third_party/celestia-app/shares/split_compact_shares_test.go index 77601ecdf..5fbf8db93 100644 --- a/third_party/celestia-app/shares/split_compact_shares_test.go +++ b/third_party/celestia-app/shares/split_compact_shares_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) // fillShare returns a share filled with filler so that the share length diff --git a/third_party/celestia-app/shares/utils.go b/third_party/celestia-app/shares/utils.go index 6ce495a53..506b1a7d2 100644 --- a/third_party/celestia-app/shares/utils.go +++ b/third_party/celestia-app/shares/utils.go @@ -6,8 +6,8 @@ import ( coretypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" ) // DelimLen calculates the length of the delimiter for a given unit size diff --git a/third_party/celestia-app/shares/utils_test.go b/third_party/celestia-app/shares/utils_test.go index 0e6f97fd3..3138f9d9a 100644 --- a/third_party/celestia-app/shares/utils_test.go +++ b/third_party/celestia-app/shares/utils_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/rollkit/rollkit/third_party/celestia-app/testfactory" + "github.com/astriaorg/rollkit/third_party/celestia-app/testfactory" ) // func FuzzBlobSharesUsed(f *testing.F) { diff --git a/types/abci/block.go b/types/abci/block.go index ce1b61de8..dab9c3c67 100644 --- a/types/abci/block.go +++ b/types/abci/block.go @@ -6,7 +6,7 @@ import ( cmversion "github.com/cometbft/cometbft/proto/tendermint/version" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" ) // ToABCIHeaderPB converts Rollkit header to Header format defined in ABCI. diff --git a/types/abci/block_test.go b/types/abci/block_test.go index 0796179db..991b3187b 100644 --- a/types/abci/block_test.go +++ b/types/abci/block_test.go @@ -10,7 +10,7 @@ import ( cmversion "github.com/cometbft/cometbft/proto/tendermint/version" cmtypes "github.com/cometbft/cometbft/types" - "github.com/rollkit/rollkit/types" + "github.com/astriaorg/rollkit/types" "github.com/stretchr/testify/assert" ) diff --git a/types/serialization.go b/types/serialization.go index aec761282..d8a30a0fd 100644 --- a/types/serialization.go +++ b/types/serialization.go @@ -4,7 +4,7 @@ import ( cmproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cometbft/cometbft/types" - pb "github.com/rollkit/rollkit/types/pb/rollkit" + pb "github.com/astriaorg/rollkit/types/pb/rollkit" ) // MarshalBinary encodes Block into binary form and returns it. diff --git a/types/serialization_test.go b/types/serialization_test.go index c92160464..acabb37da 100644 --- a/types/serialization_test.go +++ b/types/serialization_test.go @@ -14,7 +14,7 @@ import ( cmversion "github.com/cometbft/cometbft/proto/tendermint/version" cmtypes "github.com/cometbft/cometbft/types" - pb "github.com/rollkit/rollkit/types/pb/rollkit" + pb "github.com/astriaorg/rollkit/types/pb/rollkit" ) func TestBlockSerializationRoundTrip(t *testing.T) { diff --git a/types/tx.go b/types/tx.go index c01cf77e2..f69aa674b 100644 --- a/types/tx.go +++ b/types/tx.go @@ -7,10 +7,10 @@ import ( "github.com/cometbft/cometbft/crypto/tmhash" cmbytes "github.com/cometbft/cometbft/libs/bytes" - "github.com/rollkit/rollkit/third_party/celestia-app/appconsts" - appns "github.com/rollkit/rollkit/third_party/celestia-app/namespace" - "github.com/rollkit/rollkit/third_party/celestia-app/shares" - pb "github.com/rollkit/rollkit/types/pb/rollkit" + "github.com/astriaorg/rollkit/third_party/celestia-app/appconsts" + appns "github.com/astriaorg/rollkit/third_party/celestia-app/namespace" + "github.com/astriaorg/rollkit/third_party/celestia-app/shares" + pb "github.com/astriaorg/rollkit/types/pb/rollkit" ) // Tx represents transaction. diff --git a/types/tx_test.go b/types/tx_test.go index 88031ac3b..efd561ff2 100644 --- a/types/tx_test.go +++ b/types/tx_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/rollkit/rollkit/types/pb/rollkit" + "github.com/astriaorg/rollkit/types/pb/rollkit" ) func TestTxWithISRSerializationRoundtrip(t *testing.T) {