val TEST_TX_TIME: Instant
Please keep the following points in mind when extending the Kotlin DSL:
Annotate functions with Kotlin defaults with @JvmOverloads. This produces the relevant overloads for Java.
Void closures in arguments are inconvenient in Java, use overloading to define non-closure variants as well.
Top-level vals are trickier.
Infix functions work as regular ones from Java, but symbols with spaces in them dont Define a camelCase variant as well.
varargs are exposed as array types in Java. Define overloads for common cases.
The Int.DOLLARS syntax doesnt work from Java. Use the DOLLARS(int) function instead.