Call.get_call_salt()
Return the value representing the salt parameter of the contract creation call
get_call_salt() ->
APIList
[Union[
Value
,
NoneObject
]]
The function returns the Value (or any derived class) that represents the special salt parameter used in contract creation calls; the list will be empty if the call is not a contract creation or does not have a salt parameter.
For example, in the instruction:
the contract creation call:
has a salt parameter:
the function will return the value representing this expression (and it will be of type Call in this case, as its a keccak256 function call)
Query Example
Output Example
Last updated