Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateSubmissions ¶
func CreateSubmissions(up StreamUpdate) ([]xchain.Submission, error)
CreateSubmissions splits the update into multiple submissions that are each small enough (wrt calldata and gas) to be submitted on-chain.
Types ¶
type Config ¶
type Config struct { RPCEndpoints xchain.RPCEndpoints PrivateKey string HaloURL string Network netconf.ID MonitoringAddr string }
func DefaultConfig ¶
func DefaultConfig() Config
type CreateFunc ¶
type CreateFunc func(streamUpdate StreamUpdate) ([]xchain.Submission, error)
CreateFunc is a function that creates one or more submissions from the given stream update.
type SendFunc ¶
type SendFunc func(ctx context.Context, submission xchain.Submission) error
SendFunc sends a submission to the destination chain by invoking "xsubmit" on portal contract.
type Sender ¶
type Sender struct {
// contains filtered or unexported fields
}
Sender uses txmgr to send transactions to the destination chain.
func NewSender ¶
func NewSender( network netconf.ID, chain netconf.Chain, rpcClient ethclient.Client, privateKey ecdsa.PrivateKey, chainNames map[xchain.ChainVersion]string, ) (Sender, error)
NewSender creates a new sender that uses txmgr to send transactions to the destination chain.
func (Sender) SendTransaction ¶
SendTransaction sends the submission to the destination chain.
type StreamUpdate ¶
type Worker ¶
type Worker struct {
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.