Some checks are pending
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
65 lines
1.9 KiB
Go
65 lines
1.9 KiB
Go
package node
|
|
|
|
import (
|
|
context "context"
|
|
|
|
gogogrpc "github.com/cosmos/gogoproto/grpc"
|
|
"github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
|
|
"git.cw.tr/mukan-network/mukan-sdk/client"
|
|
"git.cw.tr/mukan-network/mukan-sdk/server/config"
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
)
|
|
|
|
// RegisterNodeService registers the node gRPC service on the provided gRPC router.
|
|
func RegisterNodeService(clientCtx client.Context, server gogogrpc.Server, cfg config.Config) {
|
|
RegisterServiceServer(server, NewQueryServer(clientCtx, cfg))
|
|
}
|
|
|
|
// RegisterGRPCGatewayRoutes mounts the node gRPC service's GRPC-gateway routes
|
|
// on the given mux object.
|
|
func RegisterGRPCGatewayRoutes(clientConn gogogrpc.ClientConn, mux *runtime.ServeMux) {
|
|
_ = RegisterServiceHandlerClient(context.Background(), mux, NewServiceClient(clientConn))
|
|
}
|
|
|
|
var _ ServiceServer = queryServer{}
|
|
|
|
type queryServer struct {
|
|
clientCtx client.Context
|
|
cfg config.Config
|
|
}
|
|
|
|
func NewQueryServer(clientCtx client.Context, cfg config.Config) ServiceServer {
|
|
return queryServer{
|
|
clientCtx: clientCtx,
|
|
cfg: cfg,
|
|
}
|
|
}
|
|
|
|
func (s queryServer) Config(ctx context.Context, _ *ConfigRequest) (*ConfigResponse, error) {
|
|
sdkCtx := sdk.UnwrapSDKContext(ctx)
|
|
|
|
return &ConfigResponse{
|
|
MinimumGasPrice: sdkCtx.MinGasPrices().String(),
|
|
PruningKeepRecent: s.cfg.PruningKeepRecent,
|
|
PruningInterval: s.cfg.PruningInterval,
|
|
HaltHeight: s.cfg.HaltHeight,
|
|
}, nil
|
|
}
|
|
|
|
func (s queryServer) Status(ctx context.Context, _ *StatusRequest) (*StatusResponse, error) {
|
|
sdkCtx := sdk.UnwrapSDKContext(ctx)
|
|
|
|
blockTime := sdkCtx.BlockTime()
|
|
|
|
return &StatusResponse{
|
|
// TODO: Get earliest version from store.
|
|
//
|
|
// Ref: ...
|
|
// EarliestStoreHeight: sdkCtx.MultiStore(),
|
|
Height: uint64(sdkCtx.BlockHeight()),
|
|
Timestamp: &blockTime,
|
|
AppHash: sdkCtx.BlockHeader().AppHash,
|
|
ValidatorHash: sdkCtx.BlockHeader().NextValidatorsHash,
|
|
}, nil
|
|
}
|