Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

BlockchainOnchain.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

BlockchainOnchain

Properties

Name Type Description Notes
protocol str The protocol of the blockchain
chain_id str Network/chain ID [optional]
test bool Is test blockchain
signing_algo str Signing alghorithm

Example

from fireblocks.models.blockchain_onchain import BlockchainOnchain

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

# convert the object into a dict
blockchain_onchain_dict = blockchain_onchain_instance.to_dict()
# create an instance of BlockchainOnchain from a dict
blockchain_onchain_from_dict = BlockchainOnchain.from_dict(blockchain_onchain_dict)

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