class EthereumLedgerConnection extends NamedLogging with AutoCloseable with HasDegradationState[Warn]

Wrapper class that calls the generated methods of the generated web3j code. This class supports Sequencer.sol revisions 1.0.0 and 1.0.1.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EthereumLedgerConnection
  2. HasDegradationState
  3. AutoCloseable
  4. NamedLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EthereumLedgerConnection(conf: EthereumLedgerNodeConfig[AlreadyDeployed], domainManagerId: DomainTopologyManagerId, clock: Clock, loggingConfig: LoggingConfig, loggerFactory: NamedLoggerFactory, skipInitTransactions: Boolean = false)(implicit executionContext: ExecutionContext)

Value Members

  1. def authorizeEthAccount(toAuthorize: String)(implicit traceContext: TraceContext): Future[TransactionHash]
  2. def close(): Unit
    Definition Classes
    EthereumLedgerConnection → AutoCloseable
  3. val conf: EthereumLedgerNodeConfig[AlreadyDeployed]
  4. def degradationOccurred(error: Warn): Unit

    Track that the given error has occurred for the specified key

    Track that the given error has occurred for the specified key

    Definition Classes
    HasDegradationState
  5. def getDegradationState: Option[Warn]
    Definition Classes
    HasDegradationState
  6. def isDegraded: Boolean
    Definition Classes
    HasDegradationState
  7. val loggerFactory: NamedLoggerFactory
  8. val nonceManager: NonceManager
  9. def readSequencerBlocksFlowable(configuredOrPersistedFirstBlock: BlockHeight): Flowable[UnparsedBlockContents]

    Read sequencer related events block by block from the Ethereum ledger.

    Read sequencer related events block by block from the Ethereum ledger. The events are provided as instances of the raw web3j generated java classes. These will likely need to be converted own events however this is left to the caller as it can result in deserialization errors.

    Annotations
    @SuppressWarnings()
  10. def registerMember(member: String)(implicit traceContext: TraceContext): Future[TransactionHash]
  11. def resolveDegradationIfExists(message: (Warn) => String): Unit
    Definition Classes
    HasDegradationState
  12. def sendAsync(submissionRequest: SubmissionRequest, protocolVersion: ProtocolVersion)(implicit traceContext: TraceContext): Future[TransactionHash]
  13. def sequencer: Sequencer
    Annotations
    @VisibleForTesting()
  14. def status: Future[SequencerHealthStatus]
  15. val web3j: Web3j