| 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] |
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]