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
In parity there is a notion of "Action" in the transaction. I find it very useful concept that will ensure that we create proper set of TX params.
If "to" is null address, then data field becomes "init" and the transaction becomes a contract creation transaction.
Otherwise "to" is a message call and data should contain a message call (or empty, for just transferring funds between parties).
Sort of needed by guac integration, but we can live without it as we know what is the "right" kind of parameters so we can live without "action" field which just configured to/data params for us.
The text was updated successfully, but these errors were encountered:
In parity there is a notion of "Action" in the transaction. I find it very useful concept that will ensure that we create proper set of TX params.
If "to" is null address, then
data
field becomes "init" and the transaction becomes a contract creation transaction.Otherwise "to" is a message call and
data
should contain a message call (or empty, for just transferring funds between parties).Sort of needed by guac integration, but we can live without it as we know what is the "right" kind of parameters so we can live without "action" field which just configured to/data params for us.
The text was updated successfully, but these errors were encountered: