Documentation ¶
Index ¶
- type ResponseSubmit
- type Router
- type RouterInstance
- func (r *RouterInstance) Query(ctx context.Context, subnetId string, query []byte, ...) (*core.ResultABCIQuery, error)
- func (r *RouterInstance) Route(account *url.URL) (string, error)
- func (r *RouterInstance) Submit(ctx context.Context, subnetId string, tx []byte, pretend, async bool) (*ResponseSubmit, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ResponseSubmit ¶
type ResponseSubmit struct { Code uint32 Data []byte Log string Info string Codespace string MempoolError string }
ResponseSubmit is the response from a call to Submit.
type Router ¶
type Router interface { Route(account *url.URL) (string, error) Query(ctx context.Context, subnet string, query []byte, opts client.ABCIQueryOptions) (*core.ResultABCIQuery, error) Submit(ctx context.Context, subnet string, tx []byte, pretend, async bool) (*ResponseSubmit, error) }
Router defines a basic interface for routing and sending transactions.
TODO Route and Send should probably be handled separately.
type RouterInstance ¶
type RouterInstance struct { *config.Network ConnectionManager connections.ConnectionManager }
RouterInstance sends transactions to remote nodes via RPC calls.
func (*RouterInstance) Query ¶
func (r *RouterInstance) Query(ctx context.Context, subnetId string, query []byte, opts client.ABCIQueryOptions) (*core.ResultABCIQuery, error)
Query queries the specified subnet. If the subnet matches this network's ID, the transaction is broadcasted via the local client. Otherwise the transaction is broadcasted via an RPC client.
func (*RouterInstance) Route ¶
func (r *RouterInstance) Route(account *url.URL) (string, error)
Route routes the account using modulo routing.
func (*RouterInstance) Submit ¶
func (r *RouterInstance) Submit(ctx context.Context, subnetId string, tx []byte, pretend, async bool) (*ResponseSubmit, error)
Submit submits the transaction to the specified subnet. If the subnet matches this network's ID, the transaction is broadcasted via the local client. Otherwise the transaction is broadcasted via an RPC client.