Packages

trait eth extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. eth
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def blockNumber()(implicit ec: ExecutionContext): Future[BigInt]
  2. abstract def call(from: Option[EthAddress] = None, to: Option[EthAddress] = None, gas: Option[BigInt] = None, gasPrice: Option[BigInt] = None, value: Option[BigInt] = None, data: Option[Seq[Byte]] = None, blockNumber: BlockNumber = BlockNumber.Latest)(implicit ec: ExecutionContext): Future[Seq[Byte]]
  3. abstract def compileSolidity(solidityText: String)(implicit ec: ExecutionContext): Future[Map[String, Contract]]
  4. abstract def estimateGas(from: Option[EthAddress] = None, to: Option[EthAddress] = None, gas: Option[BigInt] = None, gasPrice: Option[BigInt] = None, value: Option[BigInt] = None, data: Option[Seq[Byte]] = None)(implicit ec: ExecutionContext): Future[BigInt]
  5. abstract def gasPrice()(implicit ec: ExecutionContext): Future[BigInt]
  6. abstract def getBalance(address: EthAddress, blockNumber: BlockNumber)(implicit ec: ExecutionContext): Future[BigInt]
  7. abstract def getBlockFilterChanges(filter: BlockFilter)(implicit ec: ExecutionContext): Future[Seq[EthHash]]
  8. abstract def getCode(address: EthAddress, blockNumber: BlockNumber)(implicit ec: ExecutionContext): Future[Seq[Byte]]
  9. abstract def getCompilers()(implicit ec: ExecutionContext): Future[Set[String]]
  10. abstract def getLogs(filter: Log.Filter)(implicit ec: ExecutionContext): Future[Seq[Log]]
  11. abstract def getLogs(query: Query)(implicit ec: ExecutionContext): Future[Seq[Log]]
  12. abstract def getNewLogs(filter: Log.Filter)(implicit ec: ExecutionContext): Future[Seq[Log]]
  13. abstract def getStorageAt(contractAddress: EthAddress, storageSlot: BigInt, blockNumber: BlockNumber)(implicit ec: ExecutionContext): Future[BigInt]
  14. abstract def getTransactionCount(address: EthAddress, blockNumber: BlockNumber)(implicit ec: ExecutionContext): Future[BigInt]
  15. abstract def getTransactionReceipt(transactionHash: EthHash)(implicit ec: ExecutionContext): Future[Option[TransactionReceipt]]
  16. abstract def newBlockFilter()(implicit ec: ExecutionContext): Future[BlockFilter]
  17. abstract def newLogFilter(query: Query)(implicit ec: ExecutionContext): Future[Log.Filter]
  18. abstract def sendRawTransaction(bytes: Seq[Byte])(implicit ec: ExecutionContext): Future[EthHash]
  19. abstract def sendSignedTransaction(signedTransaction: Signed)(implicit ec: ExecutionContext): Future[EthHash]
  20. abstract def uninstallFilter(filter: Filter)(implicit ec: ExecutionContext): Future[Boolean]

Concrete 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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped