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
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Defines the name of the wallet that will be generated.
wallet_type
str
Represents if the generated wallet is only for mainnet or only for testnet .
Example
fromcryptoapis.models.create_new_master_wallet_rb_data_itemimportCreateNewMasterWalletRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of CreateNewMasterWalletRBDataItem from a JSON stringcreate_new_master_wallet_rb_data_item_instance=CreateNewMasterWalletRBDataItem.from_json(json)
# print the JSON string representation of the objectprintCreateNewMasterWalletRBDataItem.to_json()
# convert the object into a dictcreate_new_master_wallet_rb_data_item_dict=create_new_master_wallet_rb_data_item_instance.to_dict()
# create an instance of CreateNewMasterWalletRBDataItem from a dictcreate_new_master_wallet_rb_data_item_form_dict=create_new_master_wallet_rb_data_item.from_dict(create_new_master_wallet_rb_data_item_dict)