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 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
fromfireblocks.models.remove_layer_zero_peers_requestimportRemoveLayerZeroPeersRequest# TODO update the JSON string belowjson="{}"# create an instance of RemoveLayerZeroPeersRequest from a JSON stringremove_layer_zero_peers_request_instance=RemoveLayerZeroPeersRequest.from_json(json)
# print the JSON string representation of the objectprint(RemoveLayerZeroPeersRequest.to_json())
# convert the object into a dictremove_layer_zero_peers_request_dict=remove_layer_zero_peers_request_instance.to_dict()
# create an instance of RemoveLayerZeroPeersRequest from a dictremove_layer_zero_peers_request_from_dict=RemoveLayerZeroPeersRequest.from_dict(remove_layer_zero_peers_request_dict)