class EthereumSequencerDriverFactory extends SequencerDriverFactory

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EthereumSequencerDriverFactory
  2. SequencerDriverFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EthereumSequencerDriverFactory()

Type Members

  1. type ConfigType = EthereumLedgerNodeConfig[SequencerContractConfig]

    The Scala type holding the driver-specific configuration

    The Scala type holding the driver-specific configuration

    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def configParser: ConfigReader[EthereumLedgerNodeConfig[SequencerContractConfig]]

    Parser for the driver-specific configuration.

    Parser for the driver-specific configuration.

    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory
    Annotations
    @nowarn() @nowarn()
  7. def configWriter(confidential: Boolean): ConfigWriter[EthereumLedgerNodeConfig[SequencerContractConfig]]

    Serializer for the driver-specific configuration.

    Serializer for the driver-specific configuration.

    confidential

    Indicates whether confidential information (e.g. passwords) should be written in a shaded form without disclosing the actual plain information.

    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory
    Annotations
    @nowarn() @nowarn()
  8. def create(config: EthereumLedgerNodeConfig[SequencerContractConfig], nonStandardConfig: Boolean, timeProvider: TimeProvider, firstBlockHeight: Option[Long], domainTopologyManagerId: String, loggerFactory: NamedLoggerFactory)(implicit executionContext: ExecutionContext, materializer: Materializer): SequencerDriver

    Creates a new ledger driver instance

    Creates a new ledger driver instance

    config

    The driver-specific configuration.

    nonStandardConfig

    Whether to be lax in enforcing certain configuration constraints such as required external component versions.

    timeProvider

    Time provider to obtain time readings from. If usesTimeProvider returns true, must be used instead of system time so that we can modify time in tests.

    firstBlockHeight

    Initial block from which the driver will start serving the block subscription.

    domainTopologyManagerId

    The Canton identifier of the Topology Manager for the domain being supported.

    loggerFactory

    A logger factory through which all logging should be done. Useful in tests as we can capture log entries and check them.

    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def name: String

    The name of the ledger driver Used in Canton configurations to specify the ledger driver as in type = name.

    The name of the ledger driver Used in Canton configurations to specify the ledger driver as in type = name.

    sequencer {
      type = "foobar"
      config = { config specific to driver foobar }
    }
    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. def usesTimeProvider: Boolean

    Returns whether the driver produced by create will use the com.digitalasset.canton.time.TimeProvider for generating timestamps on com.digitalasset.canton.domain.block.RawLedgerBlock.RawBlockEvent.Send events.

    Returns whether the driver produced by create will use the com.digitalasset.canton.time.TimeProvider for generating timestamps on com.digitalasset.canton.domain.block.RawLedgerBlock.RawBlockEvent.Send events.

    This information is used to prevent using the driver in an environment that needs to control time, e.g., for testing.

    Definition Classes
    EthereumSequencerDriverFactorySequencerDriverFactory
  21. def version: Int
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from SequencerDriverFactory

Inherited from AnyRef

Inherited from Any

Ungrouped