Documentation
¶
Index ¶
- type Cluster
- type ClusterID
- type Common
- type ELNode
- type ExtensibleL1Network
- type ExtensibleL2Network
- type ExtensibleNetwork
- type ExtensibleSystem
- type Faucet
- type FaucetID
- type Keys
- type Kind
- type L1CLNode
- type L1CLNodeID
- type L1ELNode
- type L1ELNodeID
- type L1Network
- type L1NetworkID
- type L2Batcher
- type L2BatcherID
- type L2CLNode
- type L2CLNodeID
- type L2Challenger
- type L2ChallengerID
- type L2Deployment
- type L2ELNode
- type L2ELNodeID
- type L2Network
- type L2NetworkID
- type L2Proposer
- type L2ProposerID
- type Network
- type Option
- type Orchestrator
- type RollupAPI
- type Superchain
- type SuperchainDeployment
- type SuperchainID
- type Supervisor
- type SupervisorID
- type System
- type User
- type UserID
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cluster ¶
type Cluster interface {
Common
ID() ClusterID
DependencySet() depset.DependencySet
}
Cluster represents a set of chains that interop with each other. This may include L1 chains (although potentially not two-way interop due to consensus-layer limitations).
type ClusterID ¶
type ClusterID genericID
ClusterID identifies a Cluster by name, is type-safe, and can be value-copied and used as map key.
func SortClusterIDs ¶
func (ClusterID) MarshalText ¶
func (*ClusterID) UnmarshalText ¶
type ExtensibleL1Network ¶
type ExtensibleL1Network interface {
ExtensibleNetwork
L1Network
AddL1ELNode(v L1ELNode)
AddL1CLNode(v L1CLNode)
}
type ExtensibleL2Network ¶
type ExtensibleL2Network interface {
ExtensibleNetwork
L2Network
AddL2Batcher(v L2Batcher)
AddL2Proposer(v L2Proposer)
AddL2Challenger(v L2Challenger)
AddL2CLNode(v L2CLNode)
AddL2ELNode(v L2ELNode)
}
ExtensibleL2Network is an optional extension interface for L2Network, for adding new components to the chain. Used during test-setup, not generally during test execution.
type ExtensibleNetwork ¶
type ExtensibleSystem ¶
type ExtensibleSystem interface {
System
AddSuperchain(v Superchain)
AddCluster(v Cluster)
AddL1Network(v L1Network)
AddL2Network(v L2Network)
AddSupervisor(v Supervisor)
}
ExtensibleSystem is an extension-interface to add new components to the system. Regular tests should not be modifying the system. Test gates may use this to remediate any shortcomings of an existing system.
type FaucetID ¶
type FaucetID idWithChain
FaucetID identifies a Faucet by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortFaucetIDs ¶
func (FaucetID) MarshalText ¶
func (*FaucetID) UnmarshalText ¶
type Kind ¶
type Kind string
Kind represents a kind of component, this is used to make each ID unique, even when encoded as text.
const ClusterKind Kind = "Cluster"
const FaucetKind Kind = "Faucet"
const L1CLNodeKind Kind = "L1CLNode"
const L1ELNodeKind Kind = "L1ELNode"
const L1NetworkKind Kind = "L1Network"
const L2BatcherKind Kind = "L2Batcher"
const L2CLNodeKind Kind = "L2CLNode"
const L2ChallengerKind Kind = "L2Challenger"
const L2ELNodeKind Kind = "L2ELNode"
const L2NetworkKind Kind = "L2Network"
const L2ProposerKind Kind = "L2Proposer"
const SuperchainKind Kind = "Superchain"
const SupervisorKind Kind = "Supervisor"
const UserKind Kind = "User"
func (Kind) MarshalText ¶
func (*Kind) UnmarshalText ¶
type L1CLNode ¶
type L1CLNode interface {
Common
ID() L1CLNodeID
BeaconClient() apis.BeaconClient
}
L1CLNode is a L1 ethereum consensus-layer node, aka Beacon node. This node may not be a full beacon node, and instead run a mock L1 consensus node.
type L1CLNodeID ¶
type L1CLNodeID idWithChain
L1CLNodeID identifies a L1CLNode by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL1CLNodeIDs ¶
func SortL1CLNodeIDs(ids []L1CLNodeID) []L1CLNodeID
func (L1CLNodeID) MarshalText ¶
func (id L1CLNodeID) MarshalText() ([]byte, error)
func (L1CLNodeID) String ¶
func (id L1CLNodeID) String() string
func (*L1CLNodeID) UnmarshalText ¶
func (id *L1CLNodeID) UnmarshalText(data []byte) error
type L1ELNode ¶
type L1ELNode interface {
ID() L1ELNodeID
ELNode
}
L1ELNode is a L1 ethereum execution-layer node
type L1ELNodeID ¶
type L1ELNodeID idWithChain
L1ELNodeID identifies a L1ELNode by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL1ELNodeIDs ¶
func SortL1ELNodeIDs(ids []L1ELNodeID) []L1ELNodeID
func (L1ELNodeID) MarshalText ¶
func (id L1ELNodeID) MarshalText() ([]byte, error)
func (L1ELNodeID) String ¶
func (id L1ELNodeID) String() string
func (*L1ELNodeID) UnmarshalText ¶
func (id *L1ELNodeID) UnmarshalText(data []byte) error
type L1Network ¶
type L1Network interface {
Network
ID() L1NetworkID
L1ELNode(id L1ELNodeID) L1ELNode
L1CLNode(id L1CLNodeID) L1CLNode
L1ELNodes() []L1ELNodeID
L1CLNodes() []L1CLNodeID
}
L1Network represents a L1 chain, a collection of configuration and node resources.
type L1NetworkID ¶
type L1NetworkID idOnlyChainID
L1NetworkID identifies a L1Network by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL1NetworkIDs ¶
func SortL1NetworkIDs(ids []L1NetworkID) []L1NetworkID
func (L1NetworkID) ChainID ¶ added in v1.13.1
func (id L1NetworkID) ChainID() eth.ChainID
func (L1NetworkID) MarshalText ¶
func (id L1NetworkID) MarshalText() ([]byte, error)
func (L1NetworkID) String ¶
func (id L1NetworkID) String() string
func (*L1NetworkID) UnmarshalText ¶
func (id *L1NetworkID) UnmarshalText(data []byte) error
type L2Batcher ¶
type L2Batcher interface {
Common
ID() L2BatcherID
}
L2Batcher represents an L2 batch-submission service, posting L2 data of an L2 to L1.
type L2BatcherID ¶
type L2BatcherID idWithChain
L2BatcherID identifies a L2Batcher by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2BatcherIDs ¶
func SortL2BatcherIDs(ids []L2BatcherID) []L2BatcherID
func (L2BatcherID) MarshalText ¶
func (id L2BatcherID) MarshalText() ([]byte, error)
func (L2BatcherID) String ¶
func (id L2BatcherID) String() string
func (*L2BatcherID) UnmarshalText ¶
func (id *L2BatcherID) UnmarshalText(data []byte) error
type L2CLNode ¶
type L2CLNode interface {
Common
ID() L2CLNodeID
RollupAPI() RollupAPI
}
L2CLNode is a L2 ethereum consensus-layer node
type L2CLNodeID ¶
type L2CLNodeID idWithChain
L2CLNodeID identifies a L2CLNode by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2CLNodeIDs ¶
func SortL2CLNodeIDs(ids []L2CLNodeID) []L2CLNodeID
func (L2CLNodeID) MarshalText ¶
func (id L2CLNodeID) MarshalText() ([]byte, error)
func (L2CLNodeID) String ¶
func (id L2CLNodeID) String() string
func (*L2CLNodeID) UnmarshalText ¶
func (id *L2CLNodeID) UnmarshalText(data []byte) error
type L2Challenger ¶
type L2Challenger interface {
Common
ID() L2ChallengerID
}
type L2ChallengerID ¶
type L2ChallengerID idWithChain
L2ChallengerID identifies a L2Challenger by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2ChallengerIDs ¶
func SortL2ChallengerIDs(ids []L2ChallengerID) []L2ChallengerID
func (L2ChallengerID) MarshalText ¶
func (id L2ChallengerID) MarshalText() ([]byte, error)
func (L2ChallengerID) String ¶
func (id L2ChallengerID) String() string
func (*L2ChallengerID) UnmarshalText ¶
func (id *L2ChallengerID) UnmarshalText(data []byte) error
type L2Deployment ¶
type L2ELNode ¶
type L2ELNode interface {
ID() L2ELNodeID
ELNode
}
L2ELNode is a L2 ethereum execution-layer node
type L2ELNodeID ¶
type L2ELNodeID idWithChain
L2ELNodeID identifies a L2ELNode by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2ELNodeIDs ¶
func SortL2ELNodeIDs(ids []L2ELNodeID) []L2ELNodeID
func (L2ELNodeID) MarshalText ¶
func (id L2ELNodeID) MarshalText() ([]byte, error)
func (L2ELNodeID) String ¶
func (id L2ELNodeID) String() string
func (*L2ELNodeID) UnmarshalText ¶
func (id *L2ELNodeID) UnmarshalText(data []byte) error
type L2Network ¶
type L2Network interface {
Network
ID() L2NetworkID
RollupConfig() *rollup.Config
Deployment() L2Deployment
Keys() Keys
Superchain() Superchain
L1() L1Network
Cluster() Cluster
L2Batcher(id L2BatcherID) L2Batcher
L2Proposer(id L2ProposerID) L2Proposer
L2Challenger(id L2ChallengerID) L2Challenger
L2CLNode(id L2CLNodeID) L2CLNode
L2ELNode(id L2ELNodeID) L2ELNode
L2Batchers() []L2BatcherID
L2Proposers() []L2ProposerID
L2Challengers() []L2ChallengerID
L2CLNodes() []L2CLNodeID
L2ELNodes() []L2ELNodeID
}
L2Network represents a L2 chain, a collection of configuration and node resources. There is an extension-interface ExtensibleL2Network for adding new components to the chain.
type L2NetworkID ¶
type L2NetworkID idOnlyChainID
L2NetworkID identifies a L2Network by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2NetworkIDs ¶
func SortL2NetworkIDs(ids []L2NetworkID) []L2NetworkID
func (L2NetworkID) ChainID ¶ added in v1.13.1
func (id L2NetworkID) ChainID() eth.ChainID
func (L2NetworkID) MarshalText ¶
func (id L2NetworkID) MarshalText() ([]byte, error)
func (L2NetworkID) String ¶
func (id L2NetworkID) String() string
func (*L2NetworkID) UnmarshalText ¶
func (id *L2NetworkID) UnmarshalText(data []byte) error
type L2Proposer ¶
type L2Proposer interface {
Common
ID() L2ProposerID
}
L2Proposer is a L2 output proposer, posting claims of L2 state to L1.
type L2ProposerID ¶
type L2ProposerID idWithChain
L2ProposerID identifies a L2Proposer by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortL2ProposerIDs ¶
func SortL2ProposerIDs(ids []L2ProposerID) []L2ProposerID
func (L2ProposerID) MarshalText ¶
func (id L2ProposerID) MarshalText() ([]byte, error)
func (L2ProposerID) String ¶
func (id L2ProposerID) String() string
func (*L2ProposerID) UnmarshalText ¶
func (id *L2ProposerID) UnmarshalText(data []byte) error
type Network ¶
type Network interface {
Common
ChainID() eth.ChainID
ChainConfig() *params.ChainConfig
Faucet() Faucet
User(id UserID) User
Users() []UserID
}
Network is an interface to an ethereum chain and its resources, with common properties between L1 and L2. For L1 or L2 specifics, see L1Network and L2Network extensions. A network hosts configuration resources and tracks participating nodes.
type Option ¶
type Option func(orch Orchestrator)
Option is used to define a function that inspects and/or changes a System.
type Orchestrator ¶
type Orchestrator interface {
// P is the test-handle of the orchestrator.
// This may not be a Go-test handle.
// Orchestrators may be instantiated by dev-tools or test-package TestMain functions.
P() devtest.P
// Hydrate adds all services that the orchestrator is aware of to the given system.
// An orchestrator may be asked to hydrate different systems, one for each test.
Hydrate(sys ExtensibleSystem)
}
Orchestrator is the base interface for all system orchestrators. It imposes some common things across all orchestrators, but may also have optional extensions, that not every type of backend might support.
type RollupAPI ¶
type RollupAPI interface {
SyncStatus(ctx context.Context) (*eth.SyncStatus, error)
}
type Superchain ¶
type Superchain interface {
Common
ID() SuperchainID
Deployment() SuperchainDeployment
}
Superchain is a collection of L2 chains with common rules and shared configuration on L1
type SuperchainDeployment ¶
type SuperchainID ¶
type SuperchainID genericID
SuperchainID identifies a Superchain by name, is type-safe, and can be value-copied and used as map key.
func SortSuperchainIDs ¶
func SortSuperchainIDs(ids []SuperchainID) []SuperchainID
func (SuperchainID) MarshalText ¶
func (id SuperchainID) MarshalText() ([]byte, error)
func (SuperchainID) String ¶
func (id SuperchainID) String() string
func (*SuperchainID) UnmarshalText ¶
func (id *SuperchainID) UnmarshalText(data []byte) error
type Supervisor ¶
type Supervisor interface {
Common
ID() SupervisorID
AdminAPI() apis.SupervisorAdminAPI
QueryAPI() apis.SupervisorQueryAPI
}
Supervisor is an interop service, used to cross-verify messages between chains.
type SupervisorID ¶
type SupervisorID genericID
SupervisorID identifies a Supervisor by name and chainID, is type-safe, and can be value-copied and used as map key.
func SortSupervisorIDs ¶
func SortSupervisorIDs(ids []SupervisorID) []SupervisorID
func (SupervisorID) MarshalText ¶
func (id SupervisorID) MarshalText() ([]byte, error)
func (SupervisorID) String ¶
func (id SupervisorID) String() string
func (*SupervisorID) UnmarshalText ¶
func (id *SupervisorID) UnmarshalText(data []byte) error
type System ¶
type System interface {
Common
Superchain(id SuperchainID) Superchain
Cluster(id ClusterID) Cluster
L1Network(id L1NetworkID) L1Network
L2Network(id L2NetworkID) L2Network
Superchains() []SuperchainID
Clusters() []ClusterID
L1Networks() []L1NetworkID
L2Networks() []L2NetworkID
// L1NetworkID looks up the L1NetworkID (system name) by eth ChainID
L1NetworkID(id eth.ChainID) L1NetworkID
// L2NetworkID looks up the L2NetworkID (system name) by eth ChainID
L2NetworkID(id eth.ChainID) L2NetworkID
Supervisor(id SupervisorID) Supervisor
Supervisors() []SupervisorID
}
System represents a collection of L1 and L2 chains, any superchains or clusters, and any peripherals.
type User ¶
type User interface {
Common
ID() UserID
Key() *ecdsa.PrivateKey
Address() common.Address
ChainID() eth.ChainID
// EL is the default node used to interact with the chain
EL() ELNode
}
User represents a single user-key, specific to a single chain, with a default connection to interact with the execution-layer of said chain.
type UserID ¶
type UserID idWithChain
UserID identifies a User by name and chainID, is type-safe, and can be value-copied and used as map key.