@openfort/openfort-js 0.1.7 → 0.1.8

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/README.md CHANGED
@@ -1,33 +1,81 @@
1
- # openfort-typescript-client
1
+ # Openfort.js Library
2
2
 
3
- ## Registration of the player session
4
- 1. Create a key pair for the player:
5
- ```typescript
6
- const playerKey = new KeyPair();
3
+ [![Version](https://img.shields.io/npm/v/@openfort/openfort-js.svg)](https://www.npmjs.org/package/@openfort/openfort-js)
4
+
5
+ The Openfort js library provides convinient access to handle client session keys and return signed messages back to Openfort from applications written in client-side JavaScript.
6
+
7
+ ## Installation
8
+
9
+ ```shell
10
+ npm install @openfort/openfort-js
7
11
  ```
8
12
 
9
- 2. Authorize player with the game backend service and pass public key to the `openfortClient.players.createSession` api method
13
+ ```shell
14
+ yarn add @openfort/openfort-js
15
+ ```
10
16
 
11
- 3. Save private key. You can use local storage, file storage or any other type of storaged
12
- ```typescript
13
- await keyPair.saveToLocalStorage();
17
+ ## Usage
18
+
19
+ The package needs to be configured with your account's public key, which is
20
+ available in the [Openfort Dashboard][api-keys]. Require it with the key's
21
+ value:
22
+
23
+ ```js
24
+ import Openfort from '@openfort/openfort-js';
25
+ const openfort = new Openfort('pk_test_...');
14
26
  ```
27
+
28
+ ### Create and store a new player session key
29
+
30
+ 1. Create a session key pair for the player:
31
+
15
32
  ```typescript
16
- await keyPair.saveToFile();
33
+ openfort.createSessionKey();
17
34
  ```
35
+
36
+ 2. Save the generated session key pair on device:
37
+
18
38
  ```typescript
19
- await KeyPair.saveToStorage(customeStorageImplementation);
39
+ openfort.saveSessionKey();
20
40
  ```
21
41
 
22
- 4. Use the private key to communicate with openfort api.
42
+ 3. Authorize player with the game backend service and passing the address of the session key pair:
23
43
 
24
- 5. To the future use one of the load methods to load key pair. Depends on the solution, that was chosen in the step 4.
25
44
  ```typescript
26
- const playerKey = await KeyPair.loadFromLocalStorage();
45
+ const address = openfort.sessionKey.address
46
+ // API call to the game backend with the address to register it
27
47
  ```
48
+
49
+ #### Register the session key using a non-custodial signer
50
+
51
+ If the Openfort account is owned by an external signer, the owner must use it to sign and approve the registration of the session key. The hash containing the message to be signed appears in [next_actions][next-action] from the create session request.
52
+
28
53
  ```typescript
29
- const playerKey = await KeyPair.loadFromFile();
54
+ // Sign the message with the signer
55
+ await openfort.sendSignatureSessionRequest(
56
+ session_id,
57
+ signed_message
58
+ );
30
59
  ```
60
+
61
+ ### Use the session key to sign a message
62
+
63
+ The hash containing the message to be signed appears in [next_actions][next-action] from the create transactionIntent request.
64
+
31
65
  ```typescript
32
- const playerKey = await KeyPair.loadFromStorage(customeStorageImplementation);
66
+ await openfort.signMessage(message);
67
+ await openfort.sendSignatureTransactionIntentRequest(
68
+ transactionIntent_id,
69
+ signed_message
70
+ );
33
71
  ```
72
+
73
+ ## Usage examples
74
+ - [Next.js application with non-custodial signer](https://github.com/openfort-xyz/samples/tree/main/rainbow-ssv-nextjs)
75
+ - [Next.js application with custodial signer and social login](https://github.com/openfort-xyz/samples/tree/main/ssv-social-nextjs)
76
+
77
+ [next-action]: https://www.openfort.xyz/docs/api/transaction_intents#the-transaction-intent-object
78
+
79
+ <!--
80
+ # vim: set tw=79:
81
+ -->
@@ -16,6 +16,10 @@ export declare class KeyPair extends SigningKey {
16
16
  * Save to the storage initialized as a static property of the KeyPair class
17
17
  */
18
18
  save(): Promise<void>;
19
+ /**
20
+ * Remove the keypair from the storage
21
+ */
22
+ remove(): Promise<void>;
19
23
  /**
20
24
  * Load private key from the storage and generate keypair based on it.
21
25
  */
package/dist/key-pair.js CHANGED
@@ -29,6 +29,12 @@ class KeyPair extends signing_key_1.SigningKey {
29
29
  async save() {
30
30
  await KeyPair.storage.save(storage_keys_1.StorageKeys.SESSION_KEY, this.privateKey);
31
31
  }
32
+ /**
33
+ * Remove the keypair from the storage
34
+ */
35
+ async remove() {
36
+ await KeyPair.storage.remove(storage_keys_1.StorageKeys.SESSION_KEY);
37
+ }
32
38
  /**
33
39
  * Load private key from the storage and generate keypair based on it.
34
40
  */
@@ -43,6 +49,6 @@ class KeyPair extends signing_key_1.SigningKey {
43
49
  return (0, transactions_1.computeAddress)(this.privateKey);
44
50
  }
45
51
  }
46
- KeyPair.storage = new local_storage_1.LocalStorage();
47
52
  exports.KeyPair = KeyPair;
53
+ KeyPair.storage = new local_storage_1.LocalStorage();
48
54
  //# sourceMappingURL=key-pair.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"key-pair.js","sourceRoot":"","sources":["../src/key-pair.ts"],"names":[],"mappings":";;;AAAA,+DAA0D;AAC1D,2DAAqD;AACrD,yDAAmD;AACnD,4DAAsD;AACtD,gDAA+E;AAC/E,8DAA0D;AAC1D,8CAAgD;AAEhD,MAAa,OAAQ,SAAQ,wBAAU;IAGnC;;;OAGG;IACH,YAAmB,aAAwB,qBAAS,CAAC,KAAK,CAAC,gBAAgB,EAAE;QACzE,KAAK,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC;IAED;;;OAGG;IACI,IAAI,CAAC,OAAuB;QAC/B,OAAO,IAAA,qBAAa,EAAC,IAAI,CAAC,UAAU,CAAC,IAAA,kBAAW,EAAC,IAAA,gBAAQ,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1E,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,IAAI;QACb,MAAM,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,0BAAW,CAAC,WAAW,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IACzE,CAAC;IAED;;OAEG;IACI,MAAM,CAAC,KAAK,CAAC,IAAI;QACpB,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,0BAAW,CAAC,WAAW,CAAC,CAAC;QACtE,OAAO,UAAU,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,IAAA,gBAAQ,EAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IACjE,CAAC;IAED;;OAEG;IACH,IAAW,OAAO;QACd,OAAO,IAAA,6BAAc,EAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC3C,CAAC;;AAtCuB,eAAO,GAAG,IAAI,4BAAY,EAAE,CAAC;AAD5C,0BAAO"}
1
+ {"version":3,"file":"key-pair.js","sourceRoot":"","sources":["../src/key-pair.ts"],"names":[],"mappings":";;;AAAA,+DAA0D;AAC1D,2DAAqD;AACrD,yDAAmD;AACnD,4DAAsD;AACtD,gDAA+E;AAC/E,8DAA2D;AAC3D,8CAAgD;AAEhD,MAAa,OAAQ,SAAQ,wBAAU;IAGnC;;;OAGG;IACH,YAAmB,aAAwB,qBAAS,CAAC,KAAK,CAAC,gBAAgB,EAAE;QACzE,KAAK,CAAC,UAAU,CAAC,CAAC;IACtB,CAAC;IAED;;;OAGG;IACI,IAAI,CAAC,OAAuB;QAC/B,OAAO,IAAA,qBAAa,EAAC,IAAI,CAAC,UAAU,CAAC,IAAA,kBAAW,EAAC,IAAA,gBAAQ,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1E,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,IAAI;QACb,MAAM,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,0BAAW,CAAC,WAAW,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IACzE,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,MAAM;QACf,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,0BAAW,CAAC,WAAW,CAAC,CAAC;IAC1D,CAAC;IAED;;OAEG;IACI,MAAM,CAAC,KAAK,CAAC,IAAI;QACpB,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,0BAAW,CAAC,WAAW,CAAC,CAAC;QACtE,OAAO,UAAU,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,IAAA,gBAAQ,EAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IACjE,CAAC;IAED;;OAEG;IACH,IAAW,OAAO;QACd,OAAO,IAAA,6BAAc,EAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC3C,CAAC;;AA9CL,0BA+CC;AA9C2B,eAAO,GAAG,IAAI,4BAAY,EAAE,CAAC"}
@@ -13,6 +13,7 @@ export default class Openfort {
13
13
  createSessionKey(): KeyPair;
14
14
  loadSessionKey(): Promise<KeyPair | null>;
15
15
  saveSessionKey(): Promise<void>;
16
+ removeSessionKey(): Promise<void>;
16
17
  signMessage(message: Bytes | string): string;
17
18
  sendSignatureSessionRequest(sessionId: string, signature: string): Promise<SessionResponse>;
18
19
  sendSignatureTransactionIntentRequest(transactionIntentId: string, signature: string): Promise<TransactionIntentResponse>;
package/dist/openfort.js CHANGED
@@ -46,6 +46,9 @@ class Openfort {
46
46
  async saveSessionKey() {
47
47
  return this.sessionKey.save();
48
48
  }
49
+ async removeSessionKey() {
50
+ return this.sessionKey.remove();
51
+ }
49
52
  signMessage(message) {
50
53
  return this.sessionKey.sign(message);
51
54
  }
@@ -58,6 +61,7 @@ class Openfort {
58
61
  return result.data;
59
62
  }
60
63
  }
64
+ exports.default = Openfort;
61
65
  __decorate([
62
66
  (0, http_error_handler_1.httpErrorHandler)(),
63
67
  __metadata("design:type", Function),
@@ -70,5 +74,4 @@ __decorate([
70
74
  __metadata("design:paramtypes", [String, String]),
71
75
  __metadata("design:returntype", Promise)
72
76
  ], Openfort.prototype, "sendSignatureTransactionIntentRequest", null);
73
- exports.default = Openfort;
74
77
  //# sourceMappingURL=openfort.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"openfort.js","sourceRoot":"","sources":["../src/openfort.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,mDAA8C;AAC9C,+BAAqG;AACrG,yCAAmC;AACnC,mEAA4D;AAG5D,MAAqB,QAAQ;IAMzB,YAAY,WAAmB,EAAE,QAAiB;QAC9C,IAAI,CAAC,cAAc,GAAG,IAAI,6BAAa,CAAC,EAAC,WAAW,EAAE,QAAQ,EAAC,CAAC,CAAC;IACrE,CAAC;IAED,IAAW,UAAU;QACjB,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;SACrD;QACD,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAED,IAAc,WAAW;QACrB,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE;YACpB,IAAI,CAAC,YAAY,GAAG,IAAI,iBAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC5D;QACD,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED,IAAc,eAAe;QACzB,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;YACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,2BAAqB,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC1E;QACD,OAAO,IAAI,CAAC,gBAAgB,CAAC;IACjC,CAAC;IAEM,gBAAgB;QACnB,IAAI,CAAC,WAAW,GAAG,IAAI,kBAAO,EAAE,CAAC;QACjC,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAEM,KAAK,CAAC,cAAc;QACvB,IAAI,CAAC,WAAW,GAAG,MAAM,kBAAO,CAAC,IAAI,EAAE,CAAC;QACxC,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAEM,KAAK,CAAC,cAAc;QACvB,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAClC,CAAC;IAEM,WAAW,CAAC,OAAuB;QACtC,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACzC,CAAC;IAGY,AAAN,KAAK,CAAC,2BAA2B,CAAC,SAAiB,EAAE,SAAiB;QACzE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QAC7E,OAAO,MAAM,CAAC,IAAI,CAAC;IACvB,CAAC;IAGY,AAAN,KAAK,CAAC,qCAAqC,CAC9C,mBAA2B,EAC3B,SAAiB;QAEjB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;QACpF,OAAO,MAAM,CAAC,IAAI,CAAC;IACvB,CAAC;CACJ;AAbgB;IADZ,IAAA,qCAAgB,GAAE;;;;2DAIlB;AAGY;IADZ,IAAA,qCAAgB,GAAE;;;;qEAOlB;AA9DL,2BA+DC"}
1
+ {"version":3,"file":"openfort.js","sourceRoot":"","sources":["../src/openfort.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,mDAA8C;AAC9C,+BAAqG;AACrG,yCAAmC;AACnC,mEAA4D;AAG5D,MAAqB,QAAQ;IAMzB,YAAY,WAAmB,EAAE,QAAiB;QAC9C,IAAI,CAAC,cAAc,GAAG,IAAI,6BAAa,CAAC,EAAC,WAAW,EAAE,QAAQ,EAAC,CAAC,CAAC;IACrE,CAAC;IAED,IAAW,UAAU;QACjB,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;SACrD;QACD,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAED,IAAc,WAAW;QACrB,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE;YACpB,IAAI,CAAC,YAAY,GAAG,IAAI,iBAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC5D;QACD,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED,IAAc,eAAe;QACzB,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;YACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,2BAAqB,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;SAC1E;QACD,OAAO,IAAI,CAAC,gBAAgB,CAAC;IACjC,CAAC;IAEM,gBAAgB;QACnB,IAAI,CAAC,WAAW,GAAG,IAAI,kBAAO,EAAE,CAAC;QACjC,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAEM,KAAK,CAAC,cAAc;QACvB,IAAI,CAAC,WAAW,GAAG,MAAM,kBAAO,CAAC,IAAI,EAAE,CAAC;QACxC,OAAO,IAAI,CAAC,WAAW,CAAC;IAC5B,CAAC;IAEM,KAAK,CAAC,cAAc;QACvB,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAClC,CAAC;IAEM,KAAK,CAAC,gBAAgB;QACzB,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC;IACpC,CAAC;IAEM,WAAW,CAAC,OAAuB;QACtC,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACzC,CAAC;IAGY,AAAN,KAAK,CAAC,2BAA2B,CAAC,SAAiB,EAAE,SAAiB;QACzE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QAC7E,OAAO,MAAM,CAAC,IAAI,CAAC;IACvB,CAAC;IAGY,AAAN,KAAK,CAAC,qCAAqC,CAC9C,mBAA2B,EAC3B,SAAiB;QAEjB,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,mBAAmB,EAAE,SAAS,CAAC,CAAC;QACpF,OAAO,MAAM,CAAC,IAAI,CAAC;IACvB,CAAC;CACJ;AAnED,2BAmEC;AAbgB;IADZ,IAAA,qCAAgB,GAAE;;;;2DAIlB;AAGY;IADZ,IAAA,qCAAgB,GAAE;;;;qEAOlB"}
@@ -27,7 +27,7 @@ class LocalStorage {
27
27
  LocalStorage.localStorage.removeItem(this.formatKey(key));
28
28
  }
29
29
  }
30
+ exports.LocalStorage = LocalStorage;
30
31
  LocalStorage._prefix = "OPENFORT";
31
32
  LocalStorage._separator = "/";
32
- exports.LocalStorage = LocalStorage;
33
33
  //# sourceMappingURL=local-storage.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"local-storage.js","sourceRoot":"","sources":["../../src/storage/local-storage.ts"],"names":[],"mappings":";;;AAGA,MAAa,YAAY;IAIrB,YAAoC,IAAa;QAAb,SAAI,GAAJ,IAAI,CAAS;IAAG,CAAC;IAE9C,MAAM,KAAK,WAAW;QACzB,OAAO,cAAc,IAAI,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC;IAC7D,CAAC;IAEO,SAAS,CAAC,GAAgB;QAC9B,OAAO,CAAC,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC;IACjG,CAAC;IAEO,MAAM,KAAK,YAAY;QAC3B,IAAI,YAAY,CAAC,WAAW,EAAE;YAC1B,OAAO,MAAM,CAAC,YAAqC,CAAC;SACvD;QACD,MAAM,KAAK,CAAC,uDAAuD,CAAC,CAAC;IACzE,CAAC;IAEM,KAAK,CAAC,GAAG,CAAC,GAAgB;QAC7B,OAAO,YAAY,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;IAClE,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,GAAgB,EAAE,KAAa;QAC7C,YAAY,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;IAClE,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,GAAgB;QAChC,YAAY,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9D,CAAC;;AA9BuB,oBAAO,GAAG,UAAU,CAAC;AACrB,uBAAU,GAAG,GAAG,CAAC;AAFhC,oCAAY"}
1
+ {"version":3,"file":"local-storage.js","sourceRoot":"","sources":["../../src/storage/local-storage.ts"],"names":[],"mappings":";;;AAGA,MAAa,YAAY;IAIrB,YAAoC,IAAa;QAAb,SAAI,GAAJ,IAAI,CAAS;IAAG,CAAC;IAE9C,MAAM,KAAK,WAAW;QACzB,OAAO,cAAc,IAAI,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC;IAC7D,CAAC;IAEO,SAAS,CAAC,GAAgB;QAC9B,OAAO,CAAC,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC;IACjG,CAAC;IAEO,MAAM,KAAK,YAAY;QAC3B,IAAI,YAAY,CAAC,WAAW,EAAE;YAC1B,OAAO,MAAM,CAAC,YAAqC,CAAC;SACvD;QACD,MAAM,KAAK,CAAC,uDAAuD,CAAC,CAAC;IACzE,CAAC;IAEM,KAAK,CAAC,GAAG,CAAC,GAAgB;QAC7B,OAAO,YAAY,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;IAClE,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,GAAgB,EAAE,KAAa;QAC7C,YAAY,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;IAClE,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,GAAgB;QAChC,YAAY,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9D,CAAC;;AA/BL,oCAgCC;AA/B2B,oBAAO,GAAG,UAAU,CAAC;AACrB,uBAAU,GAAG,GAAG,CAAC"}
@@ -5,5 +5,5 @@ var StorageKeys;
5
5
  (function (StorageKeys) {
6
6
  StorageKeys["SESSION_KEY"] = "SESSION-KEY";
7
7
  StorageKeys["SESSION_ID"] = "SESSION-ID";
8
- })(StorageKeys = exports.StorageKeys || (exports.StorageKeys = {}));
8
+ })(StorageKeys || (exports.StorageKeys = StorageKeys = {}));
9
9
  //# sourceMappingURL=storage-keys.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"storage-keys.js","sourceRoot":"","sources":["../../src/storage/storage-keys.ts"],"names":[],"mappings":";;;AAAA,IAAY,WAGX;AAHD,WAAY,WAAW;IACnB,0CAA2B,CAAA;IAC3B,wCAAyB,CAAA;AAC7B,CAAC,EAHW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAGtB"}
1
+ {"version":3,"file":"storage-keys.js","sourceRoot":"","sources":["../../src/storage/storage-keys.ts"],"names":[],"mappings":";;;AAAA,IAAY,WAGX;AAHD,WAAY,WAAW;IACnB,0CAA2B,CAAA;IAC3B,wCAAyB,CAAA;AAC7B,CAAC,EAHW,WAAW,2BAAX,WAAW,QAGtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfort/openfort-js",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "repository": {
@@ -1 +1 @@
1
- {"program":{"fileNames":["./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.es2021.d.ts","./node_modules/typescript/lib/lib.dom.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.es2019.intl.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.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/configuration.ts","./node_modules/axios/index.d.ts","./src/base.ts","./src/common.ts","./src/api.ts","./node_modules/@noble/curves/abstract/modular.d.ts","./node_modules/@noble/curves/abstract/utils.d.ts","./node_modules/@noble/curves/abstract/curve.d.ts","./node_modules/@noble/curves/abstract/weierstrass.d.ts","./node_modules/@noble/curves/abstract/hash-to-curve.d.ts","./node_modules/@noble/curves/secp256k1.d.ts","./node_modules/ethereum-cryptography/secp256k1.d.ts","./src/storage/storage-keys.ts","./src/storage/base-storage.ts","./src/storage/local-storage.ts","./node_modules/@ethersproject/bytes/lib/index.d.ts","./node_modules/@ethersproject/signing-key/lib/index.d.ts","./node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","./node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","./node_modules/@ethersproject/bignumber/lib/index.d.ts","./node_modules/@ethersproject/transactions/lib/index.d.ts","./node_modules/@ethersproject/hash/lib/id.d.ts","./node_modules/@ethersproject/hash/lib/namehash.d.ts","./node_modules/@ethersproject/hash/lib/message.d.ts","./node_modules/@ethersproject/networks/lib/types.d.ts","./node_modules/@ethersproject/networks/lib/index.d.ts","./node_modules/@ethersproject/properties/lib/index.d.ts","./node_modules/@ethersproject/web/lib/index.d.ts","./node_modules/@ethersproject/abstract-provider/lib/index.d.ts","./node_modules/@ethersproject/abstract-signer/lib/index.d.ts","./node_modules/@ethersproject/hash/lib/typed-data.d.ts","./node_modules/@ethersproject/hash/lib/index.d.ts","./src/key-pair.ts","./src/utils/http-error-handler.ts","./src/openfort.ts","./src/index.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/dom-events.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/readline/promises.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/test.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"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"b7e4d09ded64125df0daa02dddcb058a0e0b27890dcc89af8359b1b995b8a201","signature":"f7b21c7243d0a7a5a807fdb49a01393ff61456b9d63ce0ce3a1045c1aca94ff6"},"1d729ea435a93e1a70519d06a6f13fa418c4c39a52b69e6db86750ebfcdf5554",{"version":"2b806646942eb5f73a5e30b625e3a4537119d7dfdec309c4bf60c4afd169892c","signature":"3c9f538c143bd3b2a7e7e11741dcc651eb458e686e79abbb59ed3499685f1382"},{"version":"94e239f085bea721ae6cfbea540317003d3b43486b8bc6f1f95641ead0f425c0","signature":"383542e58c58ca1be40aedfa578206a122b34accbb93454699b30c3bff14d304"},{"version":"a808be71ee42d1f1aba0497920b44ba17ebf532d43918075265f46329bfd2044","signature":"e06487ba72a00791625a72e502f408eb4ad111af647cf7396646223b3ba18533"},"f7f00660eb7c02fcd79ff90cd63aa18c471d3ddcd60d6b51d5158462f01b1680","ea1694e9b7c92c6f063bba813f4106a7aede0fe38bfcf8560dba2eaea710bfc9","c8cc38cbba80bfd5719c1b9d7efcd76fc90d4497e8a9aa715db426993274f0ae","e4afd5fe4d4f9bb710226e611d8d740510519dd78f89574ce02ac7891a408c06","974abfda37dc09479dbd0872ceb9f54f6b04cd15089442cf82555b81402fcb34","db747d79aba68ceecad983df9491607f9d9544563fff3c38ecc99c2e37318683","784891f08fc3daeedd35102d3ee2fe9357d1db1836e169e4b659c2a98592d7c4",{"version":"1e8d8835905edbcaec052c3f3b232c106bdf3cbce79726dd7e219a6427bf8201","signature":"99a429f12a32868f8398679fc5aa5743e762b936c7555f7d576a2c66b15e34f8"},{"version":"8304e6d41fd82c44767aa70607e17b31eec3b35cbeb49dc01dbd4f35e0fdfcb9","signature":"3ebf38b892c404b10b0106d66d79c311ec16413d84f41f0bbb46ecb57e15040b"},{"version":"9d6ddf64f7f7da33d812124bb3b09acba88d878c9467d234ca8c216a99bebef0","signature":"9984660c55e9f311c19c24d12af646dea002a8cb918c02fa0ecd3932d4067050"},"691732c9f7b276b9692e5b37735fca2962d323f3c6b01ffb81d76ed8df8917e0","41640a7b69177e472546d1931f762401102baee8ae9d07d2d94dd8e01305c999","c8757e7dcea280e5dd2b29dd0fb873b5692b1ac66d96b38ecbaa3bd2b85570d8","883c2e5229997a91f51959fcf6dea6e0c588c393a748ecb5914bac36da166ae0","eb589f99701ed5e876f7aff403ac119e33a6d52714055489d53e59f7747e5bc1","85a6a5a1a6df5df5f1a868abf94a19a51b93ccece40decbdd36fcae7e7ff846d","bede61fa7672a5ca191125df32d5601069d2bd4d458c965fa139f91aaecc9b91","fb3fce5d297c12595b2301d1c39352cbc0d162e6bfd55fc31edf8c8e28b78cac","223f0342baa9ce216b2768c7944433256cc96b38014d5c5a25fe633ca9c3b6ed","afaaa91d7154a55c42aad47b832d6d2dbaff5349f84a88f51ac27b8367ab40d7","a5c4fcac0c69dc0e23e58f2a6705fa35063e0dc4865733a0d349c74b565359fe","8077ed85d83daedc53807df293f785557813c1c985ce139fad12c8275302b665","da16c71ec97c57fc391d2d5909c35202e633f078fef7a7ea64170a7ec75ec2c7","c80c253336798723cb8f73d294625364c1b440d460ad1ec4f071841364d51969","c1c9bece70a6e2964071b2aceefbcd482d07f2b7b50918617e0cb481b47f9195","2bfbd35239fd18e4c8740f1c4b8a8a9bfe7c111645747bd1dd6f5c7b294e418d","c78c47cecd2b6cb6554c7c695fe90b939a1c4f40a1a076e242b451a0b3f1f523",{"version":"ae8c0aca969eb9935e59e0717847e49167f121ddb2a89e9e8a3f2977bc87db8e","signature":"daf01bc3c3637252beff19b2e09d283adf130b2e0e95f2984ab99b4afb40aff5"},{"version":"519350a1be1eceddfb67a132ea694cc759453d0844f6b0bf04eaf6b74396bada","signature":"5f710a04e1ea742aeb3a794995b1794847fa9c998629c7447fc07d7ecad7cfe1"},{"version":"734cd9ae5cb2f629f53973edb04abbfa2dcd19df9c9e1a135d4991020540aa72","signature":"67a92272f80967e8c5baa0f6f284d4fdff1edfb908969cd8b6d968b623ea7962"},{"version":"daafdb0df79cfa5622917c1541d63765dc93376d17d7ee9638c562f79f68fca0","signature":"f44723f3ea73bad3589c6d220217be82725e5f80b550adba770635ede26e7703"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"241a2e19e03fd1d884e0f304429378d05bc2c1b26b5693c84868f7ad0674982d","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","0b70ce7a20fa21c7201a5a972b7f2288cb90ace8a2dde9f3344b5dfc6504abaf",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3fd0f1af75fb7abe0ea376aa71541daaf489f3d87c394b1165db684ea44b48be","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"f1a0b2dde686cb8a995d4ed11848be5eaf76fd5d56532942e0737b39d4a02c6d","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"6a325d4c96569bdd5a9a59f819a672e2d5644ee6cf98ab910e0064402557af8d","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","244cdeb8c344eb42e6142cbb0727752b9b735443fba7007c11b14ca06ebed97c",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","69f5747ad0887c24c76858ed458712101771349f2287e21871fcd1562daa7dc0",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"220717df86539e219f619d31965d177e7235185e4bc6f6e6ed7e11a9b004d5ca"],"root":[50,[52,54],[62,64],[82,85]],"options":{"composite":true,"declaration":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strictBindCallApply":true,"target":8},"fileIdsList":[[65,69,70,75,76,77,132],[65,69,76,78,132],[65,132],[65,67,132],[67,68,132],[132],[71,72,73,80,132],[79,132],[74,132],[65,69,132],[55,132],[55,56,57,132],[55,56,58,59,132],[86,132],[89,132],[90,95,123,132],[91,102,103,110,120,131,132],[91,92,102,110,132],[93,132],[94,95,103,111,132],[95,120,128,132],[96,98,102,110,132],[97,132],[98,99,132],[102,132],[100,102,132],[102,103,104,120,131,132],[102,103,104,117,120,123,132],[132,136],[98,102,105,110,120,131,132],[102,103,105,106,110,120,128,131,132],[105,107,120,128,131,132],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,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],[102,108,132],[109,131,132],[98,102,110,120,132],[111,132],[112,132],[89,113,132],[114,130,132,136],[115,132],[116,132],[102,117,118,132],[117,119,132,134],[90,102,120,121,122,123,132],[90,120,122,132],[120,121,132],[123,132],[124,132],[120,132],[102,126,127,132],[126,127,132],[95,110,120,128,132],[129,132],[110,130,132],[90,105,116,131,132],[95,132],[120,132,133],[132,134],[132,135],[90,95,102,104,113,120,131,132,134,136],[120,132,137],[60,132],[50,51,52,53,132],[50,51,132],[50,51,52,132],[82,84,132],[61,62,64,65,66,70,81,132],[50,54,65,82,83,132],[62,132],[62,63,132],[51,132],[50,51,52],[50,51],[82,84],[65,66],[54,65,82],[62],[62,63]],"referencedMap":[[78,1],[79,2],[67,3],[68,4],[69,5],[65,6],[71,6],[81,7],[73,3],[72,6],[80,8],[75,9],[74,6],[76,6],[66,3],[70,10],[77,6],[57,11],[59,12],[55,6],[56,6],[58,12],[60,13],[86,14],[87,14],[89,15],[90,16],[91,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,24],[101,25],[100,26],[102,25],[103,27],[104,28],[88,29],[138,6],[105,30],[106,31],[107,32],[139,33],[108,34],[109,35],[110,36],[111,37],[112,38],[113,39],[114,40],[115,41],[116,42],[117,43],[118,43],[119,44],[120,45],[122,46],[121,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[51,6],[61,63],[48,6],[49,6],[9,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[4,6],[23,6],[20,6],[21,6],[22,6],[24,6],[25,6],[26,6],[5,6],[27,6],[28,6],[29,6],[30,6],[6,6],[34,6],[31,6],[32,6],[33,6],[35,6],[7,6],[36,6],[41,6],[42,6],[37,6],[38,6],[39,6],[40,6],[8,6],[46,6],[43,6],[44,6],[45,6],[1,6],[47,6],[54,64],[52,65],[53,66],[50,6],[85,67],[82,68],[84,69],[63,70],[64,71],[62,6],[83,72]],"exportedModulesMap":[[78,1],[79,2],[67,3],[68,4],[69,5],[65,6],[71,6],[81,7],[73,3],[72,6],[80,8],[75,9],[74,6],[76,6],[66,3],[70,10],[77,6],[57,11],[59,12],[55,6],[56,6],[58,12],[60,13],[86,14],[87,14],[89,15],[90,16],[91,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,24],[101,25],[100,26],[102,25],[103,27],[104,28],[88,29],[138,6],[105,30],[106,31],[107,32],[139,33],[108,34],[109,35],[110,36],[111,37],[112,38],[113,39],[114,40],[115,41],[116,42],[117,43],[118,43],[119,44],[120,45],[122,46],[121,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[51,6],[61,63],[48,6],[49,6],[9,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[4,6],[23,6],[20,6],[21,6],[22,6],[24,6],[25,6],[26,6],[5,6],[27,6],[28,6],[29,6],[30,6],[6,6],[34,6],[31,6],[32,6],[33,6],[35,6],[7,6],[36,6],[41,6],[42,6],[37,6],[38,6],[39,6],[40,6],[8,6],[46,6],[43,6],[44,6],[45,6],[1,6],[47,6],[54,73],[52,74],[53,73],[85,75],[82,76],[84,77],[63,78],[64,79]],"semanticDiagnosticsPerFile":[78,79,67,68,69,65,71,81,73,72,80,75,74,76,66,70,77,57,59,55,56,58,60,86,87,89,90,91,92,93,94,95,96,97,98,99,101,100,102,103,104,88,138,105,106,107,139,108,109,110,111,112,113,114,115,116,117,118,119,120,122,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,51,61,48,49,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,8,46,43,44,45,1,47,54,52,53,50,85,82,84,63,64,62,83],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.0.4"}
1
+ {"program":{"fileNames":["./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.es2021.d.ts","./node_modules/typescript/lib/lib.dom.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.es2019.intl.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.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/configuration.ts","./node_modules/axios/index.d.ts","./src/base.ts","./src/common.ts","./src/api.ts","./node_modules/@noble/curves/abstract/modular.d.ts","./node_modules/@noble/curves/abstract/utils.d.ts","./node_modules/@noble/curves/abstract/curve.d.ts","./node_modules/@noble/curves/abstract/weierstrass.d.ts","./node_modules/@noble/curves/abstract/hash-to-curve.d.ts","./node_modules/@noble/curves/secp256k1.d.ts","./node_modules/ethereum-cryptography/secp256k1.d.ts","./src/storage/storage-keys.ts","./src/storage/base-storage.ts","./src/storage/local-storage.ts","./node_modules/@ethersproject/bytes/lib/index.d.ts","./node_modules/@ethersproject/signing-key/lib/index.d.ts","./node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","./node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","./node_modules/@ethersproject/bignumber/lib/index.d.ts","./node_modules/@ethersproject/transactions/lib/index.d.ts","./node_modules/@ethersproject/hash/lib/id.d.ts","./node_modules/@ethersproject/hash/lib/namehash.d.ts","./node_modules/@ethersproject/hash/lib/message.d.ts","./node_modules/@ethersproject/networks/lib/types.d.ts","./node_modules/@ethersproject/networks/lib/index.d.ts","./node_modules/@ethersproject/properties/lib/index.d.ts","./node_modules/@ethersproject/web/lib/index.d.ts","./node_modules/@ethersproject/abstract-provider/lib/index.d.ts","./node_modules/@ethersproject/abstract-signer/lib/index.d.ts","./node_modules/@ethersproject/hash/lib/typed-data.d.ts","./node_modules/@ethersproject/hash/lib/index.d.ts","./src/key-pair.ts","./src/utils/http-error-handler.ts","./src/openfort.ts","./src/index.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/dom-events.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/readline/promises.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/test.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"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"b7e4d09ded64125df0daa02dddcb058a0e0b27890dcc89af8359b1b995b8a201","signature":"f7b21c7243d0a7a5a807fdb49a01393ff61456b9d63ce0ce3a1045c1aca94ff6"},"1d729ea435a93e1a70519d06a6f13fa418c4c39a52b69e6db86750ebfcdf5554",{"version":"2b806646942eb5f73a5e30b625e3a4537119d7dfdec309c4bf60c4afd169892c","signature":"3c9f538c143bd3b2a7e7e11741dcc651eb458e686e79abbb59ed3499685f1382"},{"version":"94e239f085bea721ae6cfbea540317003d3b43486b8bc6f1f95641ead0f425c0","signature":"383542e58c58ca1be40aedfa578206a122b34accbb93454699b30c3bff14d304"},{"version":"a808be71ee42d1f1aba0497920b44ba17ebf532d43918075265f46329bfd2044","signature":"e06487ba72a00791625a72e502f408eb4ad111af647cf7396646223b3ba18533"},"f7f00660eb7c02fcd79ff90cd63aa18c471d3ddcd60d6b51d5158462f01b1680","ea1694e9b7c92c6f063bba813f4106a7aede0fe38bfcf8560dba2eaea710bfc9","c8cc38cbba80bfd5719c1b9d7efcd76fc90d4497e8a9aa715db426993274f0ae","e4afd5fe4d4f9bb710226e611d8d740510519dd78f89574ce02ac7891a408c06","974abfda37dc09479dbd0872ceb9f54f6b04cd15089442cf82555b81402fcb34","db747d79aba68ceecad983df9491607f9d9544563fff3c38ecc99c2e37318683","784891f08fc3daeedd35102d3ee2fe9357d1db1836e169e4b659c2a98592d7c4",{"version":"1e8d8835905edbcaec052c3f3b232c106bdf3cbce79726dd7e219a6427bf8201","signature":"99a429f12a32868f8398679fc5aa5743e762b936c7555f7d576a2c66b15e34f8"},{"version":"8304e6d41fd82c44767aa70607e17b31eec3b35cbeb49dc01dbd4f35e0fdfcb9","signature":"3ebf38b892c404b10b0106d66d79c311ec16413d84f41f0bbb46ecb57e15040b"},{"version":"9d6ddf64f7f7da33d812124bb3b09acba88d878c9467d234ca8c216a99bebef0","signature":"9984660c55e9f311c19c24d12af646dea002a8cb918c02fa0ecd3932d4067050"},"691732c9f7b276b9692e5b37735fca2962d323f3c6b01ffb81d76ed8df8917e0","41640a7b69177e472546d1931f762401102baee8ae9d07d2d94dd8e01305c999","c8757e7dcea280e5dd2b29dd0fb873b5692b1ac66d96b38ecbaa3bd2b85570d8","883c2e5229997a91f51959fcf6dea6e0c588c393a748ecb5914bac36da166ae0","eb589f99701ed5e876f7aff403ac119e33a6d52714055489d53e59f7747e5bc1","85a6a5a1a6df5df5f1a868abf94a19a51b93ccece40decbdd36fcae7e7ff846d","bede61fa7672a5ca191125df32d5601069d2bd4d458c965fa139f91aaecc9b91","fb3fce5d297c12595b2301d1c39352cbc0d162e6bfd55fc31edf8c8e28b78cac","223f0342baa9ce216b2768c7944433256cc96b38014d5c5a25fe633ca9c3b6ed","afaaa91d7154a55c42aad47b832d6d2dbaff5349f84a88f51ac27b8367ab40d7","a5c4fcac0c69dc0e23e58f2a6705fa35063e0dc4865733a0d349c74b565359fe","8077ed85d83daedc53807df293f785557813c1c985ce139fad12c8275302b665","da16c71ec97c57fc391d2d5909c35202e633f078fef7a7ea64170a7ec75ec2c7","c80c253336798723cb8f73d294625364c1b440d460ad1ec4f071841364d51969","c1c9bece70a6e2964071b2aceefbcd482d07f2b7b50918617e0cb481b47f9195","2bfbd35239fd18e4c8740f1c4b8a8a9bfe7c111645747bd1dd6f5c7b294e418d","c78c47cecd2b6cb6554c7c695fe90b939a1c4f40a1a076e242b451a0b3f1f523",{"version":"d477e5491288bd316ce315c54971c1667cc6f572e3877aaf63ac869af0a958d7","signature":"6e09bcb9014b24dfa5c5feb32710e6deeb3f58536ce2351e6fa662890c3c7335"},{"version":"519350a1be1eceddfb67a132ea694cc759453d0844f6b0bf04eaf6b74396bada","signature":"5f710a04e1ea742aeb3a794995b1794847fa9c998629c7447fc07d7ecad7cfe1"},{"version":"a53322ad53e8a9df14eab52c10060a4bad694a94ba281f281ff98c21d3c41824","signature":"b3a8e1939445b7387b01406d2d6ba3974f3fa0dcee19a9ef1f0b539e97bd9fd4"},{"version":"daafdb0df79cfa5622917c1541d63765dc93376d17d7ee9638c562f79f68fca0","signature":"f44723f3ea73bad3589c6d220217be82725e5f80b550adba770635ede26e7703"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","b8e431e9b9bb2dc832b23d4e3e02774e953d5537998923f215ea446169e9a61e","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"247aa3419c98713231952b33801d4f46563fe542e03604acd8c63ac45a32409c"],"root":[50,[52,54],[62,64],[82,85]],"options":{"composite":true,"declaration":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strictBindCallApply":true,"target":8},"fileIdsList":[[65,69,70,75,76,77,132],[65,69,76,78,132],[65,132],[65,67,132],[67,68,132],[132],[71,72,73,80,132],[79,132],[74,132],[65,69,132],[55,132],[55,56,57,132],[55,56,58,59,132],[86,132],[89,132],[90,95,123,132],[91,102,103,110,120,131,132],[91,92,102,110,132],[93,132],[94,95,103,111,132],[95,120,128,132],[96,98,102,110,132],[97,132],[98,99,132],[102,132],[100,102,132],[102,103,104,120,131,132],[102,103,104,117,120,123,132],[132,136],[98,102,105,110,120,131,132],[102,103,105,106,110,120,128,131,132],[105,107,120,128,131,132],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,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],[102,108,132],[109,131,132],[98,102,110,120,132],[111,132],[112,132],[89,113,132],[114,130,132,136],[115,132],[116,132],[102,117,118,132],[117,119,132,134],[90,102,120,121,122,123,132],[90,120,122,132],[120,121,132],[123,132],[124,132],[120,132],[102,126,127,132],[126,127,132],[95,110,120,128,132],[129,132],[110,130,132],[90,105,116,131,132],[95,132],[120,132,133],[132,134],[132,135],[90,95,102,104,113,120,131,132,134,136],[120,132,137],[60,132],[50,51,52,53,132],[50,51,132],[50,51,52,132],[82,84,132],[61,62,64,65,66,70,81,132],[50,54,65,82,83,132],[62,132],[62,63,132],[51,132],[50,51,52],[50,51],[82,84],[65,66],[54,65,82],[62],[62,63]],"referencedMap":[[78,1],[79,2],[67,3],[68,4],[69,5],[65,6],[71,6],[81,7],[73,3],[72,6],[80,8],[75,9],[74,6],[76,6],[66,3],[70,10],[77,6],[57,11],[59,12],[55,6],[56,6],[58,12],[60,13],[86,14],[87,14],[89,15],[90,16],[91,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,24],[101,25],[100,26],[102,25],[103,27],[104,28],[88,29],[138,6],[105,30],[106,31],[107,32],[139,33],[108,34],[109,35],[110,36],[111,37],[112,38],[113,39],[114,40],[115,41],[116,42],[117,43],[118,43],[119,44],[120,45],[122,46],[121,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[51,6],[61,63],[48,6],[49,6],[9,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[4,6],[23,6],[20,6],[21,6],[22,6],[24,6],[25,6],[26,6],[5,6],[27,6],[28,6],[29,6],[30,6],[6,6],[34,6],[31,6],[32,6],[33,6],[35,6],[7,6],[36,6],[41,6],[42,6],[37,6],[38,6],[39,6],[40,6],[8,6],[46,6],[43,6],[44,6],[45,6],[1,6],[47,6],[54,64],[52,65],[53,66],[50,6],[85,67],[82,68],[84,69],[63,70],[64,71],[62,6],[83,72]],"exportedModulesMap":[[78,1],[79,2],[67,3],[68,4],[69,5],[65,6],[71,6],[81,7],[73,3],[72,6],[80,8],[75,9],[74,6],[76,6],[66,3],[70,10],[77,6],[57,11],[59,12],[55,6],[56,6],[58,12],[60,13],[86,14],[87,14],[89,15],[90,16],[91,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,24],[101,25],[100,26],[102,25],[103,27],[104,28],[88,29],[138,6],[105,30],[106,31],[107,32],[139,33],[108,34],[109,35],[110,36],[111,37],[112,38],[113,39],[114,40],[115,41],[116,42],[117,43],[118,43],[119,44],[120,45],[122,46],[121,47],[123,48],[124,49],[125,50],[126,51],[127,52],[128,53],[129,54],[130,55],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[51,6],[61,63],[48,6],[49,6],[9,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[4,6],[23,6],[20,6],[21,6],[22,6],[24,6],[25,6],[26,6],[5,6],[27,6],[28,6],[29,6],[30,6],[6,6],[34,6],[31,6],[32,6],[33,6],[35,6],[7,6],[36,6],[41,6],[42,6],[37,6],[38,6],[39,6],[40,6],[8,6],[46,6],[43,6],[44,6],[45,6],[1,6],[47,6],[54,73],[52,74],[53,73],[85,75],[82,76],[84,77],[63,78],[64,79]],"semanticDiagnosticsPerFile":[78,79,67,68,69,65,71,81,73,72,80,75,74,76,66,70,77,57,59,55,56,58,60,86,87,89,90,91,92,93,94,95,96,97,98,99,101,100,102,103,104,88,138,105,106,107,139,108,109,110,111,112,113,114,115,116,117,118,119,120,122,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,51,61,48,49,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,8,46,43,44,45,1,47,54,52,53,50,85,82,84,63,64,62,83],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.1.3"}