-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathbase.ts
625 lines (535 loc) · 18.8 KB
/
base.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
import {
adoptChildWallet,
AdoptChildWalletArgs,
changeIntentTime,
closeSession,
combineTransactionIntents,
feeOptions,
finishValidateSession,
getAdopter,
getIdToken,
getSession,
getTransactionReceipt,
GetTransactionReceiptArgs,
initiateAuth,
Intent,
listSessions,
openSession,
OpenSessionArgs,
sendContractCall,
SendContractCallArgs,
sendERC1155,
SendERC1155Args,
sendERC20,
SendERC20Args,
sendERC721,
SendERC721Args,
sendTransactions,
SendTransactionsArgs,
sessionAuthProof,
SignedIntent,
signIntent,
signMessage,
SignMessageArgs,
validateSession
} from './intents'
import { LocalStore, Store, StoreObj } from './store'
import { newSession, newSessionFromSessionId } from './session'
import { OpenSessionResponse } from './intents/responses'
import { federateAccount, listAccounts, removeAccount } from './intents/accounts'
import { SimpleNetwork, toNetworkID, WithSimpleNetwork } from './networks'
import {
IdentityType,
IntentDataFederateAccount,
IntentDataFeeOptions,
IntentDataFinishValidateSession,
IntentDataGetSession,
IntentDataGetTransactionReceipt,
IntentDataInitiateAuth,
IntentDataListAccounts,
IntentDataOpenSession,
IntentDataSendTransaction,
IntentDataSignMessage,
IntentDataValidateSession
} from './clients/intent.gen'
import { getDefaultSubtleCryptoBackend, SubtleCryptoBackend } from './subtle-crypto'
import { getDefaultSecureStoreBackend, SecureStoreBackend } from './secure-store'
import { ethers } from 'ethers'
import { ChallengeIntentParams } from './challenge'
type Status = 'pending' | 'signed-in' | 'signed-out'
const SEQUENCE_WAAS_WALLET_KEY = '@0xsequence.waas.wallet'
const SEQUENCE_WAAS_SESSION_ID_KEY = '@0xsequence.waas.session_id'
const SEQUENCE_WAAS_STATUS_KEY = '@0xsequence.waas.status'
// 5 minutes of default lifespan
const DEFAULT_LIFESPAN = 5 * 60
export type SessionAuthProofArgs = {
nonce?: string
}
export type ExtraArgs = {
lifespan?: number
}
export type ExtraTransactionArgs = ExtraArgs & {
identifier: string
}
export type SequenceBaseConfig = {
network: SimpleNetwork
}
export type Observer<T> = (value: T | null) => any
export class SequenceWaaSBase {
private readonly status: StoreObj<Status>
private readonly sessionId: StoreObj<string | undefined>
private readonly wallet: StoreObj<string | undefined>
private sessionObservers: Observer<string>[] = []
constructor(
public readonly config = { network: 1 } as SequenceBaseConfig,
private readonly store: Store = new LocalStore(),
private readonly cryptoBackend: SubtleCryptoBackend | null = getDefaultSubtleCryptoBackend(),
private readonly secureStoreBackend: SecureStoreBackend | null = getDefaultSecureStoreBackend()
) {
this.status = new StoreObj(this.store, SEQUENCE_WAAS_STATUS_KEY, 'signed-out')
this.sessionId = new StoreObj(this.store, SEQUENCE_WAAS_SESSION_ID_KEY, undefined)
this.wallet = new StoreObj(this.store, SEQUENCE_WAAS_WALLET_KEY, undefined)
}
async getAddress() {
return this.getWalletAddress()
}
private async getWalletAddress() {
if (!(await this.isSignedIn())) {
throw new Error('Not signed in')
}
const wallet = await this.wallet.get()
if (!wallet) {
throw new Error('No wallet')
}
return wallet
}
private async commonArgs<T>(
args: T & {
identifier: string
lifespan?: number
network?: SimpleNetwork
}
): Promise<
T & {
identifier: string
wallet: string
lifespan: number
chainId: number
}
> {
return {
...args,
identifier: args?.identifier,
wallet: await this.getWalletAddress(),
lifespan: args?.lifespan ?? DEFAULT_LIFESPAN,
chainId: toNetworkID(args.network || this.config.network)
}
}
/**
* Builds a payload that can be sent to the WaaS API to sign a transaction.
* It automatically signs the payload, and attaches the current wallet address.
*
* @param packet The action already packed into a packet
* @returns A payload that can be sent to the WaaS API
*/
private async signIntent<T>(intent: Intent<T>): Promise<SignedIntent<T>> {
const sessionId = await this.getSessionId()
if (sessionId === undefined) {
throw new Error('session not open')
}
const session = await newSessionFromSessionId(sessionId, this.cryptoBackend, this.secureStoreBackend)
return signIntent(session, intent)
}
public async signUsingSessionKey(message: string | Uint8Array) {
const sessionId = await this.getSessionId()
if (!sessionId) {
throw new Error('session not open')
}
const signer = await newSessionFromSessionId(sessionId, this.cryptoBackend, this.secureStoreBackend)
return signer.sign(message)
}
private gettingSessionIdPromise: Promise<string> | undefined
/**
* This method will return session id.
*
* @returns an id of the session
*/
public async getSessionId(): Promise<string> {
if (this.gettingSessionIdPromise) {
return this.gettingSessionIdPromise
}
const promiseGenerator = async () => {
let sessionId = await this.sessionId.get()
if (!sessionId) {
const session = await newSession(this.cryptoBackend, this.secureStoreBackend)
sessionId = await session.sessionId()
await this.sessionId.set(sessionId)
this.signalObservers(this.sessionObservers, sessionId)
}
this.gettingSessionIdPromise = undefined
return sessionId
}
this.gettingSessionIdPromise = promiseGenerator()
return this.gettingSessionIdPromise
}
/**
* This method will initiate a sign-in process with the waas API. It must be performed
* when the user wants to sign in to the app, in parallel with the authentication of the
* application's own authentication system.
*
* This method begins the sign-in process, but does not complete it. The returned payload
* must be sent to the waas API to complete the sign-in. The waas API will return a receipt
* that must be sent to the `completeSignIn` method to complete the sign-in.
*
* @param idToken Information about the user that can be used to prove their identity
* @returns a session payload that **must** be sent to the waas API to complete the sign-in
* @throws {Error} If the session is already signed in or there is a pending sign-in
*/
async signInWithIdToken(idToken: string): Promise<SignedIntent<IntentDataOpenSession>> {
const status = await this.status.get()
if (status !== 'signed-out') {
await this.completeSignOut()
throw new Error('you are already signed in') // TODO change this awful msg
}
const sessionId = await this.getSessionId()
const intent = await openSession({
sessionId,
identityType: IdentityType.None,
idToken,
lifespan: DEFAULT_LIFESPAN
})
await this.status.set('pending')
return this.signIntent(intent)
}
async initiateGuestAuth(): Promise<SignedIntent<IntentDataInitiateAuth>> {
const sessionId = await this.getSessionId()
const intent = await initiateAuth({
sessionId,
identityType: IdentityType.Guest,
verifier: sessionId,
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async initiateEmailAuth(email: string): Promise<SignedIntent<IntentDataInitiateAuth>> {
const sessionId = await this.getSessionId()
const intent = await initiateAuth({
sessionId,
identityType: IdentityType.Email,
verifier: `${email};${sessionId}`,
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async initiateIdTokenAuth(idToken: string, exp?: number): Promise<SignedIntent<IntentDataInitiateAuth>> {
const sessionId = await this.getSessionId()
const idTokenHash = ethers.id(idToken)
const intent = await initiateAuth({
sessionId,
identityType: IdentityType.OIDC,
verifier: `${idTokenHash};${exp}`,
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async initiateStytchAuth(idToken: string, exp?: number): Promise<SignedIntent<IntentDataInitiateAuth>> {
const sessionId = await this.getSessionId()
const idTokenHash = ethers.id(idToken)
const intent = await initiateAuth({
sessionId,
identityType: IdentityType.Stytch,
verifier: `${idTokenHash};${exp}`,
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async initiatePlayFabAuth(titleId: string, sessionTicket: string): Promise<SignedIntent<IntentDataInitiateAuth>> {
const sessionId = await this.getSessionId()
const ticketHash = ethers.id(sessionTicket)
const intent = await initiateAuth({
sessionId,
identityType: IdentityType.PlayFab,
verifier: `${titleId}|${ticketHash}`,
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async completeAuth(params: ChallengeIntentParams, optParams: Partial<OpenSessionArgs>) {
const sessionId = await this.getSessionId()
const intent = await openSession({
...optParams,
sessionId,
lifespan: DEFAULT_LIFESPAN,
...params
})
await this.status.set('pending')
return this.signIntent(intent)
}
onSessionStateChanged(callback: Observer<string>): () => void {
this.sessionObservers.push(callback)
return () => {
this.sessionObservers = this.sessionObservers.filter(o => o != callback)
}
}
async signOut({ lifespan, sessionId }: { sessionId?: string } & ExtraArgs = {}) {
sessionId = sessionId || (await this.sessionId.get())
if (!sessionId) {
throw new Error('session not open')
}
const intent = closeSession({
lifespan: lifespan || DEFAULT_LIFESPAN,
sessionId: sessionId
})
return this.signIntent(intent)
}
async signOutSession(sessionId: string) {
const intent = closeSession({
lifespan: DEFAULT_LIFESPAN,
sessionId: sessionId
})
return this.signIntent(intent)
}
async listSessions() {
const intent = listSessions({
lifespan: DEFAULT_LIFESPAN,
wallet: await this.getWalletAddress()
})
return this.signIntent(intent)
}
async completeSignOut() {
await Promise.all([this.status.set('signed-out'), this.wallet.set(undefined), this.sessionId.set(undefined)])
this.signalObservers(this.sessionObservers, null)
}
/**
* This method will complete a sign-in process with the waas API. It must be performed
* after the `signIn` method, when the waas API has returned a receipt.
*
* This method completes the sign-in process by validating the receipt's proof.
* If the proof is invalid or there is no pending sign-in, it will throw an error.
*
* After this method is called, the wallet is ready to be used to sign transactions.
*
* @param receipt The receipt returned by the waas API after the `signIn` method
* @returns The wallet address of the user that signed in
* @throws {Error} If there is no pending sign-in or the receipt is invalid
*/
async completeSignIn(receipt: OpenSessionResponse): Promise<string> {
if ((receipt as any).result) {
return this.completeSignIn((receipt as any).result)
}
const status = await this.status.get()
if (receipt.code !== 'sessionOpened') {
throw new Error('Invalid receipt')
}
if (status !== 'pending') {
throw new Error('No pending sign in')
}
await Promise.all([this.status.set('signed-in'), this.wallet.set(receipt.data.wallet)])
return receipt.data.wallet
}
async isSignedIn() {
const status = await this.status.get()
return status === 'signed-in'
}
async sessionAuthProof(args: WithSimpleNetwork<SessionAuthProofArgs> & ExtraArgs) {
const packet = sessionAuthProof({
lifespan: args.lifespan ?? DEFAULT_LIFESPAN,
network: toNetworkID(args.network || this.config.network).toString(),
wallet: await this.getWalletAddress(),
nonce: args.nonce
})
return this.signIntent(packet)
}
//
// Signer methods
//
/**
* This method can be used to sign message using waas API. It can only be used
* after successfully signing in with the `signIn` and `completeSignIn` methods.
*
* The method does not sign the message. It only returns a payload
* that must be sent to the waas API to complete the sign process.
*
* @param chainId The network on which the message will be signed
* @param message The message that will be signed
* @return a payload that must be sent to the waas API to complete sign process
*/
async signMessage(args: WithSimpleNetwork<SignMessageArgs> & ExtraArgs): Promise<SignedIntent<IntentDataSignMessage>> {
const packet = signMessage({
chainId: toNetworkID(args.network || this.config.network),
...args,
lifespan: args.lifespan ?? DEFAULT_LIFESPAN,
wallet: await this.getWalletAddress()
})
return this.signIntent(packet)
}
/**
* This method can be used to send transactions to the waas API. It can only be used
* after successfully signing in with the `signIn` and `completeSignIn` methods.
*
* The method does not send the transactions to the network. It only returns a payload
* that must be sent to the waas API to complete the transaction.
*
* @param transactions The transactions to be sent
* @param chainId The network on which the transactions will be sent
* @returns a payload that must be sent to the waas API to complete the transaction
*/
async sendTransaction(
args: WithSimpleNetwork<SendTransactionsArgs> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataSendTransaction>> {
const intent = sendTransactions(await this.commonArgs(args))
return this.signIntent(intent)
}
async getTransactionReceipt(
args: WithSimpleNetwork<GetTransactionReceiptArgs> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataGetTransactionReceipt>> {
const intent = getTransactionReceipt(await this.commonArgs(args))
return this.signIntent(intent)
}
async sendERC20(
args: WithSimpleNetwork<SendERC20Args> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataSendTransaction>> {
if (args.token.toLowerCase() === args.to.toLowerCase()) {
throw new Error('Cannot burn tokens using sendERC20')
}
const intent = sendERC20(await this.commonArgs(args))
return this.signIntent(intent)
}
async sendERC721(
args: WithSimpleNetwork<SendERC721Args> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataSendTransaction>> {
if (args.token.toLowerCase() === args.to.toLowerCase()) {
throw new Error('Cannot burn tokens using sendERC721')
}
const intent = sendERC721(await this.commonArgs(args))
return this.signIntent(intent)
}
async sendERC1155(
args: WithSimpleNetwork<SendERC1155Args> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataSendTransaction>> {
if (args.token.toLowerCase() === args.to.toLowerCase()) {
throw new Error('Cannot burn tokens using sendERC1155')
}
const intent = sendERC1155(await this.commonArgs(args))
return this.signIntent(intent)
}
async callContract(
args: WithSimpleNetwork<SendContractCallArgs> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataSendTransaction>> {
const intent = sendContractCall(await this.commonArgs(args))
return this.signIntent(intent)
}
async feeOptions(
args: WithSimpleNetwork<SendTransactionsArgs> & ExtraTransactionArgs
): Promise<SignedIntent<IntentDataFeeOptions>> {
const intent = feeOptions(await this.commonArgs(args))
return this.signIntent(intent)
}
async validateSession({ deviceMetadata }: { deviceMetadata: string }): Promise<SignedIntent<IntentDataValidateSession>> {
const sessionId = await this.sessionId.get()
if (!sessionId) {
throw new Error('session not open')
}
const intent = await validateSession({
lifespan: DEFAULT_LIFESPAN,
sessionId: sessionId,
deviceMetadata,
wallet: await this.getWalletAddress()
})
return this.signIntent(intent)
}
async getSession(): Promise<SignedIntent<IntentDataGetSession>> {
const sessionId = await this.sessionId.get()
if (!sessionId) {
throw new Error('session not open')
}
const intent = getSession({
sessionId,
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async finishValidateSession(salt: string, challenge: string): Promise<SignedIntent<IntentDataFinishValidateSession>> {
const sessionId = await this.sessionId.get()
if (!sessionId) {
throw new Error('session not open')
}
const wallet = await this.getWalletAddress()
const intent = finishValidateSession({
sessionId,
wallet,
lifespan: DEFAULT_LIFESPAN,
salt,
challenge
})
return this.signIntent(intent)
}
async listAccounts(): Promise<SignedIntent<IntentDataListAccounts>> {
const intent = listAccounts({
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN
})
return this.signIntent(intent)
}
async linkAccount(params: ChallengeIntentParams): Promise<SignedIntent<IntentDataFederateAccount>> {
const sessionId = await this.sessionId.get()
if (!sessionId) {
throw new Error('session not open')
}
const intent = federateAccount({
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN,
sessionId,
...params
})
return this.signIntent(intent)
}
async removeAccount({ accountId }: { accountId: string }) {
const intent = removeAccount({
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN,
accountId
})
return this.signIntent(intent)
}
async getIdToken({ nonce }: { nonce?: string }) {
const sessionId = await this.sessionId.get()
if (!sessionId) {
throw new Error('session not open')
}
const intent = getIdToken({
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN,
sessionId,
nonce
})
return this.signIntent(intent)
}
async adoptChildWallet(args: WithSimpleNetwork<AdoptChildWalletArgs>) {
const intent = adoptChildWallet({
wallet: await this.getWalletAddress(),
...args,
lifespan: DEFAULT_LIFESPAN,
})
return this.signIntent(intent)
}
async getAdopter() {
const intent = getAdopter({
wallet: await this.getWalletAddress(),
lifespan: DEFAULT_LIFESPAN,
})
return this.signIntent(intent)
}
async batch(intents: Intent<IntentDataSendTransaction>[]): Promise<SignedIntent<IntentDataSendTransaction>> {
const combined = combineTransactionIntents(intents)
return this.signIntent(combined)
}
private signalObservers<T>(observers: Observer<T>[], value: T | null) {
observers.forEach(observer => observer(value))
}
async updateIntentTime<T>(intent: SignedIntent<T>, time: Date): Promise<SignedIntent<T>> {
const newIntent = changeIntentTime(intent, time)
return this.signIntent(newIntent)
}
}