diff --git a/packages/js-dash-sdk/docs/platform/identities/topUp.md b/packages/js-dash-sdk/docs/platform/identities/topUp.md index e3cd8d01fd9..758afbd61c3 100644 --- a/packages/js-dash-sdk/docs/platform/identities/topUp.md +++ b/packages/js-dash-sdk/docs/platform/identities/topUp.md @@ -1,6 +1,8 @@ **Usage**: `client.platform.identities.topUp(identity, amount)` **Description**: This method will topup the provided identity's balance. +_The identity balance might slightly vary from the topped up amount because of the transaction fee estimation._ + Parameters: | parameters | type | required | Description | diff --git a/packages/wallet-lib/src/types/Account/Account.d.ts b/packages/wallet-lib/src/types/Account/Account.d.ts index 5310566bc86..eedf66648f5 100644 --- a/packages/wallet-lib/src/types/Account/Account.d.ts +++ b/packages/wallet-lib/src/types/Account/Account.d.ts @@ -1,5 +1,6 @@ import { Transaction, + TransactionHistory, AddressObj, AddressInfo, AddressType, @@ -9,7 +10,7 @@ import { Strategy, Network, broadcastTransactionOpts, - Plugins, RawTransaction, TransactionsMap, WalletObj, StatusInfo, TransactionsHistory + Plugins, RawTransaction, TransactionsMap, WalletObj, StatusInfo } from "../types"; import { KeyChain } from "../KeyChain/KeyChain"; import { InstantLock } from "@dashevo/dashcore-lib"; @@ -62,7 +63,7 @@ export declare class Account { getPrivateKeys(addressList: [PublicAddress]): [PrivateKey]; getTotalBalance(displayDuffs?: boolean): number; getTransaction(txid: transactionId): Transaction; - getTransactionHistory(): TransactionsHistory; + getTransactionHistory(): TransactionHistory; getTransactions(): [Transaction]; getUTXOS(): [UnspentOutput]; getUnconfirmedBalance(displayDuffs?: boolean): number;