Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.17 KB

File metadata and controls

41 lines (32 loc) · 2.17 KB

CreateWalletParams

Properties

Name Type Description Notes
name str The wallet name.
wallet_type WalletType
wallet_subtype WalletSubtype
enable_auto_sweep bool Enable the auto-sweep feature for the wallet. This parameter only applies to MPC Wallets and Custodial Wallets (Web3 Wallets). [optional]
vault_id str The ID of the owning vault. You can call List all vaults to retrieve all vault IDs under your organization.
exchange_id ExchangeId
apikey str The API key of your exchange account.
secret str The API secret of your exchange account.
passphrase str The passphrase of your exchange account. [optional]
memo str The memo you use when applying for the API key of your exchange account. [optional]
account_identify str The identifier of your exchange account. - For Binance, this is email address of your exchange account. - For OKX, this is the user name of your exchange account. [optional]
ga_code str The GA code for the exchange. [optional]
main_wallet_id str The ID of the Exchange Wallet (Main Account). [optional]

Example

from cobo_waas2.models.create_wallet_params import CreateWalletParams

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

# convert the object into a dict
create_wallet_params_dict = create_wallet_params_instance.to_dict()
# create an instance of CreateWalletParams from a dict
create_wallet_params_from_dict = CreateWalletParams.from_dict(create_wallet_params_dict)

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