chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:13 -08:00
parent 43a7b88e2a
commit 041fae1574
223 changed files with 12940 additions and 11756 deletions

View File

@@ -8,15 +8,17 @@ import (
"strconv"
"strings"
"time"
"github.com/explorer/backend/libs/go-rpc-gateway"
)
// Server handles Track 1 endpoints
// Server handles Track 1 endpoints (uses RPC gateway from lib)
type Server struct {
rpcGateway *RPCGateway
rpcGateway *gateway.RPCGateway
}
// NewServer creates a new Track 1 server
func NewServer(rpcGateway *RPCGateway) *Server {
func NewServer(rpcGateway *gateway.RPCGateway) *Server {
return &Server{
rpcGateway: rpcGateway,
}