Package-level declarations

Types

Link copied to clipboard
class AttachmentResolutionException(attachmentId: <Error class: unknown class>)
Link copied to clipboard
class DoubleSpentInputs(ids: List<<Error class: unknown class>>)
Link copied to clipboard
Link copied to clipboard
sealed class EnforceVerifyOrFail

If you jumped here from a compiler error make sure the last line of your test tests for a transaction verify or fail. This is a dummy type that can only be instantiated by functions in this module. This way we can ensure that all tests will have as the last line either an accept or a failure test. The name is deliberately long to help make sense of the triggered diagnostic.

Link copied to clipboard
class LedgerDSL<out T : TransactionDSLInterpreter, out L : LedgerDSLInterpreter<T>>(val interpreter: L, notary: <Error class: unknown class>) : LedgerDSLInterpreter<TransactionDSLInterpreter>

This is the class that defines the syntactic sugar of the ledger Test DSL and delegates to the contained interpreter, and what is actually used in ledger { (...) }. Add convenience functions here, or if you want to extend the DSL functionality then first add your primitive to LedgerDSLInterpreter and then add the convenience defaults/extension methods here.

Link copied to clipboard

This interface defines the bare bone functionality that a Ledger DSL interpreter should implement.

Link copied to clipboard

This interface defines output state lookup by label. It is split from the interpreter interfaces so that outputs may be looked up both in ledger{..} and transaction{..} blocks.

Link copied to clipboard

This interpreter builds a transaction, and TransactionDSL.verifies that the resolved transaction is correct. Note that transactions corresponding to input states are not verified. Use LedgerDSL.verifies for that.

Link copied to clipboard
class TransactionDSL<out T : TransactionDSLInterpreter>(interpreter: T, notary: <Error class: unknown class>) : TransactionDSLInterpreter

Underlying class for the transaction DSL. Do not instantiate directly, instead use the transaction function.

Link copied to clipboard

This interface defines the bare bone functionality that a Transaction DSL interpreter should implement.

Link copied to clipboard
interface Verifies

This interface asserts that the DSL at hand is capable of verifying its underlying construct(ledger/transaction).