Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

ContractAttributes

Properties

Name Type Description Notes
use_cases List[str] [optional]
standards List[str] Token standards implemented by the contract (e.g. ERC-20, ERC-1400). Not returned for templates that do not follow ERC token standards, such as non-EVM templates (e.g. Stellar, Solana Token 2022) [optional]
auditor AuditorData [optional]

Example

from fireblocks.models.contract_attributes import ContractAttributes

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

# convert the object into a dict
contract_attributes_dict = contract_attributes_instance.to_dict()
# create an instance of ContractAttributes from a dict
contract_attributes_from_dict = ContractAttributes.from_dict(contract_attributes_dict)

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