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

Add delegation to balance #1456

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions bindings/nodejs/lib/types/wallet/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ export interface BaseCoinBalance {

/** The required storage deposit per output type */
export interface RequiredStorageDeposit {
/** The required amount for Alias outputs. */
account: u64;
/** The required amount for Basic outputs. */
basic: u64;
/** The required amount for Alias outputs. */
Thoralf-M marked this conversation as resolved.
Show resolved Hide resolved
account: u64;
/** The required amount for Foundry outputs. */
foundry: u64;
/** The required amount for NFT outputs. */
Expand Down
6 changes: 3 additions & 3 deletions bindings/python/iota_sdk/types/balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ class RequiredStorageDeposit:
"""Required storage deposit for the outputs in the account.

Attributes:
account: The required amount for account outputs.
basic: The required amount for basic outputs.
account: The required amount for account outputs.
foundry: The required amount for foundry outputs.
nft: The required amount for nft outputs.
delegation: The required amount for delegation outputs.
"""
account: int = field(metadata=config(
basic: int = field(metadata=config(
encoder=str
))
basic: int = field(metadata=config(
account: int = field(metadata=config(
encoder=str
))
foundry: int = field(metadata=config(
Expand Down
Loading