Interface IWalletResponse

IWalletResponse Interface representing a wallet.

const wallet: IWallet = {
id: 3108164,
asset: "RIAL",
balance: "1671.6",
frozen: "0.0",
service: "main"
};
interface IWalletResponse {
    asset: string;
    balance: `${number}`;
    frozen: `${number}`;
    id: number;
    service: string;
}

Properties

asset: string

The asset type of the wallet.

balance: `${number}`

The balance of the wallet.

frozen: `${number}`

The frozen amount in the wallet.

id: number

The unique identifier of the wallet.

service: string

The service associated with the wallet.