@midnight-ntwrk/wallet-sdk-address-format 2.0.0 → 3.0.0-beta.7
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/index.d.ts +44 -15
- package/dist/index.js +95 -50
- package/package.json +25 -17
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DustPublicKey, EncryptionSecretKey, UserAddress } from '@midnight-ntwrk/ledger-v6';
|
|
2
2
|
export type FormatContext = {
|
|
3
3
|
networkId: string | null;
|
|
4
4
|
};
|
|
5
|
+
export type Field = {
|
|
6
|
+
bytes: number;
|
|
7
|
+
modulus: bigint;
|
|
8
|
+
};
|
|
9
|
+
export declare const BLSScalar: Field;
|
|
10
|
+
export declare const ScaleBigInt: {
|
|
11
|
+
encode: (data: bigint) => Buffer;
|
|
12
|
+
decode: (repr: Uint8Array) => bigint;
|
|
13
|
+
};
|
|
5
14
|
export declare class MidnightBech32m {
|
|
6
|
-
readonly type: string;
|
|
7
|
-
readonly network: string | null;
|
|
8
|
-
readonly data: Buffer;
|
|
9
15
|
static readonly prefix = "mn";
|
|
10
16
|
static validateSegment(segmentName: string, segment: string): void;
|
|
11
17
|
static parse(bech32string: string): MidnightBech32m;
|
|
18
|
+
readonly type: string;
|
|
19
|
+
readonly network: string | null;
|
|
20
|
+
readonly data: Buffer;
|
|
12
21
|
constructor(type: string, network: string | null, data: Buffer);
|
|
13
22
|
asString(): string;
|
|
14
23
|
}
|
|
@@ -17,34 +26,54 @@ export declare class Bech32mCodec<T> {
|
|
|
17
26
|
readonly dataToBytes: (data: T) => Buffer;
|
|
18
27
|
readonly dataFromBytes: (bytes: Buffer) => T;
|
|
19
28
|
constructor(type: string, dataToBytes: (data: T) => Buffer, dataFromBytes: (bytes: Buffer) => T);
|
|
20
|
-
encode(networkId:
|
|
21
|
-
decode(networkId:
|
|
22
|
-
static createContext(networkId:
|
|
23
|
-
static createContextFromZswap(networkId: NetworkId): FormatContext;
|
|
29
|
+
encode(networkId: string | null, data: T): MidnightBech32m;
|
|
30
|
+
decode(networkId: string | null, repr: MidnightBech32m): T;
|
|
31
|
+
static createContext(networkId: string | null): FormatContext;
|
|
24
32
|
}
|
|
25
33
|
export declare class ShieldedAddress {
|
|
34
|
+
static readonly codec: Bech32mCodec<ShieldedAddress>;
|
|
26
35
|
readonly coinPublicKey: ShieldedCoinPublicKey;
|
|
27
36
|
readonly encryptionPublicKey: ShieldedEncryptionPublicKey;
|
|
28
|
-
static codec: Bech32mCodec<ShieldedAddress>;
|
|
29
37
|
constructor(coinPublicKey: ShieldedCoinPublicKey, encryptionPublicKey: ShieldedEncryptionPublicKey);
|
|
30
38
|
coinPublicKeyString(): string;
|
|
31
39
|
encryptionPublicKeyString(): string;
|
|
32
40
|
}
|
|
33
41
|
export declare class ShieldedEncryptionSecretKey {
|
|
42
|
+
static readonly codec: Bech32mCodec<ShieldedEncryptionSecretKey>;
|
|
34
43
|
readonly zswap: EncryptionSecretKey;
|
|
35
|
-
static codec: Bech32mCodec<ShieldedEncryptionSecretKey>;
|
|
36
44
|
constructor(zswap: EncryptionSecretKey);
|
|
37
45
|
}
|
|
38
46
|
export declare class ShieldedCoinPublicKey {
|
|
47
|
+
static readonly keyLength = 32;
|
|
48
|
+
static readonly codec: Bech32mCodec<ShieldedCoinPublicKey>;
|
|
49
|
+
static fromHexString(hexString: string): ShieldedCoinPublicKey;
|
|
39
50
|
readonly data: Buffer;
|
|
40
|
-
static readonly key_length = 32;
|
|
41
|
-
static codec: Bech32mCodec<ShieldedCoinPublicKey>;
|
|
42
51
|
constructor(data: Buffer);
|
|
52
|
+
toHexString(): string;
|
|
53
|
+
equals(other: string): boolean;
|
|
54
|
+
equals(other: ShieldedCoinPublicKey): boolean;
|
|
43
55
|
}
|
|
44
56
|
export declare class ShieldedEncryptionPublicKey {
|
|
57
|
+
static readonly keyLength = 32;
|
|
58
|
+
static readonly codec: Bech32mCodec<ShieldedEncryptionPublicKey>;
|
|
59
|
+
static fromHexString(hexString: string): ShieldedEncryptionPublicKey;
|
|
60
|
+
readonly data: Buffer;
|
|
61
|
+
constructor(data: Buffer);
|
|
62
|
+
toHexString(): string;
|
|
63
|
+
equals(other: string): boolean;
|
|
64
|
+
equals(other: ShieldedEncryptionPublicKey): boolean;
|
|
65
|
+
}
|
|
66
|
+
export declare class UnshieldedAddress {
|
|
45
67
|
readonly data: Buffer;
|
|
46
|
-
static readonly
|
|
47
|
-
static codec: Bech32mCodec<
|
|
68
|
+
static readonly keyLength = 32;
|
|
69
|
+
static readonly codec: Bech32mCodec<UnshieldedAddress>;
|
|
48
70
|
constructor(data: Buffer);
|
|
71
|
+
get hexString(): UserAddress;
|
|
72
|
+
}
|
|
73
|
+
export declare class DustAddress {
|
|
74
|
+
readonly data: bigint;
|
|
75
|
+
static readonly codec: Bech32mCodec<DustAddress>;
|
|
76
|
+
static readonly encodePublicKey: (networkId: string, publicKey: DustPublicKey) => string;
|
|
77
|
+
constructor(data: bigint);
|
|
78
|
+
serialize(): Buffer;
|
|
49
79
|
}
|
|
50
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EncryptionSecretKey } from '@midnight-ntwrk/ledger-v6';
|
|
2
2
|
import { bech32m } from '@scure/base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
import * as subsquidScale from '@subsquid/scale-codec';
|
|
4
|
+
export const BLSScalar = {
|
|
5
|
+
bytes: 32,
|
|
6
|
+
modulus: BigInt('0x73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001'),
|
|
7
|
+
};
|
|
8
|
+
export const ScaleBigInt = {
|
|
9
|
+
encode: (data) => {
|
|
10
|
+
const sink = new subsquidScale.ByteSink();
|
|
11
|
+
sink.compact(data);
|
|
12
|
+
return Buffer.from(sink.toBytes());
|
|
13
|
+
},
|
|
14
|
+
decode: (repr) => {
|
|
15
|
+
const src = new subsquidScale.Src(repr);
|
|
16
|
+
const res = src.compact();
|
|
17
|
+
src.assertEOF();
|
|
18
|
+
return BigInt(res);
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
export class MidnightBech32m {
|
|
8
22
|
static prefix = 'mn';
|
|
9
23
|
static validateSegment(segmentName, segment) {
|
|
10
24
|
const result = /^[A-Za-z1-9-]+$/.test(segment);
|
|
@@ -24,10 +38,13 @@ class MidnightBech32m {
|
|
|
24
38
|
}
|
|
25
39
|
return new MidnightBech32m(type, network, Buffer.from(bech32parsed.bytes));
|
|
26
40
|
}
|
|
41
|
+
type;
|
|
42
|
+
network;
|
|
43
|
+
data;
|
|
27
44
|
constructor(type, network, data) {
|
|
28
|
-
this.type = type;
|
|
29
|
-
this.network = network;
|
|
30
45
|
this.data = data;
|
|
46
|
+
this.network = network;
|
|
47
|
+
this.type = type;
|
|
31
48
|
MidnightBech32m.validateSegment('type', type);
|
|
32
49
|
if (network != null) {
|
|
33
50
|
MidnightBech32m.validateSegment('network', network);
|
|
@@ -38,14 +55,14 @@ class MidnightBech32m {
|
|
|
38
55
|
return bech32m.encode(`${MidnightBech32m.prefix}_${this.type}${networkSegment}`, bech32m.toWords(this.data), false);
|
|
39
56
|
}
|
|
40
57
|
}
|
|
41
|
-
class Bech32mCodec {
|
|
58
|
+
export class Bech32mCodec {
|
|
42
59
|
type;
|
|
43
60
|
dataToBytes;
|
|
44
61
|
dataFromBytes;
|
|
45
62
|
constructor(type, dataToBytes, dataFromBytes) {
|
|
46
|
-
this.type = type;
|
|
47
|
-
this.dataToBytes = dataToBytes;
|
|
48
63
|
this.dataFromBytes = dataFromBytes;
|
|
64
|
+
this.dataToBytes = dataToBytes;
|
|
65
|
+
this.type = type;
|
|
49
66
|
}
|
|
50
67
|
encode(networkId, data) {
|
|
51
68
|
const context = Bech32mCodec.createContext(networkId);
|
|
@@ -65,39 +82,20 @@ class Bech32mCodec {
|
|
|
65
82
|
if (networkId === null) {
|
|
66
83
|
return { networkId: null };
|
|
67
84
|
}
|
|
68
|
-
|
|
69
|
-
return { networkId };
|
|
70
|
-
}
|
|
71
|
-
else {
|
|
72
|
-
return Bech32mCodec.createContextFromZswap(networkId);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
static createContextFromZswap(networkId) {
|
|
76
|
-
switch (networkId) {
|
|
77
|
-
case NetworkId.DevNet:
|
|
78
|
-
return { networkId: 'dev' };
|
|
79
|
-
case NetworkId.MainNet:
|
|
80
|
-
return { networkId: null };
|
|
81
|
-
case NetworkId.TestNet:
|
|
82
|
-
return { networkId: 'test' };
|
|
83
|
-
case NetworkId.Undeployed:
|
|
84
|
-
return { networkId: 'undeployed' };
|
|
85
|
-
default:
|
|
86
|
-
return { networkId: null };
|
|
87
|
-
}
|
|
85
|
+
return { networkId };
|
|
88
86
|
}
|
|
89
87
|
}
|
|
90
|
-
class ShieldedAddress {
|
|
91
|
-
coinPublicKey;
|
|
92
|
-
encryptionPublicKey;
|
|
88
|
+
export class ShieldedAddress {
|
|
93
89
|
static codec = new Bech32mCodec('shield-addr', (addr) => Buffer.concat([addr.coinPublicKey.data, addr.encryptionPublicKey.data]), (bytes) => {
|
|
94
|
-
const coinPublicKey = new ShieldedCoinPublicKey(bytes.subarray(0, ShieldedCoinPublicKey.
|
|
95
|
-
const encryptionPublicKey = new ShieldedEncryptionPublicKey(bytes.subarray(ShieldedCoinPublicKey.
|
|
90
|
+
const coinPublicKey = new ShieldedCoinPublicKey(bytes.subarray(0, ShieldedCoinPublicKey.keyLength));
|
|
91
|
+
const encryptionPublicKey = new ShieldedEncryptionPublicKey(bytes.subarray(ShieldedCoinPublicKey.keyLength));
|
|
96
92
|
return new ShieldedAddress(coinPublicKey, encryptionPublicKey);
|
|
97
93
|
});
|
|
94
|
+
coinPublicKey;
|
|
95
|
+
encryptionPublicKey;
|
|
98
96
|
constructor(coinPublicKey, encryptionPublicKey) {
|
|
99
|
-
this.coinPublicKey = coinPublicKey;
|
|
100
97
|
this.encryptionPublicKey = encryptionPublicKey;
|
|
98
|
+
this.coinPublicKey = coinPublicKey;
|
|
101
99
|
}
|
|
102
100
|
coinPublicKeyString() {
|
|
103
101
|
return this.coinPublicKey.data.toString('hex');
|
|
@@ -106,34 +104,81 @@ class ShieldedAddress {
|
|
|
106
104
|
return this.encryptionPublicKey.data.toString('hex');
|
|
107
105
|
}
|
|
108
106
|
}
|
|
109
|
-
class ShieldedEncryptionSecretKey {
|
|
110
|
-
zswap;
|
|
111
|
-
static codec = new Bech32mCodec('shield-esk', (esk) => Buffer.from(esk.zswap.yesIKnowTheSecurityImplicationsOfThis_serialize(NetworkId.Undeployed).subarray(1)), (repr) => new ShieldedEncryptionSecretKey(EncryptionSecretKey.deserialize(Buffer.concat([Buffer.of(0), repr]), NetworkId.Undeployed)));
|
|
107
|
+
export class ShieldedEncryptionSecretKey {
|
|
108
|
+
static codec = new Bech32mCodec('shield-esk', (esk) => Buffer.from(esk.zswap.yesIKnowTheSecurityImplicationsOfThis_serialize()), (repr) => new ShieldedEncryptionSecretKey(EncryptionSecretKey.deserialize(repr)));
|
|
112
109
|
// There are some bits in serialization of field elements and elliptic curve points, that are hard to replicate
|
|
113
110
|
// Thus using zswap implementation directly for serialization purposes
|
|
111
|
+
zswap;
|
|
114
112
|
constructor(zswap) {
|
|
115
113
|
this.zswap = zswap;
|
|
116
114
|
}
|
|
117
115
|
}
|
|
118
|
-
class ShieldedCoinPublicKey {
|
|
119
|
-
|
|
120
|
-
static key_length = 32;
|
|
116
|
+
export class ShieldedCoinPublicKey {
|
|
117
|
+
static keyLength = 32;
|
|
121
118
|
static codec = new Bech32mCodec('shield-cpk', (cpk) => cpk.data, (repr) => new ShieldedCoinPublicKey(repr));
|
|
119
|
+
static fromHexString(hexString) {
|
|
120
|
+
return new ShieldedCoinPublicKey(Buffer.from(hexString, 'hex'));
|
|
121
|
+
}
|
|
122
|
+
data;
|
|
122
123
|
constructor(data) {
|
|
123
124
|
this.data = data;
|
|
124
|
-
if (data.length != ShieldedCoinPublicKey.
|
|
125
|
+
if (data.length != ShieldedCoinPublicKey.keyLength) {
|
|
125
126
|
throw new Error('Coin public key needs to be 32 bytes long');
|
|
126
127
|
}
|
|
127
128
|
}
|
|
129
|
+
toHexString() {
|
|
130
|
+
return this.data.toString('hex');
|
|
131
|
+
}
|
|
132
|
+
equals(other) {
|
|
133
|
+
const otherKey = typeof other === 'string' ? ShieldedCoinPublicKey.fromHexString(other) : other;
|
|
134
|
+
return otherKey.data.equals(this.data);
|
|
135
|
+
}
|
|
128
136
|
}
|
|
129
|
-
class ShieldedEncryptionPublicKey {
|
|
130
|
-
|
|
131
|
-
static key_length = 32;
|
|
137
|
+
export class ShieldedEncryptionPublicKey {
|
|
138
|
+
static keyLength = 32;
|
|
132
139
|
static codec = new Bech32mCodec('shield-epk', (cpk) => cpk.data, (repr) => new ShieldedEncryptionPublicKey(repr));
|
|
140
|
+
static fromHexString(hexString) {
|
|
141
|
+
return new ShieldedEncryptionPublicKey(Buffer.from(hexString, 'hex'));
|
|
142
|
+
}
|
|
143
|
+
data;
|
|
133
144
|
constructor(data) {
|
|
134
145
|
this.data = data;
|
|
135
146
|
}
|
|
147
|
+
toHexString() {
|
|
148
|
+
return this.data.toString('hex');
|
|
149
|
+
}
|
|
150
|
+
equals(other) {
|
|
151
|
+
const otherKey = typeof other === 'string' ? ShieldedEncryptionPublicKey.fromHexString(other) : other;
|
|
152
|
+
return otherKey.data.equals(this.data);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
export class UnshieldedAddress {
|
|
156
|
+
data;
|
|
157
|
+
static keyLength = 32;
|
|
158
|
+
static codec = new Bech32mCodec('addr', (addr) => addr.data, (repr) => new UnshieldedAddress(repr));
|
|
159
|
+
constructor(data) {
|
|
160
|
+
if (data.length != UnshieldedAddress.keyLength) {
|
|
161
|
+
throw new Error('Unshielded address needs to be 32 bytes long');
|
|
162
|
+
}
|
|
163
|
+
this.data = data;
|
|
164
|
+
}
|
|
165
|
+
get hexString() {
|
|
166
|
+
return this.data.toString('hex');
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
export class DustAddress {
|
|
170
|
+
data;
|
|
171
|
+
static codec = new Bech32mCodec('dust', (daddr) => daddr.serialize(), (repr) => new DustAddress(ScaleBigInt.decode(repr)));
|
|
172
|
+
static encodePublicKey = (networkId, publicKey) => {
|
|
173
|
+
return DustAddress.codec.encode(networkId, new DustAddress(publicKey)).asString();
|
|
174
|
+
};
|
|
175
|
+
constructor(data) {
|
|
176
|
+
if (data >= BLSScalar.modulus) {
|
|
177
|
+
throw new Error('Dust address is too large');
|
|
178
|
+
}
|
|
179
|
+
this.data = data;
|
|
180
|
+
}
|
|
181
|
+
serialize() {
|
|
182
|
+
return ScaleBigInt.encode(this.data);
|
|
183
|
+
}
|
|
136
184
|
}
|
|
137
|
-
|
|
138
|
-
export { Bech32mCodec, MidnightBech32m, ShieldedAddress, ShieldedCoinPublicKey, ShieldedEncryptionPublicKey, ShieldedEncryptionSecretKey };
|
|
139
|
-
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,41 +1,49 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midnight-ntwrk/wallet-sdk-address-format",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
6
7
|
"types": "./dist/index.d.ts",
|
|
7
8
|
"author": "IOHK",
|
|
8
9
|
"license": "Apache-2.0",
|
|
9
10
|
"publishConfig": {
|
|
10
11
|
"registry": "https://npm.pkg.github.com/"
|
|
11
12
|
},
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://github.com/midnight-ntwrk/artifacts.git"
|
|
15
|
-
},
|
|
16
13
|
"files": [
|
|
17
14
|
"dist/"
|
|
18
15
|
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/midnight-ntwrk/artifacts.git"
|
|
19
|
+
},
|
|
19
20
|
"exports": {
|
|
20
21
|
".": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"import": "./dist/index.js"
|
|
23
24
|
}
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
|
-
"@
|
|
27
|
+
"@midnight-ntwrk/ledger-v6": "6.1.0-alpha.5",
|
|
28
|
+
"@scure/base": "^1.2.6",
|
|
29
|
+
"@subsquid/scale-codec": "^4.0.1"
|
|
27
30
|
},
|
|
28
31
|
"devDependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
32
|
+
"@types/node": "22.17.0",
|
|
33
|
+
"eslint": "^9.37.0",
|
|
34
|
+
"publint": "~0.3.14",
|
|
35
|
+
"rimraf": "^6.0.1",
|
|
36
|
+
"typescript": "^5.9.3",
|
|
37
|
+
"vitest": "^3.2.4"
|
|
34
38
|
},
|
|
35
39
|
"scripts": {
|
|
36
40
|
"typecheck": "tsc -b ./tsconfig.json --noEmit",
|
|
37
|
-
"test": "
|
|
38
|
-
"lint": "eslint",
|
|
39
|
-
"
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"lint": "eslint --max-warnings 0",
|
|
43
|
+
"format": "prettier --write \"**/*.{ts,js,json,yaml,yml}\"",
|
|
44
|
+
"dist": "tsc -b ./tsconfig.build.json",
|
|
45
|
+
"dist:publish": "tsc -b ./tsconfig.publish.json",
|
|
46
|
+
"clean": "rimraf --glob dist 'tsconfig.*.tsbuildinfo' && date +%s > .clean-timestamp",
|
|
47
|
+
"publint": "publint --strict"
|
|
40
48
|
}
|
|
41
|
-
}
|
|
49
|
+
}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAGvE,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,qBAAa,eAAe;aA2BR,IAAI,EAAE,MAAM;aACZ,OAAO,EAAE,MAAM,GAAG,IAAI;aACtB,IAAI,EAAE,MAAM;IA5B9B,gBAAuB,MAAM,QAAQ;IAErC,MAAM,CAAC,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IASlE,MAAM,CAAC,KAAK,CAAC,YAAY,EAAE,MAAM,GAAG,eAAe;gBAejC,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,GAAG,IAAI,EACtB,IAAI,EAAE,MAAM;IAQ9B,QAAQ,IAAI,MAAM;CAInB;AAED,qBAAa,YAAY,CAAC,CAAC;aAEP,IAAI,EAAE,MAAM;aACZ,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,MAAM;aAChC,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,CAAC;gBAFnC,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,MAAM,EAChC,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,CAAC;IAGrD,MAAM,CAAC,SAAS,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,GAAG,eAAe;IAKtD,MAAM,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI,EAAE,IAAI,EAAE,eAAe,GAAG,CAAC;IAWtE,MAAM,CAAC,aAAa,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI,GAAG,aAAa;IAUzE,MAAM,CAAC,sBAAsB,CAAC,SAAS,EAAE,SAAS,GAAG,aAAa;CAcnE;AAED,qBAAa,eAAe;aAYR,aAAa,EAAE,qBAAqB;aACpC,mBAAmB,EAAE,2BAA2B;IAZlE,MAAM,CAAC,KAAK,gCAQV;gBAGgB,aAAa,EAAE,qBAAqB,EACpC,mBAAmB,EAAE,2BAA2B;IAGlE,mBAAmB,IAAI,MAAM;IAI7B,yBAAyB,IAAI,MAAM;CAGpC;AAED,qBAAa,2BAA2B;aAYV,KAAK,EAAE,mBAAmB;IAXtD,MAAM,CAAC,KAAK,4CAOV;gBAI0B,KAAK,EAAE,mBAAmB;CACvD;AAED,qBAAa,qBAAqB;aASJ,IAAI,EAAE,MAAM;IARxC,MAAM,CAAC,QAAQ,CAAC,UAAU,MAAM;IAEhC,MAAM,CAAC,KAAK,EAAE,YAAY,CAAC,qBAAqB,CAAC,CAI/C;gBAE0B,IAAI,EAAE,MAAM;CAKzC;AAED,qBAAa,2BAA2B;aASV,IAAI,EAAE,MAAM;IARxC,MAAM,CAAC,QAAQ,CAAC,UAAU,MAAM;IAEhC,MAAM,CAAC,KAAK,EAAE,YAAY,CAAC,2BAA2B,CAAC,CAIrD;gBAE0B,IAAI,EAAE,MAAM;CACzC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|