Documentation ¶
Overview ¶
Package domains contains adapters for each domain
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrNoUpdate = errors.New("no update produced")
ErrNoUpdate indicates no update has been produced.
Functions ¶
This section is empty.
Types ¶
type BondingManagerContract ¶ added in v0.0.171
type BondingManagerContract interface { // GetAgentStatus returns the current agent status for the given agent. GetAgentStatus(ctx context.Context, signer signer.Signer) (types.AgentStatus, error) // GetAgentRoot gets the current agent root GetAgentRoot(ctx context.Context) ([32]byte, error) // GetProof gets the proof that the agent is in the Agent Merkle Tree GetProof(ctx context.Context, bondedAgentSigner signer.Signer) ([][32]byte, error) }
BondingManagerContract contains the interface for the bonding manager.
type DestinationContract ¶ added in v0.0.60
type DestinationContract interface { // Execute executes a message on the destination. Execute(transactor *bind.TransactOpts, message types.Message, originProof [32][32]byte, snapshotProof [][32]byte, index *big.Int, gasLimit uint64) (tx *ethTypes.Transaction, err error) // AttestationsAmount retrieves the number of attestations submitted to the destination. // AttestationsAmount retrieves the number of attestations submitted to the destination. AttestationsAmount(ctx context.Context) (uint64, error) // GetAttestationNonce gets the nonce of the attestation by snap root GetAttestationNonce(ctx context.Context, snapRoot [32]byte) (uint32, error) // MessageStatus takes a message and returns whether it has been executed or not. 0: None, 1: Failed, 2: Success. MessageStatus(ctx context.Context, message types.Message) (uint8, error) }
DestinationContract contains the interface for the destination.
type DomainClient ¶
type DomainClient interface { // Name gets the name of the client. This can be used for logging. Name() string // Config gets the config that was used to create the client. Config() config.DomainConfig // BlockNumber gets the latest block BlockNumber(ctx context.Context) (uint32, error) // Origin retrieves a handle for the origin contract Origin() OriginContract // Summit is the summit Summit() SummitContract // Destination retrieves a handle for the destination contract Destination() DestinationContract // LightManager retrieves a handle for the light manager contract LightManager() LightManagerContract // BondingManager retrieves a handle for the bonding manager contract BondingManager() BondingManagerContract // LightInbox retrieves a handle for the light inbox contract LightInbox() LightInboxContract // Inbox retrieves a handle for the inbox contract Inbox() InboxContract }
DomainClient represents a client used for interacting with contracts in a particular domain. The goal of a domain is that the particulars of interacting with an eth vs a solana contract are abstracted away and can be done through a set of common interfaces.
type InboxContract ¶ added in v0.0.171
type InboxContract interface { // SubmitSnapshot submits a snapshot to the inbox (via the Inbox). SubmitSnapshot(transactor *bind.TransactOpts, signer signer.Signer, encodedSnapshot []byte, signature signer.Signature) (tx *ethTypes.Transaction, err error) }
InboxContract contains the interface for the inbox.
type LightInboxContract ¶ added in v0.0.171
type LightInboxContract interface { // SubmitAttestation submits an attestation to the destination chain (via the light inbox contract) SubmitAttestation( transactor *bind.TransactOpts, attPayload []byte, signature signer.Signature, agentRoot [32]byte, snapGas []*big.Int, ) (tx *ethTypes.Transaction, err error) }
LightInboxContract contains the interface for the light inbox.
type LightManagerContract ¶ added in v0.0.171
type LightManagerContract interface { // GetAgentStatus returns the current agent status for the given agent. GetAgentStatus(ctx context.Context, signer signer.Signer) (types.AgentStatus, error) // GetAgentRoot gets the current agent root GetAgentRoot(ctx context.Context) ([32]byte, error) // UpdateAgentStatus updates the agent status on the remote chain. UpdateAgentStatus( ctx context.Context, unbondedSigner signer.Signer, bondedSigner signer.Signer, agentStatus types.AgentStatus, agentProof [][32]byte) error }
LightManagerContract contains the interface for the light manager.
type OriginContract ¶
type OriginContract interface { // SuggestLatestState gets the latest state on the origin SuggestLatestState(ctx context.Context) (types.State, error) // SuggestState gets the state on the origin with the given nonce if it exists SuggestState(ctx context.Context, nonce uint32) (types.State, error) }
OriginContract represents the origin contract on a particular chain.
type PingPongClientContract ¶ added in v0.0.110
type PingPongClientContract interface { // DoPing sends a ping message through the PingPongClient. DoPing(ctx context.Context, signer signer.Signer, destination uint32, recipient common.Address, pings uint16) error WatchPingSent(ctx context.Context, sink chan<- *pingpongclient.PingPongClientPingSent) (event.Subscription, error) WatchPongReceived(ctx context.Context, sink chan<- *pingpongclient.PingPongClientPongReceived) (event.Subscription, error) }
PingPongClientContract contains the interface for the ping pong test client.
type SummitContract ¶ added in v0.0.130
type SummitContract interface { // GetLatestState gets the latest state signed by any guard for the given origin GetLatestState(ctx context.Context, origin uint32) (types.State, error) // GetLatestAgentState gets the latest state signed by the bonded signer for the given origin GetLatestAgentState(ctx context.Context, origin uint32, bondedAgentSigner signer.Signer) (types.State, error) // GetLatestNotaryAttestation gets the latest notary attestation signed by the notary and posted on Summit. GetLatestNotaryAttestation(ctx context.Context, notarySigner signer.Signer) (types.NotaryAttestation, error) // WatchAttestationSaved looks for attesation saved events WatchAttestationSaved(ctx context.Context, sink chan<- *summit.SummitAttestationSaved) (event.Subscription, error) }
SummitContract contains the interface for the summit.
type TestClientContract ¶ added in v0.0.105
type TestClientContract interface { // SendMessage sends a message through the TestClient. SendMessage(ctx context.Context, signer signer.Signer, destination uint32, recipient common.Address, optimisticSeconds uint32, gasLimit uint64, version uint32, message []byte) error }
TestClientContract contains the interface for the test client.