Contract

Tagion contract inputs will be consumed in the execution Reads are extract optional data for the smart contract

Members

Variables

inputs
const(DARTIndex)[] inputs;

Hash pointer to input (DART)

reads
const(DARTIndex)[] reads;

Hash pointer to read-only input (DART)

script
Document script;

the Smart contract to be executed

Mixed In Members

From mixin HiBONRecord!(q{ this(const(DARTIndex)[] inputs, const(DARTIndex)[] reads, Document script) pure nothrow { this.inputs = inputs; this.reads = reads; this.script = script; } this(immutable(DARTIndex)[] inputs, immutable(DARTIndex)[] reads, immutable(Document) script) immutable pure nothrow { this.inputs = inputs; this.reads = reads; this.script = script; } })

recordName
string recordName()

Get the record type name set by @recordType("name")