Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

staking-sdk: add amount prop to unstakeDto #199

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fireblocks_sdk/api_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,9 @@ def to_dict(self):


class UnstakeRequestDto:
def __init__(self, id: str, fee: str = None, fee_level: str = None, tx_note: str = None):
def __init__(self, id: str, amount: str = None, fee: str = None, fee_level: str = None, tx_note: str = None):
self.id = id
self.amount = amount
self.fee = fee
self.fee_level = fee_level
self.tx_note = tx_note
Expand Down
Loading