You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3 types: uint256 value (t1), byte-like (t2), tuple (t3)
internally, untyped values (t1) can be inputs and outputs, but if received from outside (tay expression), they are typed as number; -> efficiency of not computing signatures, unsafe, fast core.
byte-like: t2__(pointer_to_data, data_length)
tuple: t3___(pointer_to_t2s, data_length, arity); tuples work with t2 & t3
The text was updated successfully, but these errors were encountered:
To be expanded.
For now:
t2__(pointer_to_data, data_length)
t3___(pointer_to_t2s, data_length, arity)
; tuples work with t2 & t3The text was updated successfully, but these errors were encountered: