Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.43 KB

SolanaBlockchainData.md

File metadata and controls

31 lines (22 loc) · 1.43 KB

SolanaBlockchainData

Additional fields per blockchain - can be empty or missing if not initialized or no additional info exists. The type depends on the chainDescriptor value. For Solana (SOL), stake account address. For Ethereum (ETH), an empty object is returned as no specific data is available.

Properties

Name Type Description Notes
stake_account_address str The stake account address matching the stakeAccountId.
stake_account_derivation_change_value float The value of the change level in the BIP44 path which was used to derive the stake account address

Example

from fireblocks.models.solana_blockchain_data import SolanaBlockchainData

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

# convert the object into a dict
solana_blockchain_data_dict = solana_blockchain_data_instance.to_dict()
# create an instance of SolanaBlockchainData from a dict
solana_blockchain_data_from_dict = SolanaBlockchainData.from_dict(solana_blockchain_data_dict)

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