Versions in this module Expand all Collapse all v0 v0.0.2 Jan 9, 2026 v0.0.1 Jan 8, 2026 Changes in this version + type AliasArgs struct + Alias string + Endpoint string + type AliasChainArgs struct + Alias string + Chain string + type Client struct + Requester rpc.EndpointRequester + func NewClient(uri string) *Client + func (c *Client) Alias(ctx context.Context, endpoint, alias string, options ...rpc.Option) error + func (c *Client) AliasChain(ctx context.Context, chain, alias string, options ...rpc.Option) error + func (c *Client) DBGet(ctx context.Context, key []byte, options ...rpc.Option) ([]byte, error) + func (c *Client) GetChainAliases(ctx context.Context, chain string, options ...rpc.Option) ([]string, error) + func (c *Client) GetConfig(ctx context.Context, options ...rpc.Option) (interface{}, error) + func (c *Client) GetLoggerLevel(ctx context.Context, loggerName string, options ...rpc.Option) (map[string]LogAndDisplayLevels, error) + func (c *Client) ListVMs(ctx context.Context, options ...rpc.Option) (map[string]VMInfo, error) + func (c *Client) Load(ctx context.Context, path string, options ...rpc.Option) error + func (c *Client) LoadVMs(ctx context.Context, options ...rpc.Option) (map[ids.ID][]string, map[ids.ID]string, error) + func (c *Client) LockProfile(ctx context.Context, options ...rpc.Option) error + func (c *Client) MemoryProfile(ctx context.Context, options ...rpc.Option) error + func (c *Client) SetLoggerLevel(ctx context.Context, loggerName, logLevel, displayLevel string, ...) (map[string]LogAndDisplayLevels, error) + func (c *Client) Snapshot(ctx context.Context, path string, since uint64, options ...rpc.Option) (uint64, error) + func (c *Client) Stacktrace(ctx context.Context, options ...rpc.Option) error + func (c *Client) StartCPUProfiler(ctx context.Context, options ...rpc.Option) error + func (c *Client) StopCPUProfiler(ctx context.Context, options ...rpc.Option) error + type DBGetArgs struct + Key string + type DBGetReply struct + Value string + type GetChainAliasesArgs struct + Chain string + type GetChainAliasesReply struct + Aliases []string + type GetLoggerLevelArgs struct + LoggerName string + type GetTrackedChainsReply struct + TrackedChains []string + type ListVMsReply struct + VMs map[string]VMInfo + type LoadArgs struct + Path string + type LoadVMsReply struct + ChainsRetried int + FailedVMs map[ids.ID]string + NewVMs map[ids.ID][]string + type LogAndDisplayLevels struct + DisplayLevel log.Level + LogLevel log.Level + type LoggerLevelReply struct + LoggerLevels map[string]LogAndDisplayLevels + type SetLoggerLevelArgs struct + DisplayLevel *log.Level + LogLevel *log.Level + LoggerName string + type SetTrackedChainsArgs struct + Chains []string + type SetTrackedChainsReply struct + TrackedChains []string + type SnapshotArgs struct + Path string + Since uint64 + type SnapshotReply struct + Success bool + Version uint64 + type VMInfo struct + Aliases []string + ID string + Path string