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 address of the Smart Contract Wallet. If this is not provided, Cobo will create a new Safe{Wallet} and set up Cobo Safe for you. In that case, the `threshold` and `signers` properties are required.
[optional]
signers
List[str]
The signers of the Smart Contract Wallet. This property is required when creating a new Safe{Wallet}.
[optional]
threshold
int
The minimum number of confirmations required for the Smart Contract Wallet. This property is required when creating a new Safe{Wallet}.
[optional]
cobo_safe_address
str
The address of Cobo Safe. If you are importing an existing Safe{Wallet}, Cobo Safe must have been created and enabled.
fromcobo_waas2.models.create_smart_contract_wallet_paramsimportCreateSmartContractWalletParams# TODO update the JSON string belowjson="{}"# create an instance of CreateSmartContractWalletParams from a JSON stringcreate_smart_contract_wallet_params_instance=CreateSmartContractWalletParams.from_json(json)
# print the JSON string representation of the objectprint(CreateSmartContractWalletParams.to_json())
# convert the object into a dictcreate_smart_contract_wallet_params_dict=create_smart_contract_wallet_params_instance.to_dict()
# create an instance of CreateSmartContractWalletParams from a dictcreate_smart_contract_wallet_params_from_dict=CreateSmartContractWalletParams.from_dict(create_smart_contract_wallet_params_dict)