Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.41 KB

File metadata and controls

32 lines (23 loc) · 1.41 KB

LayerZeroAdapterCreateParams

Properties

Name Type Description Notes
token_link_id str 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

from fireblocks.models.layer_zero_adapter_create_params import LayerZeroAdapterCreateParams

# TODO update the JSON string below
json = "{}"
# create an instance of LayerZeroAdapterCreateParams from a JSON string
layer_zero_adapter_create_params_instance = LayerZeroAdapterCreateParams.from_json(json)
# print the JSON string representation of the object
print(LayerZeroAdapterCreateParams.to_json())

# convert the object into a dict
layer_zero_adapter_create_params_dict = layer_zero_adapter_create_params_instance.to_dict()
# create an instance of LayerZeroAdapterCreateParams from a dict
layer_zero_adapter_create_params_from_dict = LayerZeroAdapterCreateParams.from_dict(layer_zero_adapter_create_params_dict)

[Back to Model list] [Back to API list] [Back to README]