Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.48 KB

CreateNcwConnectionRequest.md

File metadata and controls

33 lines (24 loc) · 1.48 KB

CreateNcwConnectionRequest

Properties

Name Type Description Notes
ncw_id str 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

from fireblocks.models.create_ncw_connection_request import CreateNcwConnectionRequest

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

# convert the object into a dict
create_ncw_connection_request_dict = create_ncw_connection_request_instance.to_dict()
# create an instance of CreateNcwConnectionRequest from a dict
create_ncw_connection_request_from_dict = CreateNcwConnectionRequest.from_dict(create_ncw_connection_request_dict)

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