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 default fee level. Valid values are `MEDIUM` and `HIGH`.
uri
str
The WalletConnect uri provided by the dapp.
chain_ids
List[str]
The IDs of the blockchain networks used in the Web3 connection (Currently required in V1 connections only).
[optional]
Example
fromfireblocks.models.create_vault_account_connection_requestimportCreateVaultAccountConnectionRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateVaultAccountConnectionRequest from a JSON stringcreate_vault_account_connection_request_instance=CreateVaultAccountConnectionRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateVaultAccountConnectionRequest.to_json())
# convert the object into a dictcreate_vault_account_connection_request_dict=create_vault_account_connection_request_instance.to_dict()
# create an instance of CreateVaultAccountConnectionRequest from a dictcreate_vault_account_connection_request_from_dict=CreateVaultAccountConnectionRequest.from_dict(create_vault_account_connection_request_dict)