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 Non-Custodial Wallet to connect to the dApp.
ncw_account_id
float
The NCW account ID to connect to the dApp.
fee_level
str
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_ncw_connection_requestimportCreateNcwConnectionRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateNcwConnectionRequest from a JSON stringcreate_ncw_connection_request_instance=CreateNcwConnectionRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateNcwConnectionRequest.to_json())
# convert the object into a dictcreate_ncw_connection_request_dict=create_ncw_connection_request_instance.to_dict()
# create an instance of CreateNcwConnectionRequest from a dictcreate_ncw_connection_request_from_dict=CreateNcwConnectionRequest.from_dict(create_ncw_connection_request_dict)