@cartridge/controller 0.3.13 → 0.3.15
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/lib/index.d.ts +1 -0
- package/lib/index.js +20 -2
- package/lib/index.js.map +1 -1
- package/lib/modal.js +1 -1
- package/lib/modal.js.map +1 -1
- package/lib/src/account.d.ts +88 -0
- package/lib/src/account.js +347 -0
- package/lib/src/account.js.map +1 -0
- package/lib/src/index.d.ts +23 -0
- package/lib/src/index.js +185 -0
- package/lib/src/index.js.map +1 -0
- package/lib/src/messenger.d.ts +16 -0
- package/lib/src/messenger.js +87 -0
- package/lib/src/messenger.js.map +1 -0
- package/lib/src/signer.d.ts +38 -0
- package/lib/src/signer.js +141 -0
- package/lib/src/signer.js.map +1 -0
- package/lib/src/types.d.ts +162 -0
- package/lib/src/types.js +2 -0
- package/lib/src/types.js.map +1 -0
- package/lib/src/utils.d.ts +2 -0
- package/lib/src/utils.js +16 -0
- package/lib/src/utils.js.map +1 -0
- package/lib/src/webauthn.d.ts +16 -0
- package/lib/src/webauthn.js +191 -0
- package/lib/src/webauthn.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/types.d.ts +2 -1
- package/package.json +1 -1
package/lib/src/utils.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
2
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
3
|
+
if (ar || !(i in from)) {
|
|
4
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
5
|
+
ar[i] = from[i];
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
9
|
+
};
|
|
10
|
+
import equal from "fast-deep-equal";
|
|
11
|
+
export function diff(a, b) {
|
|
12
|
+
return a.reduce(function (prev, scope) {
|
|
13
|
+
return b.some(function (approval) { return equal(approval, scope); }) ? prev : __spreadArray(__spreadArray([], prev, true), [scope], false);
|
|
14
|
+
}, []);
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,KAAK,MAAM,iBAAiB,CAAC;AAIpC,MAAM,UAAU,IAAI,CAAC,CAAU,EAAE,CAAU;IACvC,OAAO,CAAC,CAAC,MAAM,CACX,UAAC,IAAI,EAAE,KAAK;QACR,OAAA,CAAC,CAAC,IAAI,CAAC,UAAC,QAAQ,IAAK,OAAA,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,EAAtB,CAAsB,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,iCAAK,IAAI,UAAE,KAAK,SAAC;IAAtE,CAAsE,EAC1E,EAAa,CAChB,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Abi, Invocation, InvocationsSignerDetails, Signature, SignerInterface, typedData } from "starknet";
|
|
2
|
+
declare type Assertion = PublicKeyCredential & {
|
|
3
|
+
response: AuthenticatorAssertionResponse;
|
|
4
|
+
};
|
|
5
|
+
export declare class WebauthnSigner implements SignerInterface {
|
|
6
|
+
private credentialId;
|
|
7
|
+
private publicKey;
|
|
8
|
+
constructor(credentialId: string, publicKey: string);
|
|
9
|
+
getPubKey(): Promise<string>;
|
|
10
|
+
sign(hash: string): Promise<Assertion>;
|
|
11
|
+
formatAssertion(assertion: Assertion): Signature;
|
|
12
|
+
hashTransaction(transactions: Invocation[], transactionsDetail: InvocationsSignerDetails, abis?: Abi[]): string;
|
|
13
|
+
signTransaction(transactions: Invocation[], transactionsDetail: InvocationsSignerDetails, abis?: Abi[]): Promise<Signature>;
|
|
14
|
+
signMessage(td: typedData.TypedData, accountAddress: string): Promise<Signature>;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
11
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
12
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
13
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
14
|
+
function step(op) {
|
|
15
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
16
|
+
while (_) try {
|
|
17
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
18
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
19
|
+
switch (op[0]) {
|
|
20
|
+
case 0: case 1: t = op; break;
|
|
21
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
22
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24
|
+
default:
|
|
25
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
26
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
27
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
28
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
29
|
+
if (t[2]) _.ops.pop();
|
|
30
|
+
_.trys.pop(); continue;
|
|
31
|
+
}
|
|
32
|
+
op = body.call(thisArg, _);
|
|
33
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
34
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
38
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
39
|
+
if (ar || !(i in from)) {
|
|
40
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
41
|
+
ar[i] = from[i];
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
45
|
+
};
|
|
46
|
+
import { transaction, hash, typedData, number } from "starknet";
|
|
47
|
+
import base64url from "base64url";
|
|
48
|
+
var BASE = number.toBN(2).pow(86);
|
|
49
|
+
function split(n) {
|
|
50
|
+
var x = n.mod(BASE);
|
|
51
|
+
var y = n.div(BASE).mod(BASE);
|
|
52
|
+
var z = n.div(BASE).div(BASE);
|
|
53
|
+
return { x: x, y: y, z: z };
|
|
54
|
+
}
|
|
55
|
+
function convertUint8ArrayToWordArray(u8Array) {
|
|
56
|
+
var words = [], i = 0, len = u8Array.length;
|
|
57
|
+
while (i < len) {
|
|
58
|
+
words.push(((u8Array[i++] << 24) |
|
|
59
|
+
(u8Array[i++] << 16) |
|
|
60
|
+
(u8Array[i++] << 8) |
|
|
61
|
+
u8Array[i++]) >>>
|
|
62
|
+
0);
|
|
63
|
+
}
|
|
64
|
+
return {
|
|
65
|
+
sigBytes: words.length * 4,
|
|
66
|
+
words: words,
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
var WebauthnSigner = /** @class */ (function () {
|
|
70
|
+
function WebauthnSigner(credentialId, publicKey) {
|
|
71
|
+
this.credentialId = credentialId;
|
|
72
|
+
this.publicKey = publicKey;
|
|
73
|
+
}
|
|
74
|
+
WebauthnSigner.prototype.getPubKey = function () {
|
|
75
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
76
|
+
return __generator(this, function (_a) {
|
|
77
|
+
return [2 /*return*/, this.publicKey];
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
WebauthnSigner.prototype.sign = function (hash) {
|
|
82
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
83
|
+
var challenge;
|
|
84
|
+
return __generator(this, function (_a) {
|
|
85
|
+
switch (_a.label) {
|
|
86
|
+
case 0:
|
|
87
|
+
challenge = Buffer.from(hash.slice(2).padStart(64, "0").slice(0, 64), "hex");
|
|
88
|
+
return [4 /*yield*/, navigator.credentials.get({
|
|
89
|
+
publicKey: {
|
|
90
|
+
challenge: challenge,
|
|
91
|
+
timeout: 60000,
|
|
92
|
+
rpId: "cartridge.gg",
|
|
93
|
+
allowCredentials: [
|
|
94
|
+
{
|
|
95
|
+
type: "public-key",
|
|
96
|
+
id: base64url.toBuffer(this.credentialId),
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
userVerification: "required",
|
|
100
|
+
},
|
|
101
|
+
})];
|
|
102
|
+
case 1: return [2 /*return*/, (_a.sent())];
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
});
|
|
106
|
+
};
|
|
107
|
+
WebauthnSigner.prototype.formatAssertion = function (assertion) {
|
|
108
|
+
var authenticatorDataBytes = new Uint8Array(assertion.response.authenticatorData);
|
|
109
|
+
var authenticatorDataRem = 4 - (authenticatorDataBytes.length % 4);
|
|
110
|
+
if (authenticatorDataRem == 4) {
|
|
111
|
+
authenticatorDataRem = 0;
|
|
112
|
+
}
|
|
113
|
+
var authenticatorDataWords = convertUint8ArrayToWordArray(authenticatorDataBytes).words;
|
|
114
|
+
var clientDataJSONBytes = new Uint8Array(assertion.response.clientDataJSON);
|
|
115
|
+
var clientDataJSONRem = 4 - (clientDataJSONBytes.length % 4);
|
|
116
|
+
if (clientDataJSONRem == 4) {
|
|
117
|
+
clientDataJSONRem = 0;
|
|
118
|
+
}
|
|
119
|
+
var clientDataWords = convertUint8ArrayToWordArray(clientDataJSONBytes).words;
|
|
120
|
+
// Convert signature from ASN.1 sequence to "raw" format
|
|
121
|
+
var usignature = new Uint8Array(assertion.response.signature);
|
|
122
|
+
var rStart = usignature[4] === 0 ? 5 : 4;
|
|
123
|
+
var rEnd = rStart + 32;
|
|
124
|
+
var sStart = usignature[rEnd + 2] === 0 ? rEnd + 3 : rEnd + 2;
|
|
125
|
+
var r = number.toBN("0x" + Buffer.from(usignature.slice(rStart, rEnd)).toString("hex"));
|
|
126
|
+
var s = number.toBN("0x" + Buffer.from(usignature.slice(sStart)).toString("hex"));
|
|
127
|
+
var _a = split(r), r0 = _a.x, r1 = _a.y, r2 = _a.z;
|
|
128
|
+
var _b = split(s), s0 = _b.x, s1 = _b.y, s2 = _b.z;
|
|
129
|
+
return __spreadArray(__spreadArray(__spreadArray([
|
|
130
|
+
"0",
|
|
131
|
+
r0.toString(),
|
|
132
|
+
r1.toString(),
|
|
133
|
+
r2.toString(),
|
|
134
|
+
s0.toString(),
|
|
135
|
+
s1.toString(),
|
|
136
|
+
s2.toString(),
|
|
137
|
+
"9",
|
|
138
|
+
"0",
|
|
139
|
+
"".concat(clientDataWords.length),
|
|
140
|
+
"".concat(clientDataJSONRem)
|
|
141
|
+
], clientDataWords.map(function (word) { return "".concat(word); }), true), [
|
|
142
|
+
"".concat(authenticatorDataWords.length),
|
|
143
|
+
"".concat(authenticatorDataRem)
|
|
144
|
+
], false), authenticatorDataWords.map(function (word) { return "".concat(word); }), true);
|
|
145
|
+
};
|
|
146
|
+
WebauthnSigner.prototype.hashTransaction = function (transactions, transactionsDetail, abis) {
|
|
147
|
+
if (abis && abis.length !== transactions.length) {
|
|
148
|
+
throw new Error("ABI must be provided for each transaction or no transaction");
|
|
149
|
+
}
|
|
150
|
+
// now use abi to display decoded data somewhere, but as this signer is headless, we can't do that
|
|
151
|
+
var calldata = transaction.fromCallsToExecuteCalldataWithNonce(transactions, transactionsDetail.nonce);
|
|
152
|
+
return hash.calculcateTransactionHash(transactionsDetail.walletAddress, transactionsDetail.version, hash.getSelectorFromName("__execute__"), calldata, transactionsDetail.maxFee, transactionsDetail.chainId);
|
|
153
|
+
};
|
|
154
|
+
WebauthnSigner.prototype.signTransaction = function (transactions, transactionsDetail, abis) {
|
|
155
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
156
|
+
var calldata, msgHash, assertion;
|
|
157
|
+
return __generator(this, function (_a) {
|
|
158
|
+
switch (_a.label) {
|
|
159
|
+
case 0:
|
|
160
|
+
if (abis && abis.length !== transactions.length) {
|
|
161
|
+
throw new Error("ABI must be provided for each transaction or no transaction");
|
|
162
|
+
}
|
|
163
|
+
calldata = transaction.fromCallsToExecuteCalldataWithNonce(transactions, transactionsDetail.nonce);
|
|
164
|
+
msgHash = hash.calculcateTransactionHash(transactionsDetail.walletAddress, transactionsDetail.version, hash.getSelectorFromName("__execute__"), calldata, transactionsDetail.maxFee, transactionsDetail.chainId);
|
|
165
|
+
return [4 /*yield*/, this.sign(msgHash)];
|
|
166
|
+
case 1:
|
|
167
|
+
assertion = _a.sent();
|
|
168
|
+
return [2 /*return*/, this.formatAssertion(assertion)];
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
};
|
|
173
|
+
WebauthnSigner.prototype.signMessage = function (td, accountAddress) {
|
|
174
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
175
|
+
var msgHash, assertion;
|
|
176
|
+
return __generator(this, function (_a) {
|
|
177
|
+
switch (_a.label) {
|
|
178
|
+
case 0:
|
|
179
|
+
msgHash = typedData.getMessageHash(td, accountAddress);
|
|
180
|
+
return [4 /*yield*/, this.sign(msgHash)];
|
|
181
|
+
case 1:
|
|
182
|
+
assertion = _a.sent();
|
|
183
|
+
return [2 /*return*/, this.formatAssertion(assertion)];
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
};
|
|
188
|
+
return WebauthnSigner;
|
|
189
|
+
}());
|
|
190
|
+
export { WebauthnSigner };
|
|
191
|
+
//# sourceMappingURL=webauthn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webauthn.js","sourceRoot":"","sources":["../../src/webauthn.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/cuid/index.d.ts","../node_modules/starknet/dist/utils/encode.d.ts","../node_modules/starknet/dist/constants.d.ts","../node_modules/starknet/dist/utils/number.d.ts","../node_modules/starknet/dist/types/lib.d.ts","../node_modules/starknet/dist/provider/utils.d.ts","../node_modules/starknet/dist/types/provider.d.ts","../node_modules/starknet/dist/types/api/sequencer.d.ts","../node_modules/starknet/dist/types/api/rpc.d.ts","../node_modules/starknet/dist/types/api/index.d.ts","../node_modules/starknet/dist/types/signer.d.ts","../node_modules/starknet/dist/types/contract.d.ts","../node_modules/starknet/dist/types/account.d.ts","../node_modules/starknet/dist/types/index.d.ts","../node_modules/starknet/dist/provider/interface.d.ts","../node_modules/starknet/dist/provider/rpc.d.ts","../node_modules/starknet/dist/provider/sequencer.d.ts","../node_modules/starknet/dist/provider/default.d.ts","../../node_modules/ts-custom-error/dist/custom-error.d.ts","../node_modules/starknet/dist/provider/errors.d.ts","../node_modules/starknet/dist/provider/index.d.ts","../node_modules/starknet/dist/utils/typedData/types.d.ts","../node_modules/starknet/dist/utils/typedData/index.d.ts","../node_modules/starknet/dist/signer/interface.d.ts","../node_modules/starknet/dist/signer/default.d.ts","../node_modules/starknet/dist/signer/index.d.ts","../node_modules/starknet/dist/account/interface.d.ts","../node_modules/starknet/dist/account/default.d.ts","../node_modules/starknet/dist/account/index.d.ts","../node_modules/starknet/dist/contract/interface.d.ts","../node_modules/starknet/dist/contract/default.d.ts","../node_modules/starknet/dist/contract/contractFactory.d.ts","../node_modules/starknet/dist/contract/index.d.ts","../node_modules/starknet/dist/utils/hash.d.ts","../node_modules/starknet/dist/utils/json.d.ts","../node_modules/starknet/dist/utils/transaction.d.ts","../node_modules/starknet/dist/utils/stark.d.ts","../node_modules/starknet/dist/utils/ellipticCurve.d.ts","../node_modules/starknet/dist/utils/uint256.d.ts","../node_modules/starknet/dist/utils/shortString.d.ts","../node_modules/starknet/dist/utils/address.d.ts","../node_modules/starknet/dist/utils/url.d.ts","../node_modules/starknet/dist/index.d.ts","../node_modules/starknet/utils/number.d.ts","../node_modules/starknet/types/lib.d.ts","../node_modules/starknet/types/provider.d.ts","../node_modules/starknet/types/api/sequencer.d.ts","../node_modules/starknet/utils/encode.d.ts","../node_modules/starknet/constants.d.ts","../node_modules/starknet/types/api/rpc.d.ts","../node_modules/starknet/types/api/index.d.ts","../node_modules/starknet/types/signer.d.ts","../node_modules/starknet/types/contract.d.ts","../node_modules/starknet/types/index.d.ts","../node_modules/starknet/provider/utils.d.ts","../node_modules/starknet/types/account.d.ts","../../node_modules/query-string/index.d.ts","../src/types.ts","../src/messenger.ts","../src/signer.ts","../src/account.ts","../src/index.ts","../../node_modules/fast-deep-equal/index.d.ts","../src/utils.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/base64url/dist/base64url.d.ts","../src/webauthn.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-cookie/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.mergewith/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/treeify/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4046592570718236ed274564f611f502ca4e9fce87e0e078e1f5905292a22b62","ca48a1e1060cffcfd8ecc1f92965ff05077673eabc967915eeed16d2a7de509c","5248132d2fbd87db7a48f417c3683a4bb9046f12a8bddb68af4574faa286357c","e6672a9903fdc23bf2383658ac15af5f5df5fecb36fa960b888933c1c308b847","9c2b7fe559539e28787b3e4c9d791ee6f0f87db413d08e742c8e890b96c115af","4b175519f254e809216df805141e32d1ad5754213ff7ffaf656ef4c9688fa05b","90ceee8d9ef19beae36fb75463e30ad60355620d96f786e6e032ae1b2aa03014","31cc09d5de0312a6551f3d6c1d01dac76fd2397dffe3761e3d4a9b0ee0b99734","6f6259f615d70c1711232aab4e352ee204a6670e27eb9f15cb410106b8b983de","c09207ffe59f7e42610a595e036b42439079167c6b204fcb3f988eb14f973c52","09df7e0591cd077c7b3852db5f1d22e259190708a49db58b9453b9fd1c791493","41b85e2ae9e6693ec35d97fdaf40e1c8bbf3bcf8fa4e0d8f65cd5fc274fc5178","8125aa6a4b386f39dbaf3baa682dc82a6823560b6af478db6ecfe3eda1e2e80e","18329fb1bf0b5007e7e3fbde52b50ac32f41e561905c63366427a2c84fdd1ed1","aea5d780650f99a720de7c93732a5d8725624d74726e47b3e67201ae737f71ff","75a1954cc9a982d584946e67c11bb55f776ee07f94fa068174180fb59d7a7779","c8442b964ab15edc63271502bfe69ffbc258a5f385f3757c785f9a16aad41792","6dc994ab01d31906f51274b2e13f3e7348c03c28ca9ab9f2eb5309bbf609a2f4","79ba5dfa0abac7e3e7210eb2358f9e6117a46da02446cead1510f32c26eae02e","11e4c4acfac620baf36dfedfd718d206341b826177db889d9a43be8e6664115b","a86ed1d5af2993cd4590482156d02b5c65a085c8c8cf988742af77f99cc1fddd","5d58cf773c0f8ab8d9942bb556efd3b6e16fe38a07543ee26f41ef85bfde9ddc","f4cdd536dc6572b21491430c900bf6f478773deccf5b9f4e5f854eeab7cbf4cf","3586a58b9e92d43063992c7948e56432ffefb09266f14f214563433decc55d12","a3e126e5b80c4342ab755c9b12bfb2c68aad1bdcd09a03a7f661fa934df24a5f","0ed9549430e664ef1937e951bd724ea2b4c5c18b0c9d5df8c7c4896dcbabde30","07f443dd74d441b6080af46f68ac4c7d625850e49c93774398684e1830780cb9","b2d81863c356fc47200b0877a51059c0a20f29610bad87256d952212ecb3a28a","1c2d63e8f0d1682ef743cba58b45e76daf43151e21a448cff9f458c4caf70149","86cfa44a1f7c1980155ead44d97c7eb861be223c8c43179e3edcc5d0a08f32a9","5ee6c0909c6656108b4b4c40f50f333e49db136e88898b631e016e54812452b1","99a4c2db90262b19e4ad1de344ddddab0593a1e73573e9d5a67147e87a45c449","53ea14c2358f74f035193be11a7743127d83bb3eb4deeb91889bb22325047d3e","8e495ff891362fcc2b87404dcf7f2920ab6957cc5d9b87d6a4082869cca0468b","1e1841c4bde0b0675ac55b13b0335c79ae4d9eee11b977ec11c40c4196da17c4","92bd6f2ede006673136fa59417277f6143fdfa2e8945fc03a52413b9ec6e1755","555eea2ebabe6d92f190f97fd1d3417103ac80ab86ef306234a07cfdf228f854","2a2a14cb42281c6fdb7cdffc8df410566af857379cc5e4285e3a14a1193dd111","4d095ff25697a97e23965e0a5c92942af8325acdbee4af3c447dca10ec0cbdd3","d472fb5521b99f836e8e5678c75b7b60dacc5d9f43a3339c9c3bb0d8b100dccf","206a7fd7ba9b1c8e058695b900f4902a37df6fd7a63015370e1598d418b02bcc","bd2946e1fca274e1e5f062f83dc27c911190aa6a5c3f4209efc0d0beb903bd90","3cd0f47fa56c15659b8b3e09659e4dbb19a0a196a0ffadef4c3e65890797a135","e6672a9903fdc23bf2383658ac15af5f5df5fecb36fa960b888933c1c308b847","9c2b7fe559539e28787b3e4c9d791ee6f0f87db413d08e742c8e890b96c115af","90ceee8d9ef19beae36fb75463e30ad60355620d96f786e6e032ae1b2aa03014","31cc09d5de0312a6551f3d6c1d01dac76fd2397dffe3761e3d4a9b0ee0b99734","ca48a1e1060cffcfd8ecc1f92965ff05077673eabc967915eeed16d2a7de509c","5248132d2fbd87db7a48f417c3683a4bb9046f12a8bddb68af4574faa286357c","6f6259f615d70c1711232aab4e352ee204a6670e27eb9f15cb410106b8b983de","c09207ffe59f7e42610a595e036b42439079167c6b204fcb3f988eb14f973c52","09df7e0591cd077c7b3852db5f1d22e259190708a49db58b9453b9fd1c791493","41b85e2ae9e6693ec35d97fdaf40e1c8bbf3bcf8fa4e0d8f65cd5fc274fc5178","18329fb1bf0b5007e7e3fbde52b50ac32f41e561905c63366427a2c84fdd1ed1","4b175519f254e809216df805141e32d1ad5754213ff7ffaf656ef4c9688fa05b","8125aa6a4b386f39dbaf3baa682dc82a6823560b6af478db6ecfe3eda1e2e80e","27975250d16d95779140c1c2231e2f7b9d7764f4bb716b19880c01eeea715452",{"version":"85da045a377f1b0a67b7aadb9101339ca4a81174fb6d99212088526fdd6fd8a8","signature":"c9cbc9205ec8d9fa9f8d580d3c62e41f840736aabeba3db552ec7e1a34807c0c"},{"version":"1cdb918dab41252429cba67fabaa7003ff6c875b1764bb13e2dffd69ded5fc3f","signature":"9f455277a4362940e292202bb3aed51268be4310b5dde15d0040bcfe92c5bd72"},{"version":"c524ec4a4acb50f00b80082abe10ff1164ad18d6344317edb81f4b5165ef6d27","signature":"8f22f31b5bbc207cb9265260bfa3cf94f7ed3994b033dec9d46422562cb16431"},{"version":"ca93a4c1357000fdc70af8b40edfd925ac113ad1335dbd0c35da6c761c4400fd","signature":"01fa4f153920e6f3ea72e71de110ff8a6a0ef889a0f05d4a6a627096c53ad6c6"},{"version":"03e263d797f7021842597279a193836f4fb4445fc0d0953ae4fe14f6beceb147","signature":"65d9c1ec1326c3e56414d0ddcca801d366a2c59ed1f7f0b0ac25b0335f2c4568"},"37ffe3c12813b6a6d512f7c27b71f3388d03dafa10555ad5094cea393ed3d1f6",{"version":"267fee80b668921a70b3f0a3f1e97ae16b217847ddb012fd27eebf995577e67f","signature":"46ce1c74c6ee15c8beb721ff8503067a36758b2b8bf0a99e4790a163a0be29a9"},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","946d667bb57e1a5c8850161b3980a11b616ab4f1914d9b4ba71791bda1d195a5",{"version":"0ac7ccc8e72bc95c1a02eb111f558f9951ea5a6a3fbb020bb231e522b3600dc2","signature":"c10cd602d80c8471a2fb7b7a923d6bf6b211f8deadef0003d1be0a7e30042e26"},"2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"82fcf338bc21711d93d65f981a7182f9942d3ac1f268c4480537c9b62c89d10d","affectsGlobalScope":true},"89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"15418e0b2cb1655d7503fd57bd55d761764d9d1d5b7c4941bf8bca0e3831a921","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"68b7968bfe692bb273debb1d38ed534b695f8b387d36b7b7a75a81b03f8bf238","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},{"version":"78e92f26901faf513581b3db36496e55a25e24ba3e60aa3ab9d48185452a3ab1","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"module":99,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":1},"fileIdsList":[[92,152],[48,57,58,62,65,67,70,71,152],[71,72,152],[48,58,65,66,70,152],[46,152],[48,58,65,73,75,152],[48,50,58,65,73,74,152],[74,75,76,152],[50,58,65,73,152],[46,47,48,58,65,67,70,73,77,78,79,80,81,82,83,84,85,86,152],[47,48,50,58,59,60,61,152],[63,152],[59,60,61,62,64,152],[47,48,50,58,152],[47,48,50,54,58,59,152],[48,58,152],[58,67,68,152],[68,69,152],[58,67,152],[48,50,51,152],[48,49,52,53,152],[47,49,152],[48,49,50,51,152],[152],[49,51,54,55,56,57,152],[48,152],[49,152],[47,48,49,152],[48,66,152],[88,98,152],[88,90,99,152],[88,89,91,94,152],[89,93,152],[88,89,90,99,152],[89,90,95,96,97,100,152],[88,152],[89,152],[45,87,100,101,102,103,104,152],[45,87,101,102,103,105,152],[45,102,152],[45,87,101,102,103,152],[48,87,100,152],[102,107,152],[87,88,152,160],[152,162],[152,162,163,164,165,166],[152,162,164],[124,127,151,152,159,168,169,170],[125,152,159],[152,175],[152,177],[152,178],[152,184,186],[124,152,159],[152,202],[152,190,192,193,194,195,196,197,198,199,200,201,202],[152,190,191,193,194,195,196,197,198,199,200,201,202],[152,191,192,193,194,195,196,197,198,199,200,201,202],[152,190,191,192,194,195,196,197,198,199,200,201,202],[152,190,191,192,193,195,196,197,198,199,200,201,202],[152,190,191,192,193,194,196,197,198,199,200,201,202],[152,190,191,192,193,194,195,197,198,199,200,201,202],[152,190,191,192,193,194,195,196,198,199,200,201,202],[152,190,191,192,193,194,195,196,197,199,200,201,202],[152,190,191,192,193,194,195,196,197,198,200,201,202],[152,190,191,192,193,194,195,196,197,198,199,201,202],[152,190,191,192,193,194,195,196,197,198,199,200,202],[152,190,191,192,193,194,195,196,197,198,199,200,201],[109,152],[112,152],[113,118,152],[114,124,125,132,141,151,152],[114,115,124,132,152],[116,152],[117,118,125,133,152],[118,141,148,152],[119,121,124,132,152],[120,152],[121,122,152],[123,124,152],[124,152],[124,125,126,141,151,152],[124,125,126,141,152],[127,132,141,151,152],[124,125,127,128,132,141,148,151,152],[127,129,141,148,151,152],[109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[124,130,152],[131,151,152],[121,124,132,141,152],[133,152],[134,152],[112,135,152],[136,150,152,156],[137,152],[138,152],[124,139,152],[139,140,152,154],[124,141,142,143,152],[141,143,152],[141,142,152],[144,152],[145,152],[124,146,147,152],[146,147,152],[118,132,141,148,152],[149,152],[132,150,152],[113,127,138,151,152],[118,152],[141,152,153],[152,154],[152,155],[113,118,124,126,135,141,151,152,154,156],[141,152,157],[152,214],[152,208,210,211,213],[152,208,209,210,211],[127,141,152,159],[152,220],[152,159],[152,180,181],[152,180,181,182,183],[152,185],[87,100,102,103],[87,102,103],[102],[87,103],[48,87,100],[87]],"referencedMap":[[93,1],[72,2],[73,3],[71,4],[47,5],[76,6],[75,7],[77,8],[74,9],[87,10],[62,11],[64,12],[65,13],[59,14],[60,15],[61,15],[50,16],[69,17],[70,18],[68,19],[57,20],[54,21],[53,22],[52,23],[56,24],[58,25],[49,26],[51,27],[55,22],[85,26],[82,16],[46,24],[78,28],[79,24],[48,24],[84,24],[81,16],[80,16],[67,29],[66,24],[83,26],[86,24],[99,30],[100,31],[95,32],[94,33],[91,34],[97,24],[98,35],[89,36],[90,37],[96,33],[92,24],[88,24],[1,24],[9,24],[13,24],[12,24],[3,24],[14,24],[15,24],[16,24],[17,24],[18,24],[19,24],[20,24],[21,24],[4,24],[5,24],[25,24],[22,24],[23,24],[24,24],[26,24],[27,24],[28,24],[6,24],[29,24],[30,24],[31,24],[32,24],[7,24],[33,24],[34,24],[35,24],[36,24],[8,24],[37,24],[42,24],[43,24],[38,24],[39,24],[40,24],[41,24],[2,24],[44,24],[11,24],[10,24],[105,38],[106,39],[103,40],[104,41],[102,42],[108,43],[161,44],[164,45],[162,24],[167,46],[163,45],[165,47],[166,45],[171,48],[172,24],[173,24],[174,49],[169,24],[176,50],[177,24],[178,51],[179,52],[187,53],[188,24],[189,24],[168,54],[203,55],[191,56],[192,57],[190,58],[193,59],[194,60],[195,61],[196,62],[197,63],[198,64],[199,65],[200,66],[201,67],[202,68],[204,24],[109,69],[110,69],[112,70],[113,71],[114,72],[115,73],[116,74],[117,75],[118,76],[119,77],[120,78],[121,79],[122,79],[123,80],[124,81],[125,82],[126,83],[111,24],[158,24],[127,84],[128,85],[129,86],[159,87],[130,88],[131,89],[132,90],[133,91],[134,92],[135,93],[136,94],[137,95],[138,96],[139,97],[140,98],[141,99],[143,100],[142,101],[144,102],[145,103],[146,104],[147,105],[148,106],[149,107],[150,108],[151,109],[152,110],[153,111],[154,112],[155,113],[156,114],[157,115],[205,24],[206,24],[207,24],[208,24],[215,116],[213,24],[214,117],[209,24],[212,118],[170,119],[216,24],[211,24],[217,24],[218,24],[219,24],[220,24],[221,120],[160,121],[175,24],[210,24],[45,24],[107,24],[180,24],[182,122],[184,123],[183,122],[181,24],[186,124],[185,24],[101,24],[63,24]],"exportedModulesMap":[[93,1],[72,2],[73,3],[71,4],[47,5],[76,6],[75,7],[77,8],[74,9],[87,10],[62,11],[64,12],[65,13],[59,14],[60,15],[61,15],[50,16],[69,17],[70,18],[68,19],[57,20],[54,21],[53,22],[52,23],[56,24],[58,25],[49,26],[51,27],[55,22],[85,26],[82,16],[46,24],[78,28],[79,24],[48,24],[84,24],[81,16],[80,16],[67,29],[66,24],[83,26],[86,24],[99,30],[100,31],[95,32],[94,33],[91,34],[97,24],[98,35],[89,36],[90,37],[96,33],[92,24],[88,24],[1,24],[9,24],[13,24],[12,24],[3,24],[14,24],[15,24],[16,24],[17,24],[18,24],[19,24],[20,24],[21,24],[4,24],[5,24],[25,24],[22,24],[23,24],[24,24],[26,24],[27,24],[28,24],[6,24],[29,24],[30,24],[31,24],[32,24],[7,24],[33,24],[34,24],[35,24],[36,24],[8,24],[37,24],[42,24],[43,24],[38,24],[39,24],[40,24],[41,24],[2,24],[44,24],[11,24],[10,24],[105,125],[106,126],[103,127],[104,128],[102,129],[108,127],[161,130],[164,45],[162,24],[167,46],[163,45],[165,47],[166,45],[171,48],[172,24],[173,24],[174,49],[169,24],[176,50],[177,24],[178,51],[179,52],[187,53],[188,24],[189,24],[168,54],[203,55],[191,56],[192,57],[190,58],[193,59],[194,60],[195,61],[196,62],[197,63],[198,64],[199,65],[200,66],[201,67],[202,68],[204,24],[109,69],[110,69],[112,70],[113,71],[114,72],[115,73],[116,74],[117,75],[118,76],[119,77],[120,78],[121,79],[122,79],[123,80],[124,81],[125,82],[126,83],[111,24],[158,24],[127,84],[128,85],[129,86],[159,87],[130,88],[131,89],[132,90],[133,91],[134,92],[135,93],[136,94],[137,95],[138,96],[139,97],[140,98],[141,99],[143,100],[142,101],[144,102],[145,103],[146,104],[147,105],[148,106],[149,107],[150,108],[151,109],[152,110],[153,111],[154,112],[155,113],[156,114],[157,115],[205,24],[206,24],[207,24],[208,24],[215,116],[213,24],[214,117],[209,24],[212,118],[170,119],[216,24],[211,24],[217,24],[218,24],[219,24],[220,24],[221,120],[160,121],[175,24],[210,24],[45,24],[107,24],[180,24],[182,122],[184,123],[183,122],[181,24],[186,124],[185,24],[101,24],[63,24]],"semanticDiagnosticsPerFile":[93,72,73,71,47,76,75,77,74,87,62,64,65,59,60,61,50,69,70,68,57,54,53,52,56,58,49,51,55,85,82,46,78,79,48,84,81,80,67,66,83,86,99,100,95,94,91,97,98,89,90,96,92,88,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,33,34,35,36,8,37,42,43,38,39,40,41,2,44,11,10,105,106,103,104,102,108,161,164,162,167,163,165,166,171,172,173,174,169,176,177,178,179,187,188,189,168,203,191,192,190,193,194,195,196,197,198,199,200,201,202,204,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,111,158,127,128,129,159,130,131,132,133,134,135,136,137,138,139,140,141,143,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,205,206,207,208,215,213,214,209,212,170,216,211,217,218,219,220,221,160,175,210,45,107,180,182,184,183,181,186,185,101,63],"latestChangedDtsFile":"./src/webauthn.d.ts"},"version":"4.8.2"}
|
package/lib/types.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare type ProbeReply = {
|
|
|
49
49
|
};
|
|
50
50
|
export interface Keychain {
|
|
51
51
|
probe(): Promise<ProbeReply | Error>;
|
|
52
|
-
connect(policies: Policy[]): Promise<ConnectReply | Error>;
|
|
52
|
+
connect(policies: Policy[], starterPackId?: string, chainId?: SupportedChainIds): Promise<ConnectReply | Error>;
|
|
53
53
|
disconnect(): void;
|
|
54
54
|
reset(): void;
|
|
55
55
|
revoke(origin: string): void;
|
|
@@ -84,6 +84,7 @@ export interface Keychain {
|
|
|
84
84
|
}>;
|
|
85
85
|
signMessage(typedData: typedData.TypedData, account: string): Promise<Signature | Error>;
|
|
86
86
|
issueStarterPack(id: string): Promise<InvokeFunctionResponse>;
|
|
87
|
+
showQuests(gameId: string): Promise<void>;
|
|
87
88
|
}
|
|
88
89
|
export interface Modal {
|
|
89
90
|
element: HTMLDivElement;
|