Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 876 Bytes

File metadata and controls

29 lines (20 loc) · 876 Bytes

ZkLighterInfo

Properties

Name Type Description Notes
contract_address str

Example

from lighter.models.zk_lighter_info import ZkLighterInfo

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

# convert the object into a dict
zk_lighter_info_dict = zk_lighter_info_instance.to_dict()
# create an instance of ZkLighterInfo from a dict
zk_lighter_info_from_dict = ZkLighterInfo.from_dict(zk_lighter_info_dict)

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