Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.45 KB

File metadata and controls

32 lines (23 loc) · 1.45 KB

RemoveLayerZeroPeersRequest

Properties

Name Type Description Notes
vault_account_id str The id of the vault account that will be used to inititate transactions ot set peers
source_adapter_token_link_id str `token_link` ID of the source adapter contract
destination_adapter_token_link_ids List[str] Array of `token_link` IDs for destination adapter contracts
bidirectional bool If true, also sets peers from destination(s) back to source

Example

from fireblocks.models.remove_layer_zero_peers_request import RemoveLayerZeroPeersRequest

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

# convert the object into a dict
remove_layer_zero_peers_request_dict = remove_layer_zero_peers_request_instance.to_dict()
# create an instance of RemoveLayerZeroPeersRequest from a dict
remove_layer_zero_peers_request_from_dict = RemoveLayerZeroPeersRequest.from_dict(remove_layer_zero_peers_request_dict)

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