sarga-cardano-wallet-js-dist/models/api-wallet.d.ts

74 lines
2.0 KiB
TypeScript
Raw Normal View History

2023-08-07 23:20:23 +00:00
/**
* Cardano Wallet Backend API
* <p align=\"right\"><img style=\"position: relative; top: -10em; margin-bottom: -12em;\" width=\"20%\" src=\"https://cardanodocs.com/img/cardano.png\"></img></p>
*
* OpenAPI spec version: 2021.3.4
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { WalletsAssets, WalletsBalance, WalletsDelegation, WalletsPassphrase, WalletsState, WalletsTip } from '.';
/**
*
* @export
* @interface ApiWallet
*/
export interface ApiWallet {
/**
* A unique identifier for the wallet
* @type {string}
* @memberof ApiWallet
*/
id: any;
/**
* Number of consecutive unused addresses allowed. **IMPORTANT DISCLAIMER:** Using values other than `20` automatically makes your wallet invalid with regards to BIP-44 address discovery. It means that you **will not** be able to fully restore your wallet in a different software which is strictly following BIP-44. Beside, using large gaps is **not recommended** as it may induce important performance degradations. Use at your own risks.
* @type {number}
* @memberof ApiWallet
*/
address_pool_gap: any;
/**
*
* @type {WalletsBalance}
* @memberof ApiWallet
*/
balance: WalletsBalance;
/**
*
* @type {WalletsAssets}
* @memberof ApiWallet
*/
assets: WalletsAssets;
/**
*
* @type {WalletsDelegation}
* @memberof ApiWallet
*/
delegation: WalletsDelegation;
/**
*
* @type {string}
* @memberof ApiWallet
*/
name: any;
/**
*
* @type {WalletsPassphrase}
* @memberof ApiWallet
*/
passphrase?: WalletsPassphrase;
/**
*
* @type {WalletsState}
* @memberof ApiWallet
*/
state: WalletsState;
/**
*
* @type {WalletsTip}
* @memberof ApiWallet
*/
tip: WalletsTip;
}