transaction property

  1. @TagNumber(1)
Transaction get transaction

Transaction to be executed on the smart contract wallet. TODO currently, smart contract wallet address is specified in SigningInput.toAddress, but it will be refactored soon.

Implementation

@$pb.TagNumber(1)
Transaction get transaction => $_getN(0);
  1. @TagNumber(1)
set transaction (Transaction v)

Implementation

@$pb.TagNumber(1)
set transaction(Transaction v) {
  setField(1, v);
}