import { Interfaces } from "@smartholdem/core-magistrate-crypto"; export interface IBusinessWalletAttributes { businessAsset: Interfaces.IBusinessRegistrationAsset; resigned?: boolean; bridgechains?: Record; } export interface IBridgechainWalletAttributes { bridgechainAsset: Interfaces.IBridgechainRegistrationAsset; resigned?: boolean; } export interface IEntityWallet { type: number; subType: number; data: Interfaces.IEntityAssetData; resigned?: boolean; } export interface IEntitiesWallet { [registrationId: string]: IEntityWallet; } //# sourceMappingURL=interfaces.d.ts.map