-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathindex.ts
996 lines (967 loc) · 32.2 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
import * as nearAPI from "near-api-js";
import type {
AccessKeyViewRaw,
ExecutionStatus,
FinalExecutionOutcome,
FunctionCallPermissionView,
} from "near-api-js/lib/providers/provider";
import { JsonRpcProvider } from "near-api-js/lib/providers";
import { stringifyJsonOrBytes } from "near-api-js/lib/transaction";
import { parseRpcError } from "near-api-js/lib/utils/rpc_errors";
import {
type WalletModuleFactory,
type WalletBehaviourFactory,
type Subscription,
type Transaction,
type Account,
type InjectedWallet,
type Optional,
} from "@near-wallet-selector/core";
import { signTransactions } from "@near-wallet-selector/wallet-utils";
import {
type WriteContractParameters,
type GetAccountReturnType,
type Config,
} from "@wagmi/core";
import { bytesToHex, keccak256, toHex } from "viem";
import bs58 from "bs58";
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
type WagmiCoreActionsType = typeof import("@wagmi/core");
let wagmiCore: WagmiCoreActionsType | null = null;
const importWagmiCore = async () => {
// Commonjs support NA with @wagmi/core:
// https://wagmi.sh/core/guides/migrate-from-v1-to-v2#dropped-commonjs-support
return import("@wagmi/core").then((module) => {
wagmiCore = module;
});
};
import icon from "./icon";
import { createTxModal, createChainSwitchModal } from "./modal";
import {
ETHEREUM_ACCOUNT_ABI,
DEFAULT_ACCESS_KEY_ALLOWANCE,
RLP_EXECUTE,
MAX_TGAS,
EthTxError,
} from "./utils";
export interface EthereumWalletsParams {
wagmiConfig: Config;
web3Modal?: {
open: () => void;
close: () => void;
subscribeEvents: (
f: (event: { data: { event: string } }) => void
) => () => void;
getState: () => { open: boolean; selectedNetworkId?: number };
};
wagmiCore?: WagmiCoreActionsType;
chainId?: number;
alwaysOnboardDuringSignIn?: boolean;
iconUrl?: string;
devMode?: boolean;
devModeAccount?: string;
deprecated?: boolean;
}
interface EthereumWalletsState {
isConnecting: boolean;
keystore: nearAPI.keyStores.KeyStore;
subscriptions: Array<Subscription>;
}
const setupEthereumWalletsState = async (
id: string
): Promise<EthereumWalletsState> => {
const keystore = new nearAPI.keyStores.BrowserLocalStorageKeyStore(
window.localStorage,
`near-wallet-selector:${id}:keystore:`
);
return {
keystore,
subscriptions: [],
isConnecting: false,
};
};
const EthereumWallets: WalletBehaviourFactory<
InjectedWallet,
{ params: EthereumWalletsParams }
> = async ({
id,
options,
store,
provider,
emitter,
logger,
params: {
wagmiConfig,
web3Modal,
chainId,
alwaysOnboardDuringSignIn = false,
devMode,
devModeAccount = "eth-wallet.testnet",
},
}) => {
if (!wagmiCore) {
throw new Error("@wagmi/core not imported.");
}
const _state = await setupEthereumWalletsState(id);
const expectedChainId =
chainId ?? (options.network.networkId === "mainnet" ? 397 : 398);
const chain = wagmiConfig.chains.find((c) => c.id === expectedChainId);
if (!chain) {
throw new Error("Failed to parse NEAR chain from wagmiConfig.");
}
const nearRpc = chain.rpcUrls.default.http[0];
if (!nearRpc) {
throw new Error("Failed to parse NEAR rpc url from wagmiConfig.");
}
const nearExplorer = chain.blockExplorers?.default.url;
if (!nearExplorer) {
throw new Error("Failed to parse NEAR explorer url from wagmiConfig.");
}
const getAccounts = async (): Promise<Array<Account>> => {
const address = wagmiCore!.getAccount(wagmiConfig).address?.toLowerCase();
const account = devMode ? address + "." + devModeAccount : address;
if (!account || !address) {
return [];
}
const keyPair = await _state.keystore.getKey(
options.network.networkId,
account
);
const accountLogIn: Account = {
accountId: account,
publicKey: keyPair ? keyPair.getPublicKey().toString() : undefined,
};
return [accountLogIn];
};
const cleanup = async () => {
_state.subscriptions.forEach((subscription) => subscription.remove());
_state.subscriptions = [];
};
const executeTransaction = async ({
tx,
relayerPublicKey,
}: {
tx: Transaction;
relayerPublicKey: string;
}): Promise<`0x${string}`> => {
const to = (
/^0x([A-Fa-f0-9]{40})$/.test(tx.receiverId)
? tx.receiverId
: "0x" + keccak256(toHex(tx.receiverId)).slice(26)
) as `0x${string}`;
let ethTx: WriteContractParameters;
switch (tx.actions[0].type) {
case "AddKey": {
const publicKey = bytesToHex(
bs58.decode(tx.actions[0].params.publicKey.split(":")[1])
);
if (tx.actions[0].params.accessKey.permission === "FullAccess") {
const args = [
0, // 0 stands for ed25519
publicKey,
BigInt(tx.actions[0].params.accessKey.nonce ?? 0),
true,
false, // Not used with is_full_access
BigInt(0), // Not used with is_full_access
"", // Not used with is_full_access
[], // Not used with is_full_access
];
ethTx = {
abi: ETHEREUM_ACCOUNT_ABI,
address: to,
functionName: "addKey",
args,
chainId: expectedChainId,
type: "legacy",
};
throw new Error("Requesting a FullAccess key is not allowed.");
} else {
const allowance = BigInt(
tx.actions[0].params.accessKey.permission.allowance ??
DEFAULT_ACCESS_KEY_ALLOWANCE
);
const args = [
0, // 0 stands for ed25519
publicKey,
BigInt(tx.actions[0].params.accessKey.nonce ?? 0),
false,
allowance > 0 ? true : false,
allowance,
tx.actions[0].params.accessKey.permission.receiverId,
tx.actions[0].params.accessKey.permission.methodNames ?? [],
];
ethTx = {
abi: ETHEREUM_ACCOUNT_ABI,
address: to,
functionName: "addKey",
args,
gasPrice:
tx.actions[0].params.publicKey === relayerPublicKey &&
tx.receiverId ===
tx.actions[0].params.accessKey.permission.receiverId
? // Free onboarding tx: fix 1 wei gasPrice because some wallets ignore 0 gasPrice.
// Rpc will also return a dust eth_getBalance for accounts not yet onboarded to trick wallets
// into accepting this free transaction even before the user owns NEAR.
BigInt(1)
: undefined,
chainId: expectedChainId,
type: "legacy",
};
}
break;
}
case "DeleteKey": {
const publicKey = bytesToHex(
bs58.decode(tx.actions[0].params.publicKey.split(":")[1])
);
const args = [
0, // 0 stands for ed25519
publicKey,
];
ethTx = {
abi: ETHEREUM_ACCOUNT_ABI,
address: to,
functionName: "deleteKey",
args,
chainId: expectedChainId,
type: "legacy",
};
break;
}
case "FunctionCall": {
const yoctoNear = BigInt(tx.actions[0].params.deposit) % BigInt(1e6);
const value = BigInt(tx.actions[0].params.deposit) / BigInt(1e6);
const requestedGas = BigInt(tx.actions[0].params.gas);
const nearGas = requestedGas <= MAX_TGAS ? requestedGas : MAX_TGAS;
const args = [
tx.receiverId,
tx.actions[0].params.methodName,
bytesToHex(stringifyJsonOrBytes(tx.actions[0].params.args)),
nearGas,
+yoctoNear.toString(),
];
ethTx = {
abi: ETHEREUM_ACCOUNT_ABI,
address: to,
functionName: "functionCall",
args,
value,
chainId: expectedChainId,
type: "legacy",
};
break;
}
case "Transfer": {
const yoctoNear = BigInt(tx.actions[0].params.deposit) % BigInt(1e6);
const value = BigInt(tx.actions[0].params.deposit) / BigInt(1e6);
const args = [tx.receiverId, +yoctoNear.toString()];
ethTx = {
abi: ETHEREUM_ACCOUNT_ABI,
address: to,
functionName: "transfer",
args,
value,
chainId: expectedChainId,
type: "legacy",
};
break;
}
default: {
throw new Error("Invalid action type");
}
}
const { request } = await wagmiCore!.simulateContract(wagmiConfig, ethTx);
const result = await wagmiCore!.writeContract(wagmiConfig, request);
return result;
};
// Watch Ethereum wallet changes.
const setupEvents = async () => {
const unwatchAccount = wagmiCore!.watchAccount(wagmiConfig, {
onChange: async (data) => {
// Ethereum wallet disconnected: also disconnect NEAR account.
if (!data.address && data.status === "disconnected") {
emitter.emit("signedOut", null);
return;
}
// Ethereum wallet switched connected account: also switch NEAR account if already signed in or disconnect.
if (data.address && data.status === "connected") {
if (store.getState().contract?.contractId) {
const address = data.address.toLowerCase();
const keyPair = await _state.keystore.getKey(
options.network.networkId,
devMode ? address + "." + devModeAccount : address
);
if (!keyPair) {
try {
wagmiCore!.disconnect(wagmiConfig);
} catch (error) {
logger.error(error);
}
emitter.emit("signedOut", null);
return;
}
}
emitter.emit("accountsChanged", { accounts: await getAccounts() });
}
},
});
_state.subscriptions.push({ remove: () => unwatchAccount() });
};
setupEvents();
// Add signerId and receiverId defaults.
const transformTransactions = async (
transactions: Array<Optional<Transaction, "signerId" | "receiverId">>
): Promise<Array<Transaction>> => {
const state = store.getState();
const { contract } = state;
const [accountLogIn] = await getAccounts();
if (!accountLogIn) {
throw new Error("No active account");
}
return transactions.map((transaction) => {
if (!contract && !transaction.receiverId) {
throw new Error(`Missing receiverId, got '${transaction.receiverId}'`);
}
return {
...transaction,
signerId: transaction.signerId || accountLogIn.accountId!,
receiverId: transaction.receiverId || contract!.contractId,
};
});
};
// Separate actions into individual transactions because not available in 0x accounts.
const transformEthereumTransactions = (
transactions: Array<Transaction>
): Array<Transaction> => {
return transactions
.map((transaction) => {
return transaction.actions.map((action) => {
return {
signerId: transaction.signerId,
receiverId: transaction.receiverId,
actions: [action],
};
});
})
.flat();
};
// Check if accessKey is usable to execute all transaction.
const validateAccessKey = ({
transactions,
accessKey,
}: {
transactions: Array<Transaction>;
accessKey: AccessKeyViewRaw;
}) => {
if (accessKey.permission === "FullAccess") {
return true;
}
return transactions.every((tx) => {
// eslint-disable-next-line @typescript-eslint/naming-convention
const { receiver_id, method_names } = (
accessKey.permission as FunctionCallPermissionView
).FunctionCall;
if (receiver_id !== tx.receiverId) {
return false;
}
return tx.actions.every((action) => {
if (action.type !== "FunctionCall") {
return false;
}
const { methodName, deposit } = action.params;
if (method_names.length && !method_names.includes(methodName)) {
return false;
}
return BigInt(deposit) <= 0;
});
});
};
// Get the relayer public key and onboarding transaction if needed.
const getRelayerOnboardingInfo = async ({
accountId,
}: {
accountId: string;
}): Promise<{
relayerPublicKey: string;
onboardingTransaction: null | Transaction;
}> => {
let relayerPublicKey: string;
try {
const response = await fetch(nearRpc, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
jsonrpc: "2.0",
id: 3,
method: "near_getPublicKey",
}),
});
const { result } = await response.json();
relayerPublicKey =
"ed25519:" + bs58.encode(Buffer.from(result.public_key, "hex"));
} catch (error) {
logger.error(error);
throw new Error("Failed to fetch the relayer's public key.");
}
try {
const key = await provider.query<AccessKeyViewRaw>({
request_type: "view_access_key",
finality: "final",
account_id: accountId,
public_key: relayerPublicKey,
});
logger.log(
"User account ready, relayer access key onboarded.",
relayerPublicKey,
key
);
return { relayerPublicKey, onboardingTransaction: null };
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
logger.error(error);
if (
!error.message?.includes("does not exist while viewing") &&
!error.message?.includes("doesn't exist") &&
!error.message?.includes("does not exist") &&
!error.message?.includes("has never been observed on the node")
) {
throw new Error(
"Failed to view the relayer public key (view_access_key)."
);
}
logger.warn("Need to add the relayer access key:", relayerPublicKey);
// Add the relayer's access key on-chain.
return {
relayerPublicKey,
onboardingTransaction: {
signerId: accountId,
receiverId: accountId,
actions: [
{
type: "AddKey",
params: {
publicKey: relayerPublicKey,
accessKey: {
nonce: 0,
permission: {
receiverId: accountId,
allowance: "0",
methodNames: [RLP_EXECUTE],
},
},
},
},
],
},
};
}
};
const switchChain = async () => {
const account = wagmiCore!.getAccount(wagmiConfig);
if (account.chainId !== expectedChainId) {
const { showModal, hideModal } = createChainSwitchModal({
chain,
});
showModal();
try {
await wagmiCore!.switchChain(wagmiConfig, {
chainId: expectedChainId,
});
} catch (error) {
logger.error(error);
// TODO: add the link to onboarding page when available.
throw new Error(
"Wallet didn't connect to NEAR Protocol network, try adding and selecting the network manually inside wallet settings."
);
// NOTE: we don't hide the modal in case of error to allow the user to add the network manually.
}
hideModal();
}
};
const signAndSendTransactions = async (
transactions: Array<Optional<Transaction, "signerId" | "receiverId">>
) => {
const nearTxs = await transformTransactions(transactions);
const [accountLogIn] = await getAccounts();
// If transactions can be executed with FunctionCall access key do it, otherwise execute 1 by 1 with Ethereum wallet.
if (accountLogIn.publicKey && nearTxs.length) {
let accessKeyUsable;
try {
const accessKey = await provider.query<AccessKeyViewRaw>({
request_type: "view_access_key",
finality: "final",
account_id: accountLogIn.accountId,
public_key: accountLogIn.publicKey,
});
accessKeyUsable = validateAccessKey({
transactions: nearTxs,
accessKey,
});
} catch (error) {
logger.error(error);
accessKeyUsable = false;
}
if (accessKeyUsable) {
const signer = new nearAPI.InMemorySigner(_state.keystore);
const signedTransactions = await signTransactions(
nearTxs,
signer,
options.network
);
const results: Array<FinalExecutionOutcome> = [];
for (let i = 0; i < signedTransactions.length; i += 1) {
const nearTx = await provider.sendTransaction(signedTransactions[i]);
logger.log("NEAR transaction:", nearTx);
if (
typeof nearTx.status === "object" &&
typeof nearTx.status.Failure === "object" &&
nearTx.status.Failure !== null
) {
logger.error("Transaction execution error.");
throw parseRpcError(nearTx.status.Failure);
}
results.push(nearTx);
}
return results;
}
}
const { relayerPublicKey, onboardingTransaction } =
await getRelayerOnboardingInfo({
accountId: accountLogIn.accountId,
});
let txs = transformEthereumTransactions(nearTxs);
if (onboardingTransaction) {
// Onboard the relayer before executing other transactions.
txs = [onboardingTransaction, ...txs];
}
await switchChain();
const results: Array<FinalExecutionOutcome> = [];
await (() => {
return new Promise<void>((resolve, reject) => {
const { showModal, hideModal, renderTxs } = createTxModal({
onCancel: () => {
reject("User canceled Ethereum wallet transaction(s).");
},
txs,
relayerPublicKey,
explorerUrl: nearExplorer,
});
showModal();
(async () => {
try {
const ethTxHashes: Array<string> = [];
for (const [index, tx] of txs.entries()) {
let txHash;
let txError: string | null = null;
while (!txHash) {
try {
await (() => {
return new Promise<void>((resolveTx, rejectTx) => {
renderTxs({
selectedIndex: index,
ethTxHashes,
error: txError,
onConfirm: async () => {
try {
txError = null;
renderTxs({
selectedIndex: index,
ethTxHashes,
error: txError,
});
txHash = await executeTransaction({
tx,
relayerPublicKey,
});
resolveTx();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (err: any) {
logger.error(err);
if (
!err.message?.includes("reject") &&
!err.message?.includes("denied")
) {
txError = "Transaction execution error.";
}
rejectTx(
new EthTxError("Transaction request error.")
);
}
},
});
});
})();
} catch (error) {
logger.error(error);
if (!(error instanceof EthTxError)) {
throw new Error("Ethereum modal render error.");
}
}
}
logger.log(`Sent transaction: ${txHash}`);
ethTxHashes.push(txHash);
renderTxs({
selectedIndex: index,
ethTxHashes,
});
await new Promise((r) => setTimeout(r, 2000));
let receipt;
try {
// NOTE: error is thrown if tx failed so we catch it to get the receipt.
receipt = await wagmiCore!.waitForTransactionReceipt(
wagmiConfig,
{
hash: txHash,
chainId: expectedChainId,
}
);
} catch (error) {
logger.error(error);
while (!receipt) {
try {
await new Promise((r) => setTimeout(r, 1000));
receipt = await wagmiCore!.getTransactionReceipt(
wagmiConfig,
{
hash: txHash,
chainId: expectedChainId,
}
);
} catch (err) {
logger.log(err);
}
}
}
logger.log("Receipt:", receipt);
const nearProvider = new JsonRpcProvider(
// @ts-expect-error
provider.provider.connection
);
let nearTx;
while (!nearTx) {
try {
await new Promise((r) => setTimeout(r, 1000));
nearTx = await nearProvider.txStatus(
// @ts-expect-error
receipt.nearTransactionHash,
accountLogIn.accountId
);
} catch (err) {
logger.log(err);
}
}
logger.log("NEAR transaction:", nearTx);
if (receipt.status !== "success") {
const failedOutcome = nearTx.receipts_outcome.find(
({ outcome }) =>
typeof outcome.status === "object" &&
typeof outcome.status.Failure === "object" &&
outcome.status.Failure !== null &&
outcome.executor_id === tx.receiverId
);
if (failedOutcome) {
reject(
parseRpcError(
(failedOutcome.outcome.status as ExecutionStatus).Failure!
)
);
} else {
reject(
"Transaction execution error, failed to parse failure reason."
);
}
// NOTE: after return, `finally { hideModal() }` will run.
return;
}
results.push(nearTx);
}
resolve();
} catch (error) {
logger.error(error);
reject(error);
} finally {
hideModal();
}
})();
});
})();
return results;
};
const signOut = async () => {
const [accountLogIn] = await getAccounts();
if (accountLogIn.publicKey) {
try {
// Check that the key exists before making a transaction.
await provider.query<AccessKeyViewRaw>({
request_type: "view_access_key",
finality: "final",
account_id: accountLogIn.accountId,
public_key: accountLogIn.publicKey,
});
// If there is a connection problem with the wallet, the user can cancel from the modal to skip the disconnect transaction.
// If not deleted, the access key will be reused during signIn.
await signAndSendTransactions([
{
signerId: accountLogIn.accountId,
receiverId: accountLogIn.accountId,
actions: [
{
type: "DeleteKey",
params: {
publicKey: accountLogIn.publicKey,
},
},
],
},
]);
_state.keystore.removeKey(
options.network.networkId,
accountLogIn.accountId
);
} catch (error) {
logger.error(error);
}
}
try {
wagmiCore!.disconnect(wagmiConfig);
} catch (error) {
logger.error(error);
}
emitter.emit("signedOut", null);
cleanup();
};
return {
async signIn({ contractId, methodNames = [] }) {
logger.log("EthereumWallets:signIn", { contractId, methodNames });
if (_state.isConnecting) {
throw new Error("SignIn request already received.");
}
try {
_state.isConnecting = true;
let unwatchAccountConnected: (() => void) | undefined;
let unsubscribeCloseModal: (() => void) | undefined;
let account = wagmiCore!.getAccount(wagmiConfig);
let address = account.address?.toLowerCase();
// Open web3Modal and wait for a wallet to be connected or for the web3Modal to be closed.
if (!address) {
try {
if (web3Modal) {
web3Modal.open();
await (() => {
return new Promise((resolve, reject) => {
try {
unwatchAccountConnected = wagmiCore!.watchAccount(
wagmiConfig,
{
onChange: (data: GetAccountReturnType) => {
if (!data.address) {
return;
}
resolve(data);
},
}
);
unsubscribeCloseModal = web3Modal.subscribeEvents(
(event: { data: { event: string } }) => {
const newAccount = wagmiCore!.getAccount(wagmiConfig);
if (
event.data.event === "MODAL_CLOSE" &&
!newAccount.address
) {
reject(
"Web3Modal closed without connecting to an Ethereum wallet."
);
}
}
);
} catch (error) {
reject("User rejected");
}
});
})();
} else {
await wagmiCore!.connect(wagmiConfig, {
connector: wagmiCore!.injected(),
});
}
account = wagmiCore!.getAccount(wagmiConfig);
address = account.address?.toLowerCase();
if (!address) {
throw new Error("Failed to get Ethereum wallet address");
}
} catch (error: unknown) {
logger.error(error);
throw new Error("Failed to connect Ethereum wallet.");
} finally {
try {
// Prevent overshadowing the original exception
if (unwatchAccountConnected) {
unwatchAccountConnected();
}
if (unsubscribeCloseModal) {
unsubscribeCloseModal();
}
} catch (error) {
logger.error(error);
}
}
} else {
logger.log("Wallet already connected");
}
await switchChain();
// Login with FunctionCall access key, reuse keypair or create a new one.
const accountId = devMode ? address + "." + devModeAccount : address;
let publicKey;
if (contractId) {
const keyPair = await _state.keystore.getKey(
options.network.networkId,
accountId
);
let reUseKeyPair = false;
if (keyPair) {
try {
await provider.query<AccessKeyViewRaw>({
request_type: "view_access_key",
finality: "final",
account_id: accountId,
public_key: keyPair.getPublicKey().toString(),
});
reUseKeyPair = true;
} catch (error) {
logger.warn("Local access key cannot be reused.");
_state.keystore.removeKey(options.network.networkId, accountId);
}
}
if (reUseKeyPair) {
publicKey = keyPair.getPublicKey().toString();
logger.log("Reusing existing publicKey:", publicKey);
} else {
const newAccessKeyPair =
nearAPI.utils.KeyPair.fromRandom("ed25519");
publicKey = newAccessKeyPair.getPublicKey().toString();
logger.log("Created new publicKey:", publicKey);
await signAndSendTransactions([
{
signerId: accountId,
receiverId: accountId,
actions: [
{
type: "AddKey",
params: {
publicKey,
accessKey: {
nonce: 0,
permission: {
receiverId: contractId,
allowance: DEFAULT_ACCESS_KEY_ALLOWANCE,
methodNames,
},
},
},
},
],
},
]);
await _state.keystore.setKey(
options.network.networkId,
accountId,
newAccessKeyPair
);
}
} else if (alwaysOnboardDuringSignIn) {
// Check onboarding status and onboard the relayer if needed.
await signAndSendTransactions([]);
}
const accountLogIn = {
accountId,
publicKey,
};
emitter.emit("signedIn", {
contractId: contractId,
methodNames: methodNames ?? [],
accounts: [accountLogIn],
});
if (!_state.subscriptions.length) {
setupEvents();
}
_state.isConnecting = false;
try {
// Hide modal which stays open after adding a new network.
if (web3Modal) {
web3Modal.close();
}
} catch (error) {
logger.error(error);
}
return [accountLogIn];
} catch (error) {
_state.isConnecting = false;
try {
// Prevent overshadowing the original exception
// Disconnect to let user start again from the beginning: wallet selection.
wagmiCore!.disconnect(wagmiConfig);
} catch (err) {
logger.error(err);
}
throw error;
}
},
signOut,
getAccounts,
async verifyOwner({ message }) {
logger.log("EthereumWallets:verifyOwner", { message });
throw new Error(
"Not implemented: ed25519 N/A, '\x19Ethereum Signed Message:\n' prefix is not compatible, use personal_sign or eth_signTypedData_v4 instead."
);
},
async signMessage({ message, nonce, recipient }) {
logger.log("EthereumWallets:signMessage", { message, nonce, recipient });
throw new Error(
"Not implemented: ed25519 N/A, '\x19Ethereum Signed Message:\n' prefix is not compatible, use personal_sign or eth_signTypedData_v4 instead."
);
},
async signAndSendTransaction(transaction) {
logger.log("EthereumWallets:signAndSendTransaction", transaction);
const outcomes = await signAndSendTransactions([transaction]);
// Return the last transaction outcome.
return outcomes[outcomes.length - 1];
},
async signAndSendTransactions({ transactions }) {
logger.log("EthereumWallets:signAndSendTransactions", { transactions });
return await signAndSendTransactions(transactions);
},
};
};
export function setupEthereumWallets(
params: EthereumWalletsParams
): WalletModuleFactory<InjectedWallet> {
return async () => {
if (!wagmiCore) {
if (params.wagmiCore) {
wagmiCore = params.wagmiCore;
} else {
await importWagmiCore();
}
}
return {
id: "ethereum-wallets",
type: "injected",
metadata: {
name: "Ethereum Wallet",
description: "Ethereum wallets (EOA) on NEAR Protocol.",
iconUrl: params.iconUrl ?? icon,
deprecated: params.deprecated ?? false,
available: true,
downloadUrl: "",
},
init: (config) => {
return EthereumWallets({
...config,
params,
});
},
};
};
}