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
Array of creation parameters for LayerZero adapters, one per tokenLink.
display_name
str
The display name of the contract
[optional]
use_gasless
bool
Whether to use gasless deployment or not
[optional]
fee_level
str
Fee level for the write function transaction. interchangeable with the 'fee' field
[optional]
fee
str
Max fee amount for the write function transaction. interchangeable with the 'feeLevel' field
[optional]
salt
str
The salt to calculate the deterministic address. Must be a number between 0 and 2^256 -1, for it to fit in the bytes32 parameter
[optional]
Example
fromfireblocks.models.deploy_layer_zero_adapters_requestimportDeployLayerZeroAdaptersRequest# TODO update the JSON string belowjson="{}"# create an instance of DeployLayerZeroAdaptersRequest from a JSON stringdeploy_layer_zero_adapters_request_instance=DeployLayerZeroAdaptersRequest.from_json(json)
# print the JSON string representation of the objectprint(DeployLayerZeroAdaptersRequest.to_json())
# convert the object into a dictdeploy_layer_zero_adapters_request_dict=deploy_layer_zero_adapters_request_instance.to_dict()
# create an instance of DeployLayerZeroAdaptersRequest from a dictdeploy_layer_zero_adapters_request_from_dict=DeployLayerZeroAdaptersRequest.from_dict(deploy_layer_zero_adapters_request_dict)