@solana-mobile/wallet-adapter-mobile 0.0.1-alpha.0

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.
@@ -0,0 +1,344 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var mobileWalletAdapterProtocol = require('@solana-mobile/mobile-wallet-adapter-protocol');
6
+ var walletAdapterBase = require('@solana/wallet-adapter-base');
7
+ var web3_js = require('@solana/web3.js');
8
+
9
+ /*! *****************************************************************************
10
+ Copyright (c) Microsoft Corporation.
11
+
12
+ Permission to use, copy, modify, and/or distribute this software for any
13
+ purpose with or without fee is hereby granted.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
16
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
17
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
18
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
19
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
20
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21
+ PERFORMANCE OF THIS SOFTWARE.
22
+ ***************************************************************************** */
23
+
24
+ function __awaiter(thisArg, _arguments, P, generator) {
25
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
26
+ return new (P || (P = Promise))(function (resolve, reject) {
27
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
28
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
29
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
30
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
31
+ });
32
+ }
33
+
34
+ const SolanaMobileWalletAdapterWalletName = 'Default wallet app';
35
+ const SIGNATURE_LENGTH_IN_BYTES = 64;
36
+ function getBase64StringFromByteArray(byteArray) {
37
+ return btoa(String.fromCharCode.call(null, ...byteArray));
38
+ }
39
+ function getByteArrayFromBase64String(base64EncodedByteArray) {
40
+ return new Uint8Array(atob(base64EncodedByteArray)
41
+ .split('')
42
+ .map((c) => c.charCodeAt(0)));
43
+ }
44
+ class SolanaMobileWalletAdapter extends walletAdapterBase.BaseMessageSignerWalletAdapter {
45
+ constructor(config) {
46
+ super();
47
+ this.name = SolanaMobileWalletAdapterWalletName;
48
+ this.url = 'https://solanamobile.com';
49
+ this.icon = 'data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI4IiB3aWR0aD0iMjgiIHZpZXdCb3g9Ii0zIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0RDQjhGRiI+PHBhdGggZD0iTTE3LjQgMTcuNEgxNXYyLjRoMi40di0yLjRabTEuMi05LjZoLTIuNHYyLjRoMi40VjcuOFoiLz48cGF0aCBkPSJNMjEuNiAzVjBoLTIuNHYzaC0zLjZWMGgtMi40djNoLTIuNHY2LjZINC41YTIuMSAyLjEgMCAxIDEgMC00LjJoMi43VjNINC41QTQuNSA0LjUgMCAwIDAgMCA3LjVWMjRoMjEuNnYtNi42aC0yLjR2NC4ySDIuNFYxMS41Yy41LjMgMS4yLjQgMS44LjVoNy41QTYuNiA2LjYgMCAwIDAgMjQgOVYzaC0yLjRabTAgNS43YTQuMiA0LjIgMCAxIDEtOC40IDBWNS40aDguNHYzLjNaIi8+PC9nPjwvc3ZnPg==';
50
+ this._connecting = false;
51
+ this._readyState = typeof window === 'undefined' ||
52
+ typeof document === 'undefined' ||
53
+ !/android/i.test(navigator.userAgent) ||
54
+ !window.isSecureContext
55
+ ? walletAdapterBase.WalletReadyState.Unsupported
56
+ : walletAdapterBase.WalletReadyState.Loadable;
57
+ this._authorizationResultCache = config.authorizationResultCache;
58
+ this._appIdentity = config.appIdentity;
59
+ if (this._readyState !== walletAdapterBase.WalletReadyState.Unsupported) {
60
+ this._authorizationResultCache.get().then((authorizationResult) => {
61
+ if (authorizationResult) {
62
+ // Having a prior authorization result is, right now, the best
63
+ // indication that a mobile wallet is installed. There is no API
64
+ // we can use to test for whether the association URI is supported.
65
+ this.emit('readyStateChange', (this._readyState = walletAdapterBase.WalletReadyState.Installed));
66
+ }
67
+ });
68
+ }
69
+ }
70
+ get publicKey() {
71
+ if (this._publicKey == null && this._authorizationResult != null) {
72
+ this._publicKey = new web3_js.PublicKey(this._authorizationResult.publicKey);
73
+ }
74
+ return this._publicKey ? this._publicKey : null;
75
+ }
76
+ get connected() {
77
+ return !!this._authorizationResult;
78
+ }
79
+ get connecting() {
80
+ return this._connecting;
81
+ }
82
+ get readyState() {
83
+ return this._readyState;
84
+ }
85
+ connect() {
86
+ return __awaiter(this, void 0, void 0, function* () {
87
+ if (this._readyState !== walletAdapterBase.WalletReadyState.Installed && this._readyState !== walletAdapterBase.WalletReadyState.Loadable) {
88
+ const err = new walletAdapterBase.WalletNotReadyError();
89
+ this.emit('error', err);
90
+ throw err;
91
+ }
92
+ this._connecting = true;
93
+ const cachedAuthorizationResult = yield this._authorizationResultCache.get();
94
+ if (cachedAuthorizationResult) {
95
+ this._authorizationResult = cachedAuthorizationResult;
96
+ this._connecting = false;
97
+ if (this._readyState !== walletAdapterBase.WalletReadyState.Installed) {
98
+ this.emit('readyStateChange', (this._readyState = walletAdapterBase.WalletReadyState.Installed));
99
+ }
100
+ this.emit('connect',
101
+ // Having just set an `authorizationResult`, `this.publicKey` is definitely non-null
102
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
103
+ this.publicKey);
104
+ return;
105
+ }
106
+ try {
107
+ yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
108
+ const { auth_token, pub_key: base58PublicKey, wallet_uri_base, } = yield mobileWallet('authorize', { identity: this._appIdentity });
109
+ try {
110
+ this._publicKey = new web3_js.PublicKey(base58PublicKey);
111
+ }
112
+ catch (e) {
113
+ throw new walletAdapterBase.WalletPublicKeyError((e instanceof Error && (e === null || e === void 0 ? void 0 : e.message)) || 'Unknown error', e);
114
+ }
115
+ this.handleAuthorizationResult({
116
+ authToken: auth_token,
117
+ publicKey: base58PublicKey,
118
+ walletUriBase: wallet_uri_base,
119
+ }); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
120
+ this.emit('connect',
121
+ // Having just set an `authorizationResult`, `this.publicKey` is definitely non-null
122
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
123
+ this.publicKey);
124
+ }));
125
+ }
126
+ catch (e) {
127
+ throw new walletAdapterBase.WalletConnectionError((e instanceof Error && e.message) || 'Unknown error', e);
128
+ }
129
+ finally {
130
+ this._connecting = false;
131
+ }
132
+ });
133
+ }
134
+ handleAuthorizationResult(authorizationResult) {
135
+ return __awaiter(this, void 0, void 0, function* () {
136
+ this._authorizationResult = authorizationResult;
137
+ yield this._authorizationResultCache.set(authorizationResult);
138
+ });
139
+ }
140
+ performReauthorization(mobileWallet, currentAuthorizationResult) {
141
+ return __awaiter(this, void 0, void 0, function* () {
142
+ try {
143
+ const { auth_token } = yield mobileWallet('reauthorize', {
144
+ auth_token: currentAuthorizationResult.authToken,
145
+ });
146
+ if (currentAuthorizationResult.authToken !== auth_token) {
147
+ this.handleAuthorizationResult(Object.assign(Object.assign({}, currentAuthorizationResult), { authToken: auth_token })); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
148
+ }
149
+ return auth_token;
150
+ }
151
+ catch (e) {
152
+ this.disconnect();
153
+ throw new walletAdapterBase.WalletDisconnectedError((e instanceof Error && (e === null || e === void 0 ? void 0 : e.message)) || 'Unknown error', e);
154
+ }
155
+ });
156
+ }
157
+ disconnect() {
158
+ return __awaiter(this, void 0, void 0, function* () {
159
+ this._authorizationResultCache.clear(); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
160
+ delete this._authorizationResult;
161
+ delete this._publicKey;
162
+ this.emit('disconnect');
163
+ });
164
+ }
165
+ withWallet(callback) {
166
+ var _a;
167
+ return __awaiter(this, void 0, void 0, function* () {
168
+ const walletUriBase = (_a = this._authorizationResult) === null || _a === void 0 ? void 0 : _a.walletUriBase;
169
+ const config = walletUriBase ? { baseUri: walletUriBase } : undefined;
170
+ return yield mobileWalletAdapterProtocol.withLocalWallet(callback, config);
171
+ });
172
+ }
173
+ assertIsAuthorized() {
174
+ const authorizationResult = this._authorizationResult;
175
+ if (!authorizationResult)
176
+ throw new walletAdapterBase.WalletNotConnectedError();
177
+ return authorizationResult;
178
+ }
179
+ performSignTransactions(transactions) {
180
+ return __awaiter(this, void 0, void 0, function* () {
181
+ try {
182
+ const authorizationResult = this.assertIsAuthorized();
183
+ try {
184
+ const serializedTransactions = transactions.map((transaction) => transaction.serialize({
185
+ requireAllSignatures: false,
186
+ verifySignatures: false,
187
+ }));
188
+ const payloads = serializedTransactions.map((serializedTransaction) => serializedTransaction.toString('base64'));
189
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
190
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
191
+ const { signed_payloads: base64EncodedCompiledTransactions } = yield mobileWallet('sign_transaction', { auth_token: freshAuthToken, payloads });
192
+ const compiledTransactions = base64EncodedCompiledTransactions.map(getByteArrayFromBase64String);
193
+ const transactions = compiledTransactions.map(web3_js.Transaction.from);
194
+ return transactions;
195
+ }));
196
+ }
197
+ catch (error) {
198
+ throw new walletAdapterBase.WalletSignTransactionError(error === null || error === void 0 ? void 0 : error.message, error);
199
+ }
200
+ }
201
+ catch (error) {
202
+ this.emit('error', error);
203
+ throw error;
204
+ }
205
+ });
206
+ }
207
+ sendTransaction(transaction, connection, _options) {
208
+ return __awaiter(this, void 0, void 0, function* () {
209
+ try {
210
+ const authorizationResult = this.assertIsAuthorized();
211
+ try {
212
+ if (transaction.feePayer == null) {
213
+ transaction.feePayer = this.publicKey || undefined;
214
+ }
215
+ if (transaction.recentBlockhash == null) {
216
+ const { blockhash } = yield connection.getRecentBlockhash(connection.commitment);
217
+ transaction.recentBlockhash = blockhash;
218
+ }
219
+ const serializedTransaction = transaction.serialize({
220
+ requireAllSignatures: false,
221
+ verifySignatures: false,
222
+ });
223
+ const payloads = [serializedTransaction.toString('base64')];
224
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
225
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
226
+ let targetCommitment;
227
+ switch (connection.commitment) {
228
+ case 'confirmed':
229
+ case 'finalized':
230
+ case 'processed':
231
+ targetCommitment = connection.commitment;
232
+ break;
233
+ default:
234
+ targetCommitment = 'finalized';
235
+ }
236
+ const { signatures } = yield mobileWallet('sign_and_send_transaction', {
237
+ auth_token: freshAuthToken,
238
+ commitment: targetCommitment,
239
+ payloads,
240
+ });
241
+ return signatures[0];
242
+ }));
243
+ }
244
+ catch (error) {
245
+ throw new walletAdapterBase.WalletSendTransactionError(error === null || error === void 0 ? void 0 : error.message, error);
246
+ }
247
+ }
248
+ catch (error) {
249
+ this.emit('error', error);
250
+ throw error;
251
+ }
252
+ });
253
+ }
254
+ signTransaction(transaction) {
255
+ return __awaiter(this, void 0, void 0, function* () {
256
+ const [signedTransaction] = yield this.performSignTransactions([transaction]);
257
+ return signedTransaction;
258
+ });
259
+ }
260
+ signAllTransactions(transactions) {
261
+ return __awaiter(this, void 0, void 0, function* () {
262
+ const signedTransactions = yield this.performSignTransactions(transactions);
263
+ return signedTransactions;
264
+ });
265
+ }
266
+ signMessage(message) {
267
+ return __awaiter(this, void 0, void 0, function* () {
268
+ try {
269
+ const authorizationResult = this.assertIsAuthorized();
270
+ try {
271
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
272
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
273
+ const { signed_payloads: [base64EncodedSignedMessage], } = yield mobileWallet('sign_message', {
274
+ auth_token: freshAuthToken,
275
+ payloads: [getBase64StringFromByteArray(message)],
276
+ });
277
+ const signedMessage = getByteArrayFromBase64String(base64EncodedSignedMessage);
278
+ const signature = signedMessage.slice(-SIGNATURE_LENGTH_IN_BYTES);
279
+ return signature;
280
+ }));
281
+ }
282
+ catch (error) {
283
+ throw new walletAdapterBase.WalletSignMessageError(error === null || error === void 0 ? void 0 : error.message, error);
284
+ }
285
+ }
286
+ catch (error) {
287
+ this.emit('error', error);
288
+ throw error;
289
+ }
290
+ });
291
+ }
292
+ }
293
+
294
+ const CACHE_KEY = 'SolanaMobileWalletAdapterDefaultAuthorizationCache';
295
+ function createDefaultAuthorizationResultCache() {
296
+ let storage;
297
+ try {
298
+ storage = window.localStorage;
299
+ // eslint-disable-next-line no-empty
300
+ }
301
+ catch (_a) { }
302
+ return {
303
+ clear() {
304
+ return __awaiter(this, void 0, void 0, function* () {
305
+ if (!storage) {
306
+ return;
307
+ }
308
+ try {
309
+ storage.removeItem(CACHE_KEY);
310
+ // eslint-disable-next-line no-empty
311
+ }
312
+ catch (_a) { }
313
+ });
314
+ },
315
+ get() {
316
+ return __awaiter(this, void 0, void 0, function* () {
317
+ if (!storage) {
318
+ return;
319
+ }
320
+ try {
321
+ return JSON.parse(storage.getItem(CACHE_KEY)) || undefined;
322
+ // eslint-disable-next-line no-empty
323
+ }
324
+ catch (_a) { }
325
+ });
326
+ },
327
+ set(authorizationResult) {
328
+ return __awaiter(this, void 0, void 0, function* () {
329
+ if (!storage) {
330
+ return;
331
+ }
332
+ try {
333
+ storage.setItem(CACHE_KEY, JSON.stringify(authorizationResult));
334
+ // eslint-disable-next-line no-empty
335
+ }
336
+ catch (_a) { }
337
+ });
338
+ },
339
+ };
340
+ }
341
+
342
+ exports.SolanaMobileWalletAdapter = SolanaMobileWalletAdapter;
343
+ exports.SolanaMobileWalletAdapterWalletName = SolanaMobileWalletAdapterWalletName;
344
+ exports.createDefaultAuthorizationResultCache = createDefaultAuthorizationResultCache;
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "commonjs"
3
+ }
@@ -0,0 +1,338 @@
1
+ import { withLocalWallet } from '@solana-mobile/mobile-wallet-adapter-protocol';
2
+ import { BaseMessageSignerWalletAdapter, WalletReadyState, WalletNotReadyError, WalletPublicKeyError, WalletConnectionError, WalletDisconnectedError, WalletNotConnectedError, WalletSignTransactionError, WalletSendTransactionError, WalletSignMessageError } from '@solana/wallet-adapter-base';
3
+ import { PublicKey, Transaction } from '@solana/web3.js';
4
+
5
+ /*! *****************************************************************************
6
+ Copyright (c) Microsoft Corporation.
7
+
8
+ Permission to use, copy, modify, and/or distribute this software for any
9
+ purpose with or without fee is hereby granted.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
12
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
14
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
16
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17
+ PERFORMANCE OF THIS SOFTWARE.
18
+ ***************************************************************************** */
19
+
20
+ function __awaiter(thisArg, _arguments, P, generator) {
21
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
22
+ return new (P || (P = Promise))(function (resolve, reject) {
23
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
24
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
25
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
26
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
27
+ });
28
+ }
29
+
30
+ const SolanaMobileWalletAdapterWalletName = 'Default wallet app';
31
+ const SIGNATURE_LENGTH_IN_BYTES = 64;
32
+ function getBase64StringFromByteArray(byteArray) {
33
+ return btoa(String.fromCharCode.call(null, ...byteArray));
34
+ }
35
+ function getByteArrayFromBase64String(base64EncodedByteArray) {
36
+ return new Uint8Array(atob(base64EncodedByteArray)
37
+ .split('')
38
+ .map((c) => c.charCodeAt(0)));
39
+ }
40
+ class SolanaMobileWalletAdapter extends BaseMessageSignerWalletAdapter {
41
+ constructor(config) {
42
+ super();
43
+ this.name = SolanaMobileWalletAdapterWalletName;
44
+ this.url = 'https://solanamobile.com';
45
+ this.icon = 'data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI4IiB3aWR0aD0iMjgiIHZpZXdCb3g9Ii0zIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0RDQjhGRiI+PHBhdGggZD0iTTE3LjQgMTcuNEgxNXYyLjRoMi40di0yLjRabTEuMi05LjZoLTIuNHYyLjRoMi40VjcuOFoiLz48cGF0aCBkPSJNMjEuNiAzVjBoLTIuNHYzaC0zLjZWMGgtMi40djNoLTIuNHY2LjZINC41YTIuMSAyLjEgMCAxIDEgMC00LjJoMi43VjNINC41QTQuNSA0LjUgMCAwIDAgMCA3LjVWMjRoMjEuNnYtNi42aC0yLjR2NC4ySDIuNFYxMS41Yy41LjMgMS4yLjQgMS44LjVoNy41QTYuNiA2LjYgMCAwIDAgMjQgOVYzaC0yLjRabTAgNS43YTQuMiA0LjIgMCAxIDEtOC40IDBWNS40aDguNHYzLjNaIi8+PC9nPjwvc3ZnPg==';
46
+ this._connecting = false;
47
+ this._readyState = typeof window === 'undefined' ||
48
+ typeof document === 'undefined' ||
49
+ !/android/i.test(navigator.userAgent) ||
50
+ !window.isSecureContext
51
+ ? WalletReadyState.Unsupported
52
+ : WalletReadyState.Loadable;
53
+ this._authorizationResultCache = config.authorizationResultCache;
54
+ this._appIdentity = config.appIdentity;
55
+ if (this._readyState !== WalletReadyState.Unsupported) {
56
+ this._authorizationResultCache.get().then((authorizationResult) => {
57
+ if (authorizationResult) {
58
+ // Having a prior authorization result is, right now, the best
59
+ // indication that a mobile wallet is installed. There is no API
60
+ // we can use to test for whether the association URI is supported.
61
+ this.emit('readyStateChange', (this._readyState = WalletReadyState.Installed));
62
+ }
63
+ });
64
+ }
65
+ }
66
+ get publicKey() {
67
+ if (this._publicKey == null && this._authorizationResult != null) {
68
+ this._publicKey = new PublicKey(this._authorizationResult.publicKey);
69
+ }
70
+ return this._publicKey ? this._publicKey : null;
71
+ }
72
+ get connected() {
73
+ return !!this._authorizationResult;
74
+ }
75
+ get connecting() {
76
+ return this._connecting;
77
+ }
78
+ get readyState() {
79
+ return this._readyState;
80
+ }
81
+ connect() {
82
+ return __awaiter(this, void 0, void 0, function* () {
83
+ if (this._readyState !== WalletReadyState.Installed && this._readyState !== WalletReadyState.Loadable) {
84
+ const err = new WalletNotReadyError();
85
+ this.emit('error', err);
86
+ throw err;
87
+ }
88
+ this._connecting = true;
89
+ const cachedAuthorizationResult = yield this._authorizationResultCache.get();
90
+ if (cachedAuthorizationResult) {
91
+ this._authorizationResult = cachedAuthorizationResult;
92
+ this._connecting = false;
93
+ if (this._readyState !== WalletReadyState.Installed) {
94
+ this.emit('readyStateChange', (this._readyState = WalletReadyState.Installed));
95
+ }
96
+ this.emit('connect',
97
+ // Having just set an `authorizationResult`, `this.publicKey` is definitely non-null
98
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
99
+ this.publicKey);
100
+ return;
101
+ }
102
+ try {
103
+ yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
104
+ const { auth_token, pub_key: base58PublicKey, wallet_uri_base, } = yield mobileWallet('authorize', { identity: this._appIdentity });
105
+ try {
106
+ this._publicKey = new PublicKey(base58PublicKey);
107
+ }
108
+ catch (e) {
109
+ throw new WalletPublicKeyError((e instanceof Error && (e === null || e === void 0 ? void 0 : e.message)) || 'Unknown error', e);
110
+ }
111
+ this.handleAuthorizationResult({
112
+ authToken: auth_token,
113
+ publicKey: base58PublicKey,
114
+ walletUriBase: wallet_uri_base,
115
+ }); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
116
+ this.emit('connect',
117
+ // Having just set an `authorizationResult`, `this.publicKey` is definitely non-null
118
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
119
+ this.publicKey);
120
+ }));
121
+ }
122
+ catch (e) {
123
+ throw new WalletConnectionError((e instanceof Error && e.message) || 'Unknown error', e);
124
+ }
125
+ finally {
126
+ this._connecting = false;
127
+ }
128
+ });
129
+ }
130
+ handleAuthorizationResult(authorizationResult) {
131
+ return __awaiter(this, void 0, void 0, function* () {
132
+ this._authorizationResult = authorizationResult;
133
+ yield this._authorizationResultCache.set(authorizationResult);
134
+ });
135
+ }
136
+ performReauthorization(mobileWallet, currentAuthorizationResult) {
137
+ return __awaiter(this, void 0, void 0, function* () {
138
+ try {
139
+ const { auth_token } = yield mobileWallet('reauthorize', {
140
+ auth_token: currentAuthorizationResult.authToken,
141
+ });
142
+ if (currentAuthorizationResult.authToken !== auth_token) {
143
+ this.handleAuthorizationResult(Object.assign(Object.assign({}, currentAuthorizationResult), { authToken: auth_token })); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
144
+ }
145
+ return auth_token;
146
+ }
147
+ catch (e) {
148
+ this.disconnect();
149
+ throw new WalletDisconnectedError((e instanceof Error && (e === null || e === void 0 ? void 0 : e.message)) || 'Unknown error', e);
150
+ }
151
+ });
152
+ }
153
+ disconnect() {
154
+ return __awaiter(this, void 0, void 0, function* () {
155
+ this._authorizationResultCache.clear(); // TODO: Evaluate whether there's any threat to not `awaiting` this expression
156
+ delete this._authorizationResult;
157
+ delete this._publicKey;
158
+ this.emit('disconnect');
159
+ });
160
+ }
161
+ withWallet(callback) {
162
+ var _a;
163
+ return __awaiter(this, void 0, void 0, function* () {
164
+ const walletUriBase = (_a = this._authorizationResult) === null || _a === void 0 ? void 0 : _a.walletUriBase;
165
+ const config = walletUriBase ? { baseUri: walletUriBase } : undefined;
166
+ return yield withLocalWallet(callback, config);
167
+ });
168
+ }
169
+ assertIsAuthorized() {
170
+ const authorizationResult = this._authorizationResult;
171
+ if (!authorizationResult)
172
+ throw new WalletNotConnectedError();
173
+ return authorizationResult;
174
+ }
175
+ performSignTransactions(transactions) {
176
+ return __awaiter(this, void 0, void 0, function* () {
177
+ try {
178
+ const authorizationResult = this.assertIsAuthorized();
179
+ try {
180
+ const serializedTransactions = transactions.map((transaction) => transaction.serialize({
181
+ requireAllSignatures: false,
182
+ verifySignatures: false,
183
+ }));
184
+ const payloads = serializedTransactions.map((serializedTransaction) => serializedTransaction.toString('base64'));
185
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
186
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
187
+ const { signed_payloads: base64EncodedCompiledTransactions } = yield mobileWallet('sign_transaction', { auth_token: freshAuthToken, payloads });
188
+ const compiledTransactions = base64EncodedCompiledTransactions.map(getByteArrayFromBase64String);
189
+ const transactions = compiledTransactions.map(Transaction.from);
190
+ return transactions;
191
+ }));
192
+ }
193
+ catch (error) {
194
+ throw new WalletSignTransactionError(error === null || error === void 0 ? void 0 : error.message, error);
195
+ }
196
+ }
197
+ catch (error) {
198
+ this.emit('error', error);
199
+ throw error;
200
+ }
201
+ });
202
+ }
203
+ sendTransaction(transaction, connection, _options) {
204
+ return __awaiter(this, void 0, void 0, function* () {
205
+ try {
206
+ const authorizationResult = this.assertIsAuthorized();
207
+ try {
208
+ if (transaction.feePayer == null) {
209
+ transaction.feePayer = this.publicKey || undefined;
210
+ }
211
+ if (transaction.recentBlockhash == null) {
212
+ const { blockhash } = yield connection.getRecentBlockhash(connection.commitment);
213
+ transaction.recentBlockhash = blockhash;
214
+ }
215
+ const serializedTransaction = transaction.serialize({
216
+ requireAllSignatures: false,
217
+ verifySignatures: false,
218
+ });
219
+ const payloads = [serializedTransaction.toString('base64')];
220
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
221
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
222
+ let targetCommitment;
223
+ switch (connection.commitment) {
224
+ case 'confirmed':
225
+ case 'finalized':
226
+ case 'processed':
227
+ targetCommitment = connection.commitment;
228
+ break;
229
+ default:
230
+ targetCommitment = 'finalized';
231
+ }
232
+ const { signatures } = yield mobileWallet('sign_and_send_transaction', {
233
+ auth_token: freshAuthToken,
234
+ commitment: targetCommitment,
235
+ payloads,
236
+ });
237
+ return signatures[0];
238
+ }));
239
+ }
240
+ catch (error) {
241
+ throw new WalletSendTransactionError(error === null || error === void 0 ? void 0 : error.message, error);
242
+ }
243
+ }
244
+ catch (error) {
245
+ this.emit('error', error);
246
+ throw error;
247
+ }
248
+ });
249
+ }
250
+ signTransaction(transaction) {
251
+ return __awaiter(this, void 0, void 0, function* () {
252
+ const [signedTransaction] = yield this.performSignTransactions([transaction]);
253
+ return signedTransaction;
254
+ });
255
+ }
256
+ signAllTransactions(transactions) {
257
+ return __awaiter(this, void 0, void 0, function* () {
258
+ const signedTransactions = yield this.performSignTransactions(transactions);
259
+ return signedTransactions;
260
+ });
261
+ }
262
+ signMessage(message) {
263
+ return __awaiter(this, void 0, void 0, function* () {
264
+ try {
265
+ const authorizationResult = this.assertIsAuthorized();
266
+ try {
267
+ return yield this.withWallet((mobileWallet) => __awaiter(this, void 0, void 0, function* () {
268
+ const freshAuthToken = yield this.performReauthorization(mobileWallet, authorizationResult);
269
+ const { signed_payloads: [base64EncodedSignedMessage], } = yield mobileWallet('sign_message', {
270
+ auth_token: freshAuthToken,
271
+ payloads: [getBase64StringFromByteArray(message)],
272
+ });
273
+ const signedMessage = getByteArrayFromBase64String(base64EncodedSignedMessage);
274
+ const signature = signedMessage.slice(-SIGNATURE_LENGTH_IN_BYTES);
275
+ return signature;
276
+ }));
277
+ }
278
+ catch (error) {
279
+ throw new WalletSignMessageError(error === null || error === void 0 ? void 0 : error.message, error);
280
+ }
281
+ }
282
+ catch (error) {
283
+ this.emit('error', error);
284
+ throw error;
285
+ }
286
+ });
287
+ }
288
+ }
289
+
290
+ const CACHE_KEY = 'SolanaMobileWalletAdapterDefaultAuthorizationCache';
291
+ function createDefaultAuthorizationResultCache() {
292
+ let storage;
293
+ try {
294
+ storage = window.localStorage;
295
+ // eslint-disable-next-line no-empty
296
+ }
297
+ catch (_a) { }
298
+ return {
299
+ clear() {
300
+ return __awaiter(this, void 0, void 0, function* () {
301
+ if (!storage) {
302
+ return;
303
+ }
304
+ try {
305
+ storage.removeItem(CACHE_KEY);
306
+ // eslint-disable-next-line no-empty
307
+ }
308
+ catch (_a) { }
309
+ });
310
+ },
311
+ get() {
312
+ return __awaiter(this, void 0, void 0, function* () {
313
+ if (!storage) {
314
+ return;
315
+ }
316
+ try {
317
+ return JSON.parse(storage.getItem(CACHE_KEY)) || undefined;
318
+ // eslint-disable-next-line no-empty
319
+ }
320
+ catch (_a) { }
321
+ });
322
+ },
323
+ set(authorizationResult) {
324
+ return __awaiter(this, void 0, void 0, function* () {
325
+ if (!storage) {
326
+ return;
327
+ }
328
+ try {
329
+ storage.setItem(CACHE_KEY, JSON.stringify(authorizationResult));
330
+ // eslint-disable-next-line no-empty
331
+ }
332
+ catch (_a) { }
333
+ });
334
+ },
335
+ };
336
+ }
337
+
338
+ export { SolanaMobileWalletAdapter, SolanaMobileWalletAdapterWalletName, createDefaultAuthorizationResultCache };