@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.
- package/dist/src/domain/model/auth/dtos/BTCProperties.dto.d.ts +4 -0
- package/dist/src/domain/model/{discordAuthProperties/dtos/discordAuthProperties.dto.js → auth/dtos/BTCProperties.dto.js} +6 -6
- package/dist/src/domain/model/auth/dtos/BTCProperties.dto.js.map +1 -0
- package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.d.ts +9 -0
- package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.js +41 -0
- package/dist/src/domain/model/auth/dtos/BitcoinSignOn.dto.js.map +1 -0
- package/dist/src/domain/model/auth/dtos/index.d.ts +2 -0
- package/dist/src/domain/model/auth/dtos/index.js +2 -0
- package/dist/src/domain/model/auth/dtos/index.js.map +1 -1
- package/dist/src/domain/model/auth/dtos/signOn.dto.d.ts +2 -0
- package/dist/src/domain/model/auth/dtos/signOn.dto.js +6 -0
- package/dist/src/domain/model/auth/dtos/signOn.dto.js.map +1 -1
- package/dist/src/domain/model/helio-wallet-tx/constants/index.d.ts +2 -2
- package/dist/src/domain/model/helio-wallet-tx/constants/index.js +2 -2
- package/dist/src/domain/model/helio-wallet-tx/constants/index.js.map +1 -1
- package/dist/src/domain/model/helio-wallet-tx/entities/CreateHelioWalletTx.d.ts +1 -1
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.d.ts +6 -0
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.js +8 -0
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddress.entity.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.d.ts +5 -0
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.js +10 -0
- package/dist/src/domain/model/wallet/entities/BTCPaymentAddressVersion.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/BTCProperties.d.ts +6 -0
- package/dist/src/domain/model/wallet/entities/BTCProperties.js +8 -0
- package/dist/src/domain/model/wallet/entities/BTCProperties.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/BaseWallet.entity.d.ts +2 -0
- package/dist/src/domain/model/wallet/entities/BaseWallet.entity.js.map +1 -1
- package/dist/src/domain/model/wallet/entities/WalletOrigin.d.ts +3 -0
- package/dist/src/domain/model/wallet/entities/WalletOrigin.js +8 -0
- package/dist/src/domain/model/wallet/entities/WalletOrigin.js.map +1 -0
- package/dist/src/domain/model/wallet/entities/index.d.ts +4 -0
- package/dist/src/domain/model/wallet/entities/index.js +4 -0
- package/dist/src/domain/model/wallet/entities/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/src/domain/model/discordAuthProperties/dtos/discordAuthProperties.dto.d.ts +0 -4
- package/dist/src/domain/model/discordAuthProperties/dtos/discordAuthProperties.dto.js.map +0 -1
- package/dist/src/domain/model/discordAuthProperties/dtos/index.d.ts +0 -1
- package/dist/src/domain/model/discordAuthProperties/dtos/index.js +0 -18
- package/dist/src/domain/model/discordAuthProperties/dtos/index.js.map +0 -1
- package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.d.ts +0 -5
- package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.js +0 -8
- package/dist/src/domain/model/discordAuthProperties/entities/DiscordAuthProperties.js.map +0 -1
- package/dist/src/domain/model/discordAuthProperties/entities/index.d.ts +0 -1
- package/dist/src/domain/model/discordAuthProperties/entities/index.js +0 -18
- package/dist/src/domain/model/discordAuthProperties/entities/index.js.map +0 -1
- package/dist/src/domain/model/discordAuthProperties/index.d.ts +0 -2
- package/dist/src/domain/model/discordAuthProperties/index.js +0 -19
- package/dist/src/domain/model/discordAuthProperties/index.js.map +0 -1
- package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.d.ts +0 -12
- package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js +0 -22
- package/dist/src/domain/model/prepare-transaction/entities/TokenTransactionPayload.js.map +0 -1
|
@@ -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.
|
|
12
|
+
exports.BTCPropertiesDto = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
-
class
|
|
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
|
-
],
|
|
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
|
-
],
|
|
26
|
-
exports.
|
|
27
|
-
//# sourceMappingURL=
|
|
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"}
|
|
@@ -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"}
|
|
@@ -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;
|
|
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"}
|
|
@@ -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["
|
|
7
|
-
HelioWalletTxType["
|
|
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,
|
|
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"}
|
|
@@ -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,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,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;
|
|
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,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"}
|