Data Inputs Semantics

Ergo derives from Bitcoin UTXO model, where a transaction is consuming some one-time coins (inputs) and creating new one-time coins (outputs). But it also allows for read-only inputs, also called data inputs.

Data inputs are very efficient (about just 32 bytes per data input is to be put into transaction), provide possibility to read arbitrary element (unspent output0 of the current Ergo state, and read it efficiently, also in light-client friendly way (light fullnodes able to fully validate transactions with data inputs without storing UTXO set).

Some subtle nuances to be considered by application developers though:

  • data inputs of a transaction may be duplicated
  • data input may refer to UTXO set before the first transaction of the block, or any UTXO created in the block (before the transaction or after)
4 Likes

The second point seems very tricky indeed. So for example, a tx may have data input that is being spent in the same block + the newly created box from that data input. So in the case of oracles, in the block that the oracle data is being changed, both the old and new oracle boxes can be used as references. Right?

Yes, both boxes can be used for that block.