Representation of a Transaction Argument sequence / list. NOTE: Transaction Arguments have different types hence they cannot be represented using a regular list. NOTE: This class does not implement deserialization because the developer would know the types beforehand, and hence would apply the appropriate deserialization based on the type.
More...
Representation of a Transaction Argument sequence / list. NOTE: Transaction Arguments have different types hence they cannot be represented using a regular list. NOTE: This class does not implement deserialization because the developer would know the types beforehand, and hence would apply the appropriate deserialization based on the type.
Fixed and Variable Length Sequences Sequences can be made of up of any BCS supported types(even complex structures) but all elements in the sequence must be of the same type.If the length of a sequence is fixed and well known then BCS represents this as just the concatenation of the serialized form of each individual element in the sequence. If the length of the sequence can be variable, then the serialized sequence is length prefixed with a ULEB128-encoded unsigned integer indicating the number of elements in the sequence. All variable length sequences must be MAX_SEQUENCE_LENGTH elements long or less.