Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

CoreStakingExtra

Properties

Name Type Description Notes
pool_type StakingPoolType
pos_chain str The Proof-of-Stake (PoS) chain.
staker_address str The staker's Bitcoin address.
validator_address str The validator's EVM address.
reward_address str The EVM address to receive staking rewards.
timelock int The Unix timestamp (in seconds) when the staking position will be unlocked and available for withdrawal.

Example

from cobo_waas2.models.core_staking_extra import CoreStakingExtra

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

# convert the object into a dict
core_staking_extra_dict = core_staking_extra_instance.to_dict()
# create an instance of CoreStakingExtra from a dict
core_staking_extra_from_dict = CoreStakingExtra.from_dict(core_staking_extra_dict)

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