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
The token link id of the base token to deploy the adapters for
delegate_address
str
Address that will receive `CONTRACT_ADMIN_ROLE`.
default_admin_address
str
Address that will receive `DEFAULT_ADMIN_ROLE` on the adapter contract.
pauser_address
str
Address that will receive `PAUSER_ROLE`.
Example
fromfireblocks.models.layer_zero_adapter_create_paramsimportLayerZeroAdapterCreateParams# TODO update the JSON string belowjson="{}"# create an instance of LayerZeroAdapterCreateParams from a JSON stringlayer_zero_adapter_create_params_instance=LayerZeroAdapterCreateParams.from_json(json)
# print the JSON string representation of the objectprint(LayerZeroAdapterCreateParams.to_json())
# convert the object into a dictlayer_zero_adapter_create_params_dict=layer_zero_adapter_create_params_instance.to_dict()
# create an instance of LayerZeroAdapterCreateParams from a dictlayer_zero_adapter_create_params_from_dict=LayerZeroAdapterCreateParams.from_dict(layer_zero_adapter_create_params_dict)