Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var OpcodesServiceName rest.ServiceName = "opcodes"
OpcodesServiceName defines the service name for the Opcodes service.
Functions ¶
This section is empty.
Types ¶
type InputNetworkAddress ¶
type InputNetworkAddress struct { NetworkId utils.NetworkID `json:"networkId" path:"networkId" maxLength:"2" example:"1" doc:"Network ID"` // Network ID specifies the blockchain network (e.g., 1 for Ethereum Mainnet) Address common.Address `` // Address specifies the account address /* 134-byte string literal not displayed */ }
InputNetworkAddress represents the input parameters required to specify a network and address.
type InputNetworkPaginated ¶
type InputNetworkPaginated struct { NetworkId utils.NetworkID `json:"networkId" path:"networkId" maxLength:"2" example:"1" doc:"Network ID"` // Network ID specifies the blockchain network (e.g., 1 for Ethereum Mainnet) Limit uint `json:"limit" query:"limit" example:"10" doc:"Limit for the number of accounts to return"` // Limit specifies the number of accounts to return Offset uint `json:"offset" query:"offset" example:"0" doc:"Offset for pagination"` // Offset specifies the offset for pagination }
InputNetworkPaginated represents the input parameters required to specify a network, limit and offset.
type InputNetworkTagsPaginated ¶
type InputNetworkTagsPaginated struct { NetworkId utils.NetworkID `json:"networkId" path:"networkId" maxLength:"2" example:"1" doc:"Network ID"` // Network ID specifies the blockchain network (e.g., 1 for Ethereum Mainnet) Tags []string `json:"tags" query:"tags" example:"[\"burn\"]" doc:"Tags to filter accounts"` // Tags specifies the tags to filter accounts Limit uint `json:"limit" query:"limit" example:"10" doc:"Limit for the number of accounts to return"` // Limit specifies the number of accounts to return Offset uint `json:"offset" query:"offset" example:"0" doc:"Offset for pagination"` // Offset specifies the offset for pagination }
InputNetworkTagsPaginated represents the input parameters required to specify a network and tags with pagination.
type Namespace ¶
Namespace represents a service namespace containing configuration and dependencies for the Opcodes service.
func NewNamespace ¶
func NewNamespace(server *rest.Server, db db.Adapter, pool *clients.ClientPool, nats *nats.Conn, cache *cache.Redis) *Namespace
NewNamespace creates a new instance of Namespace with the provided server, database adapter, client pool, NATS connection, and Redis cache.
func (*Namespace) GetName ¶
func (s *Namespace) GetName() rest.ServiceName
GetName returns the service name for the Opcodes namespace.
func (*Namespace) RegisterHandlers ¶
RegisterHandlers registers all the necessary handlers for the Accounts namespace.