@heliofi/common 0.1.320 → 0.1.321

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/src/domain/model/auth/dtos/BTCProperties.dto.d.ts +4 -0
  2. package/dist/src/domain/model/{discordAuthProperties/dtos/discordAuthProperties.dto.js → auth/dtos/BTCProperties.dto.js} +6 -6
  3. package/dist/src/domain/model/auth/dtos/BTCProperties.dto.js.map +1 -0
  4. package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.d.ts +9 -0
  5. package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.js +41 -0
  6. package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.js.map +1 -0
  7. package/dist/src/domain/model/auth/dtos/index.d.ts +2 -0
  8. package/dist/src/domain/model/auth/dtos/index.js +2 -0
  9. package/dist/src/domain/model/auth/dtos/index.js.map +1 -1
  10. package/dist/src/domain/model/auth/dtos/signOn.dto.d.ts +2 -0
  11. package/dist/src/domain/model/auth/dtos/signOn.dto.js +6 -0
  12. package/dist/src/domain/model/auth/dtos/signOn.dto.js.map +1 -1
  13. package/dist/src/domain/model/helio-wallet-tx/constants/index.d.ts +2 -2
  14. package/dist/src/domain/model/helio-wallet-tx/constants/index.js +2 -2
  15. package/dist/src/domain/model/helio-wallet-tx/constants/index.js.map +1 -1
  16. package/dist/src/domain/model/helio-wallet-tx/entities/CreateHelioWalletTx.d.ts +1 -1
  17. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.d.ts +6 -0
  18. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.js +8 -0
  19. package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.js.map +1 -0
  20. package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.d.ts +5 -0
  21. package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.js +10 -0
  22. package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.js.map +1 -0
  23. package/dist/src/domain/model/wallet/entities/BTCProperties.d.ts +6 -0
  24. package/dist/src/domain/model/wallet/entities/BTCProperties.js +8 -0
  25. package/dist/src/domain/model/wallet/entities/BTCProperties.js.map +1 -0
  26. package/dist/src/domain/model/wallet/entities/BaseWallet.entity.d.ts +2 -0
  27. package/dist/src/domain/model/wallet/entities/BaseWallet.entity.js.map +1 -1
  28. package/dist/src/domain/model/wallet/entities/WalletOrigin.d.ts +3 -0
  29. package/dist/src/domain/model/wallet/entities/WalletOrigin.js +8 -0
  30. package/dist/src/domain/model/wallet/entities/WalletOrigin.js.map +1 -0
  31. package/dist/src/domain/model/wallet/entities/index.d.ts +4 -0
  32. package/dist/src/domain/model/wallet/entities/index.js +4 -0
  33. package/dist/src/domain/model/wallet/entities/index.js.map +1 -1
  34. package/dist/tsconfig.tsbuildinfo +1 -1
  35. package/package.json +2 -2
  36. package/dist/src/domain/model/discordAuthProperties/dtos/discordAuthProperties.dto.d.ts +0 -4
  37. package/dist/src/domain/model/discordAuthProperties/dtos/discordAuthProperties.dto.js.map +0 -1
  38. package/dist/src/domain/model/discordAuthProperties/dtos/index.d.ts +0 -1
  39. package/dist/src/domain/model/discordAuthProperties/dtos/index.js +0 -18
  40. package/dist/src/domain/model/discordAuthProperties/dtos/index.js.map +0 -1
  41. package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.d.ts +0 -5
  42. package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.js +0 -8
  43. package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.js.map +0 -1
  44. package/dist/src/domain/model/discordAuthProperties/entities/index.d.ts +0 -1
  45. package/dist/src/domain/model/discordAuthProperties/entities/index.js +0 -18
  46. package/dist/src/domain/model/discordAuthProperties/entities/index.js.map +0 -1
  47. package/dist/src/domain/model/discordAuthProperties/index.d.ts +0 -2
  48. package/dist/src/domain/model/discordAuthProperties/index.js +0 -19
  49. package/dist/src/domain/model/discordAuthProperties/index.js.map +0 -1
  50. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.d.ts +0 -12
  51. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js +0 -22
  52. package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js.map +0 -1
@@ -0,0 +1,4 @@
1
+ export declare class BTCPropertiesDto {
2
+ paymentAddress: string;
3
+ ordinalsAddress: string;
4
+ }
@@ -9,19 +9,19 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.DiscordAuthPropertiesDto = void 0;
12
+ exports.BTCPropertiesDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
- class DiscordAuthPropertiesDto {
14
+ class BTCPropertiesDto {
15
15
  }
16
16
  __decorate([
17
17
  (0, class_validator_1.IsString)(),
18
18
  (0, class_validator_1.IsNotEmpty)(),
19
19
  __metadata("design:type", String)
20
- ], DiscordAuthPropertiesDto.prototype, "serverId", void 0);
20
+ ], BTCPropertiesDto.prototype, "paymentAddress", void 0);
21
21
  __decorate([
22
22
  (0, class_validator_1.IsString)(),
23
23
  (0, class_validator_1.IsNotEmpty)(),
24
24
  __metadata("design:type", String)
25
- ], DiscordAuthPropertiesDto.prototype, "roleId", void 0);
26
- exports.DiscordAuthPropertiesDto = DiscordAuthPropertiesDto;
27
- //# sourceMappingURL=discordAuthProperties.dto.js.map
25
+ ], BTCPropertiesDto.prototype, "ordinalsAddress", void 0);
26
+ exports.BTCPropertiesDto = BTCPropertiesDto;
27
+ //# sourceMappingURL=BTCProperties.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BTCProperties.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/BTCProperties.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAuD;AAEvD,MAAa,gBAAgB;CAQ5B;AAPC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;wDACU;AAEvB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;yDACW;AAP1B,4CAQC"}
@@ -0,0 +1,9 @@
1
+ import { Platform } from '../../../constants';
2
+ import { WalletOrigin } from '../../wallet';
3
+ import { BTCPropertiesDto } from './BTCProperties.dto';
4
+ export declare class BitcoinSignOnDto {
5
+ signature: string;
6
+ platform?: Platform;
7
+ origin: WalletOrigin;
8
+ btcProperties: BTCPropertiesDto;
9
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.BitcoinSignOnDto = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const constants_1 = require("../../../constants");
16
+ const wallet_1 = require("../../wallet");
17
+ const BTCProperties_dto_1 = require("./BTCProperties.dto");
18
+ class BitcoinSignOnDto {
19
+ }
20
+ __decorate([
21
+ (0, class_validator_1.IsString)(),
22
+ (0, class_validator_1.IsNotEmpty)(),
23
+ __metadata("design:type", String)
24
+ ], BitcoinSignOnDto.prototype, "signature", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsOptional)(),
27
+ (0, class_validator_1.IsEnum)(constants_1.Platform),
28
+ __metadata("design:type", String)
29
+ ], BitcoinSignOnDto.prototype, "platform", void 0);
30
+ __decorate([
31
+ (0, class_validator_1.IsNotEmpty)(),
32
+ (0, class_validator_1.IsEnum)(wallet_1.WalletOrigin),
33
+ __metadata("design:type", String)
34
+ ], BitcoinSignOnDto.prototype, "origin", void 0);
35
+ __decorate([
36
+ (0, class_transformer_1.Type)(() => BTCProperties_dto_1.BTCPropertiesDto),
37
+ (0, class_validator_1.ValidateNested)(),
38
+ __metadata("design:type", BTCProperties_dto_1.BTCPropertiesDto)
39
+ ], BitcoinSignOnDto.prototype, "btcProperties", void 0);
40
+ exports.BitcoinSignOnDto = BitcoinSignOnDto;
41
+ //# sourceMappingURL=BitcoinSignOn.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BitcoinSignOn.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/BitcoinSignOn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAMyB;AACzB,yDAAyC;AACzC,kDAA8C;AAC9C,yCAA4C;AAC5C,2DAAuD;AAEvD,MAAa,gBAAgB;CAiB5B;AAhBC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,oBAAQ,CAAC;;kDACG;AAGpB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,qBAAY,CAAC;;gDACA;AAErB;IAAC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oCAAgB,CAAC;IAC5B,IAAA,gCAAc,GAAE;8BACF,oCAAgB;uDAAC;AAhBlC,4CAiBC"}
@@ -6,3 +6,5 @@ export * from './AccessCodeAuth.dto';
6
6
  export * from './StoreTwitterToken.dto';
7
7
  export * from './EVMMessage.dto';
8
8
  export * from './SignOnWeb3authSocialNetwork.dto';
9
+ export * from './BitcoinSignOn.dto';
10
+ export * from './BTCProperties.dto';
@@ -22,4 +22,6 @@ __exportStar(require("./AccessCodeAuth.dto"), exports);
22
22
  __exportStar(require("./StoreTwitterToken.dto"), exports);
23
23
  __exportStar(require("./EVMMessage.dto"), exports);
24
24
  __exportStar(require("./SignOnWeb3authSocialNetwork.dto"), exports);
25
+ __exportStar(require("./BitcoinSignOn.dto"), exports);
26
+ __exportStar(require("./BTCProperties.dto"), exports);
25
27
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,+CAA6B;AAC7B,0DAAwC;AACxC,oDAAkC;AAClC,uDAAqC;AACrC,0DAAwC;AACxC,mDAAiC;AACjC,oEAAkD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,+CAA6B;AAC7B,0DAAwC;AACxC,oDAAkC;AAClC,uDAAqC;AACrC,0DAAwC;AACxC,mDAAiC;AACjC,oEAAkD;AAClD,sDAAoC;AACpC,sDAAoC"}
@@ -1,6 +1,8 @@
1
1
  import { Platform } from '../../../constants';
2
+ import { WalletOrigin } from '../../wallet';
2
3
  export declare class SignOnDto {
3
4
  publicKey: string;
4
5
  signature: string;
5
6
  platform?: Platform;
7
+ origin?: WalletOrigin;
6
8
  }
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.SignOnDto = void 0;
13
13
  const class_validator_1 = require("class-validator");
14
14
  const constants_1 = require("../../../constants");
15
+ const wallet_1 = require("../../wallet");
15
16
  class SignOnDto {
16
17
  }
17
18
  __decorate([
@@ -29,5 +30,10 @@ __decorate([
29
30
  (0, class_validator_1.IsEnum)(constants_1.Platform),
30
31
  __metadata("design:type", String)
31
32
  ], SignOnDto.prototype, "platform", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsOptional)(),
35
+ (0, class_validator_1.IsEnum)(wallet_1.WalletOrigin),
36
+ __metadata("design:type", String)
37
+ ], SignOnDto.prototype, "origin", void 0);
32
38
  exports.SignOnDto = SignOnDto;
33
39
  //# sourceMappingURL=signOn.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"signOn.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/signOn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,kDAA8C;AAE9C,MAAa,SAAS;CAYrB;AAXC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,oBAAQ,CAAC;;2CACG;AAXtB,8BAYC"}
1
+ {"version":3,"file":"signOn.dto.js","sourceRoot":"","sources":["../../../../../../src/domain/model/auth/dtos/signOn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA2E;AAC3E,kDAA8C;AAC9C,yCAA4C;AAE5C,MAAa,SAAS;CAiBrB;AAhBC;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACK;AAElB;IAAC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;4CACK;AAElB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,oBAAQ,CAAC;;2CACG;AAGpB;IAAC,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,EAAC,qBAAY,CAAC;;yCACC;AAhBxB,8BAiBC"}
@@ -1,4 +1,4 @@
1
1
  export declare enum HelioWalletTxType {
2
- OUTGOING = "OUTGOING",
3
- INCOMING = "INCOMING"
2
+ FUNDS = "FUNDS",
3
+ NFT = "NFT"
4
4
  }
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.HelioWalletTxType = void 0;
4
4
  var HelioWalletTxType;
5
5
  (function (HelioWalletTxType) {
6
- HelioWalletTxType["OUTGOING"] = "OUTGOING";
7
- HelioWalletTxType["INCOMING"] = "INCOMING";
6
+ HelioWalletTxType["FUNDS"] = "FUNDS";
7
+ HelioWalletTxType["NFT"] = "NFT";
8
8
  })(HelioWalletTxType = exports.HelioWalletTxType || (exports.HelioWalletTxType = {}));
9
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-wallet-tx/constants/index.ts"],"names":[],"mappings":";;;AAKA,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,0CAAqB,CAAA;IACrB,0CAAqB,CAAA;AACvB,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/helio-wallet-tx/constants/index.ts"],"names":[],"mappings":";;;AAKA,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,oCAAe,CAAA;IACf,gCAAW,CAAA;AACb,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}
@@ -1,5 +1,5 @@
1
1
  import type { HelioWalletTxType } from '../constants';
2
2
  import { BaseCreateTransactionDto } from '../../transaction';
3
3
  export declare class CreateHelioWalletTx extends BaseCreateTransactionDto {
4
- type?: HelioWalletTxType;
4
+ type: HelioWalletTxType;
5
5
  }
@@ -0,0 +1,6 @@
1
+ import { Entity } from '../../entity';
2
+ import { BTCPaymentAddressVersion } from './BTCPaymentAddressVersion';
3
+ export declare class BTCPaymentAddress extends Entity {
4
+ address: string;
5
+ version?: BTCPaymentAddressVersion;
6
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BTCPaymentAddress = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class BTCPaymentAddress extends entity_1.Entity {
6
+ }
7
+ exports.BTCPaymentAddress = BTCPaymentAddress;
8
+ //# sourceMappingURL=BTCPaymentAddress.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BTCPaymentAddress.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BTCPaymentAddress.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,iBAAkB,SAAQ,eAAM;CAI5C;AAJD,8CAIC"}
@@ -0,0 +1,5 @@
1
+ export declare enum BTCPaymentAddressVersion {
2
+ LEGACY = "LEGACY",
3
+ SEGWIT = "SEGWIT",
4
+ TAPROOT = "TAPROOT"
5
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BTCPaymentAddressVersion = void 0;
4
+ var BTCPaymentAddressVersion;
5
+ (function (BTCPaymentAddressVersion) {
6
+ BTCPaymentAddressVersion["LEGACY"] = "LEGACY";
7
+ BTCPaymentAddressVersion["SEGWIT"] = "SEGWIT";
8
+ BTCPaymentAddressVersion["TAPROOT"] = "TAPROOT";
9
+ })(BTCPaymentAddressVersion = exports.BTCPaymentAddressVersion || (exports.BTCPaymentAddressVersion = {}));
10
+ //# sourceMappingURL=BTCPaymentAddressVersion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BTCPaymentAddressVersion.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BTCPaymentAddressVersion.ts"],"names":[],"mappings":";;;AAAA,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,6CAAiB,CAAA;IACjB,6CAAiB,CAAA;IACjB,+CAAmB,CAAA;AACrB,CAAC,EAJW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAInC"}
@@ -0,0 +1,6 @@
1
+ import { Entity } from '../../entity';
2
+ import { BTCPaymentAddress } from './BTCPaymentAddress.entity';
3
+ export declare class BTCProperties extends Entity {
4
+ paymentAddresses: BTCPaymentAddress[];
5
+ ordinalsAddresses: string[];
6
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BTCProperties = void 0;
4
+ const entity_1 = require("../../entity");
5
+ class BTCProperties extends entity_1.Entity {
6
+ }
7
+ exports.BTCProperties = BTCProperties;
8
+ //# sourceMappingURL=BTCProperties.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BTCProperties.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BTCProperties.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,aAAc,SAAQ,eAAM;CAIxC;AAJD,sCAIC"}
@@ -1,7 +1,9 @@
1
1
  import { Entity } from '../../entity';
2
2
  import { WalletType } from '../../../constants';
3
+ import { BTCProperties } from './BTCProperties';
3
4
  export declare class BaseWallet extends Entity {
4
5
  id: string;
5
6
  publicKey: string;
7
+ btcProperties?: BTCProperties;
6
8
  type?: WalletType;
7
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"BaseWallet.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BaseWallet.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAGtC,MAAa,UAAW,SAAQ,eAAM;CAMrC;AAND,gCAMC"}
1
+ {"version":3,"file":"BaseWallet.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/BaseWallet.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAItC,MAAa,UAAW,SAAQ,eAAM;CAQrC;AARD,gCAQC"}
@@ -0,0 +1,3 @@
1
+ export declare enum WalletOrigin {
2
+ XVERSE = "XVERSE"
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WalletOrigin = void 0;
4
+ var WalletOrigin;
5
+ (function (WalletOrigin) {
6
+ WalletOrigin["XVERSE"] = "XVERSE";
7
+ })(WalletOrigin = exports.WalletOrigin || (exports.WalletOrigin = {}));
8
+ //# sourceMappingURL=WalletOrigin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WalletOrigin.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/WalletOrigin.ts"],"names":[],"mappings":";;;AAEA,IAAY,YAEX;AAFD,WAAY,YAAY;IACtB,iCAAiB,CAAA;AACnB,CAAC,EAFW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAEvB"}
@@ -1,3 +1,7 @@
1
1
  export * from './Wallet.entity';
2
2
  export * from './BaseWallet.entity';
3
3
  export * from './WalletDetails.entity';
4
+ export * from './WalletOrigin';
5
+ export * from './BTCPaymentAddressVersion';
6
+ export * from './BTCPaymentAddress.entity';
7
+ export * from './BTCProperties';
@@ -17,4 +17,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./Wallet.entity"), exports);
18
18
  __exportStar(require("./BaseWallet.entity"), exports);
19
19
  __exportStar(require("./WalletDetails.entity"), exports);
20
+ __exportStar(require("./WalletOrigin"), exports);
21
+ __exportStar(require("./BTCPaymentAddressVersion"), exports);
22
+ __exportStar(require("./BTCPaymentAddress.entity"), exports);
23
+ __exportStar(require("./BTCProperties"), exports);
20
24
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,sDAAoC;AACpC,yDAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/wallet/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,sDAAoC;AACpC,yDAAuC;AACvC,iDAA+B;AAC/B,6DAA2C;AAC3C,6DAA2C;AAC3C,kDAAgC"}