Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.75 KB

File metadata and controls

41 lines (32 loc) · 1.75 KB

SafeWallet

Properties

Name Type Description Notes
wallet_id str The wallet ID.
wallet_type WalletType
wallet_subtype WalletSubtype
name str The wallet name.
org_id str The ID of the owning organization.
enable_auto_sweep bool Enable the auto sweep feature for the wallet [optional]
chain_id str The ID of the chain on which the wallet operates. [optional]
smart_contract_wallet_type SmartContractWalletType
safe_address str The Smart Contract Wallet address. [optional]
signers List[str] The signers of the Smart Contract Wallet. [optional]
threshold int The minimum number of confirmations required for the Smart Contract Wallet. [optional]
cobo_safe_address str The address of Cobo Safe. [optional]
initiator SmartContractInitiator [optional]

Example

from cobo_waas2.models.safe_wallet import SafeWallet

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

# convert the object into a dict
safe_wallet_dict = safe_wallet_instance.to_dict()
# create an instance of SafeWallet from a dict
safe_wallet_from_dict = SafeWallet.from_dict(safe_wallet_dict)

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