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

SetLayerZeroPeersRequest

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.set_layer_zero_peers_request import SetLayerZeroPeersRequest

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

# convert the object into a dict
set_layer_zero_peers_request_dict = set_layer_zero_peers_request_instance.to_dict()
# create an instance of SetLayerZeroPeersRequest from a dict
set_layer_zero_peers_request_from_dict = SetLayerZeroPeersRequest.from_dict(set_layer_zero_peers_request_dict)

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