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
Array of required DVN Ethereum addresses that sign ULN messages.
optional_dvn_addresses
List[str]
Array of optional DVN Ethereum addresses that sign ULN messages.
[optional]
optional_threshold
float
Minimum number of DVN signatures required (M-of-N).
confirmations
float
Number of block confirmations required
Example
fromfireblocks.models.channel_dvn_config_with_confirmations_send_configimportChannelDvnConfigWithConfirmationsSendConfig# TODO update the JSON string belowjson="{}"# create an instance of ChannelDvnConfigWithConfirmationsSendConfig from a JSON stringchannel_dvn_config_with_confirmations_send_config_instance=ChannelDvnConfigWithConfirmationsSendConfig.from_json(json)
# print the JSON string representation of the objectprint(ChannelDvnConfigWithConfirmationsSendConfig.to_json())
# convert the object into a dictchannel_dvn_config_with_confirmations_send_config_dict=channel_dvn_config_with_confirmations_send_config_instance.to_dict()
# create an instance of ChannelDvnConfigWithConfirmationsSendConfig from a dictchannel_dvn_config_with_confirmations_send_config_from_dict=ChannelDvnConfigWithConfirmationsSendConfig.from_dict(channel_dvn_config_with_confirmations_send_config_dict)