Documentation ¶
Index ¶
- Variables
- type RpcService
- func (s RpcService) All(ctx context.Context, networkId utils.NetworkID, limit uint, offset uint) ([]*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) Get(ctx context.Context, networkId utils.NetworkID, addresses []common.Address) ([]*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) GetByBlockNumber(ctx context.Context, networkId utils.NetworkID, blockNumber *big.Int, ...) ([]*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) GetByDeployerAddress(ctx context.Context, networkId utils.NetworkID, address common.Address, ...) ([]*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) GetByStandards(ctx context.Context, networkId utils.NetworkID, standards []string, limit uint, ...) ([]*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) GetByTransactionHash(ctx context.Context, networkId utils.NetworkID, hash common.Hash) (*rpctypes.Contract, *zenrpc.Error)
- func (s RpcService) Invoke(ctx context.Context, w http.ResponseWriter, method string, ...) zenrpc.Response
- func (RpcService) SMD() smd.ServiceInfo
Constants ¶
This section is empty.
Variables ¶
View Source
var RPC = struct { RpcService struct{ All, GetByDeployerAddress, GetByBlockNumber, GetByTransactionHash, GetByStandards, Get string } }{ RpcService: struct{ All, GetByDeployerAddress, GetByBlockNumber, GetByTransactionHash, GetByStandards, Get string }{ All: "all", GetByDeployerAddress: "getbydeployeraddress", GetByBlockNumber: "getbyblocknumber", GetByTransactionHash: "getbytransactionhash", GetByStandards: "getbystandards", Get: "get", }, }
Functions ¶
This section is empty.
Types ¶
type RpcService ¶
type RpcService struct { zenrpc.Service // contains filtered or unexported fields }
func NewRpcService ¶
func NewRpcService(db db.Adapter, pool *clients.ClientPool, nats *nats.Conn, cache *cache.Redis) *RpcService
func (RpcService) GetByBlockNumber ¶
func (RpcService) GetByDeployerAddress ¶
func (RpcService) GetByStandards ¶
func (RpcService) GetByTransactionHash ¶
func (RpcService) Invoke ¶
func (s RpcService) Invoke(ctx context.Context, w http.ResponseWriter, method string, params json.RawMessage) zenrpc.Response
Invoke is as generated code from zenrpc cmd
func (RpcService) SMD ¶
func (RpcService) SMD() smd.ServiceInfo
Click to show internal directories.
Click to hide internal directories.