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
Ethereum address derived from BLOCKCHAIN_LINK_EXTERNAL_WALLET_PRIVATE_KEY (for UI display).
[optional]
Example
fromfireblocks.models.get_test_wallet_address_responseimportGetTestWalletAddressResponse# TODO update the JSON string belowjson="{}"# create an instance of GetTestWalletAddressResponse from a JSON stringget_test_wallet_address_response_instance=GetTestWalletAddressResponse.from_json(json)
# print the JSON string representation of the objectprint(GetTestWalletAddressResponse.to_json())
# convert the object into a dictget_test_wallet_address_response_dict=get_test_wallet_address_response_instance.to_dict()
# create an instance of GetTestWalletAddressResponse from a dictget_test_wallet_address_response_from_dict=GetTestWalletAddressResponse.from_dict(get_test_wallet_address_response_dict)