Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AggchainProofFlow ¶
type AggchainProofFlow interface {
// GenerateAggchainProof generates an Aggchain proof
GenerateAggchainProof(
ctx context.Context,
lastProvenBlock, toBlock uint64,
certBuildParams *types.CertificateBuildParams) (*types.AggchainProof, error)
}
AggchainProofFlow is the interface for the Aggchain proof flow
type AggchainProofGeneration ¶
type AggchainProofGeneration interface {
GenerateAggchainProof(ctx context.Context, fromBlock, toBlock uint64) (*types.SP1StarkProof, error)
}
ProofGeneration is the interface for generating Aggchain proofs
type AggchainProofGenerationTool ¶
type AggchainProofGenerationTool struct {
// contains filtered or unexported fields
}
AggchainProofGenerationTool is a tool to generate Aggchain proofs
func NewAggchainProofGenerationTool ¶
func NewAggchainProofGenerationTool( ctx context.Context, logger *log.Logger, cfg Config, l1Client aggkittypes.BaseEthereumClienter, l2Client aggkittypes.BaseEthereumClienter, l2Syncer types.L2BridgeSyncer, l1InfoTreeSyncer types.L1InfoTreeSyncer, ) (*AggchainProofGenerationTool, error)
NewAggchainProofGenerationTool creates a new AggchainProofGenerationTool
func (*AggchainProofGenerationTool) GenerateAggchainProof ¶
func (a *AggchainProofGenerationTool) GenerateAggchainProof( ctx context.Context, lastProvenBlock, maxEndBlock uint64) (*types.SP1StarkProof, error)
GenerateAggchainProof generates an Aggchain proof
func (*AggchainProofGenerationTool) GetRPCServices ¶
func (a *AggchainProofGenerationTool) GetRPCServices() []rpc.Service
GetRPCServices returns the list of services that the RPC provider exposes
type AggchainProofGenerationToolRPC ¶
type AggchainProofGenerationToolRPC struct {
// contains filtered or unexported fields
}
AggsenderRPC is the RPC interface for the aggsender
func NewAggchainProofGenerationToolRPC ¶
func NewAggchainProofGenerationToolRPC( tool AggchainProofGeneration) *AggchainProofGenerationToolRPC
NewAggchainProofGenerationToolRPC creates a new AggchainProofGenerationToolRPC
func (*AggchainProofGenerationToolRPC) GenerateAggchainProof ¶
func (a *AggchainProofGenerationToolRPC) GenerateAggchainProof( lastProvenBlock, requestedEndBlock uint64) (interface{}, rpc.Error)
GenerateAggchainProof generates an Aggchain proof curl -X POST http://localhost:5576/ -H "Content-Type: application/json" \ -d '{"method":"aggkit_generateAggchainProof", "params":[lastProvenBlock, requestedEndBlock], "id":1}'
type Config ¶
type Config struct {
// GlobalExitRootL1Addr is the address of the GlobalExitRootManager contract on L1
GlobalExitRootL1Addr common.Address `mapstructure:"GlobalExitRootL1Addr"`
// AggkitProverClient is the AggkitProver client configuration
AggkitProverClient *aggkitgrpc.ClientConfig `mapstructure:"AggkitProverClient"`
// GlobalExitRootL2Addr is the address of the GlobalExitRootManager contract on l2 sovereign chain
// this address is needed for the AggchainProof mode of the AggSender
GlobalExitRootL2Addr common.Address `mapstructure:"GlobalExitRootL2"`
// SovereignRollupAddr is the address of the sovereign rollup contract on L1
SovereignRollupAddr common.Address `mapstructure:"SovereignRollupAddr"`
// AgglayerBridgeL2Addr is the address of the bridge L2 sovereign contract on L2 sovereign chain
AgglayerBridgeL2Addr common.Address `mapstructure:"AgglayerBridgeL2Addr"`
}
Config is the configuration for the AggchainProofGenerationTool
type OptimisticModeQuerierAlwaysOff ¶ added in v0.4.0
type OptimisticModeQuerierAlwaysOff struct{}
func (*OptimisticModeQuerierAlwaysOff) IsOptimisticModeOn ¶ added in v0.4.0
func (o *OptimisticModeQuerierAlwaysOff) IsOptimisticModeOn() (bool, error)