-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.ts
426 lines (375 loc) · 12.8 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
import { CosmWasmCodec } from "@cosmwasm/bcp";
import {
Address,
Amount,
ChainId,
isSendTransaction,
Nonce,
SendTransaction,
TokenTicker,
UnsignedTransaction,
} from "@iov/bcp";
import {
bnsCodec,
BnsConnection,
BnsUsernameNft,
CreateProposalTx,
DeleteAccountTx,
DeleteDomainTx,
isCreateProposalTx,
isDeleteAccountTx,
isDeleteDomainTx,
isRegisterAccountTx,
isRegisterDomainTx,
isRegisterUsernameTx,
isRenewAccountTx,
isRenewDomainTx,
isReplaceAccountTargetsTx,
isTransferAccountTx,
isTransferDomainTx,
isTransferUsernameTx,
isUpdateTargetsOfUsernameTx,
isVoteTx,
RegisterAccountTx,
RegisterDomainTx,
RegisterUsernameTx,
RenewAccountTx,
RenewDomainTx,
ReplaceAccountTargetsTx,
TransferAccountTx,
TransferDomainTx,
TransferUsernameTx,
UpdateTargetsOfUsernameTx,
VoteTx,
} from "@iov/bns";
import { Bip39, Random } from "@iov/crypto";
import { UserProfile, UserProfileEncryptionKey } from "@iov/keycontrol";
import {
GetIdentitiesAuthorization,
JsonRpcSigningServer,
MultiChainSigner,
SignAndPostAuthorization,
SigningServerCore,
} from "@iov/multichain";
import { AccountInfo, AccountManager } from "../accountManager";
import {
SoftwareAccountManager,
SoftwareAccountManagerChainConfig,
} from "../accountManager/softwareAccountManager";
import { StringDb } from "../backgroundscript/db";
import { algorithmForCodec, chainConnector, getChains, pathBuilderForCodec } from "./config";
import { createTwoWalletProfile } from "./userprofilehelpers";
function isNonUndefined<T>(t: T | undefined): t is T {
return t !== undefined;
}
/**
* All transaction types that can be displayed and signed by the extension
*/
export type SupportedTransaction =
| SendTransaction
| DeleteAccountTx
| DeleteDomainTx
| RegisterUsernameTx
| UpdateTargetsOfUsernameTx
| TransferUsernameTx
| TransferDomainTx
| TransferAccountTx
| RegisterDomainTx
| RegisterAccountTx
| RenewAccountTx
| RenewDomainTx
| ReplaceAccountTargetsTx
| CreateProposalTx
| VoteTx;
export function isSupportedTransaction(tx: UnsignedTransaction): tx is SupportedTransaction {
return (
isSendTransaction(tx) ||
isDeleteDomainTx(tx) ||
isDeleteAccountTx(tx) ||
isRenewDomainTx(tx) ||
isRenewAccountTx(tx) ||
isRegisterUsernameTx(tx) ||
isUpdateTargetsOfUsernameTx(tx) ||
isTransferUsernameTx(tx) ||
isRegisterDomainTx(tx) ||
isTransferDomainTx(tx) ||
isRegisterAccountTx(tx) ||
isTransferAccountTx(tx) ||
isReplaceAccountTargetsTx(tx) ||
isCreateProposalTx(tx) ||
isVoteTx(tx)
);
}
export interface AuthorizationCallbacks {
readonly authorizeGetIdentities: GetIdentitiesAuthorization;
readonly authorizeSignAndPost: SignAndPostAuthorization;
}
export interface MakeAuthorizationCallbacks {
(signer: MultiChainSigner): AuthorizationCallbacks;
}
/**
* An account
*
* All fields must be losslessly JSON serializable/deserializable to allow
* messaging between background script and UI.
*/
export interface PersonaAcccount {
/** human readable address or placeholder text */
readonly label: string;
readonly iovAddress: Address;
}
export type UseOnlyJsonRpcSigningServer = Pick<JsonRpcSigningServer, "handleUnchecked" | "handleChecked">;
export class Persona {
private readonly encryptionKey: UserProfileEncryptionKey;
private readonly profile: UserProfile;
private readonly signer: MultiChainSigner;
private readonly accountManager: AccountManager;
private readonly core: SigningServerCore;
private readonly jsonRpcSigningServer: JsonRpcSigningServer;
public get signingServer(): UseOnlyJsonRpcSigningServer {
return this.jsonRpcSigningServer;
}
/**
* Creates a new Persona instance.
*
* This function does everything that cannot be done in a constructor
* (because a constructor is synchonous): reading configs, connecting to the network,
* creating accounts.
*/
public static async create(
db: StringDb,
password: string,
makeAuthorizationCallbacks: MakeAuthorizationCallbacks | undefined,
fixedMnemonic?: string,
): Promise<Persona> {
const encryptionKey = await UserProfile.deriveEncryptionKey(password);
const entropyBytes = 16;
const mnemonic = fixedMnemonic || Bip39.encode(await Random.getBytes(entropyBytes)).toString();
const profile = createTwoWalletProfile(mnemonic);
const signer = new MultiChainSigner(profile);
const managerChains = await Persona.connectToAllConfiguredChains(signer);
const manager = new SoftwareAccountManager(profile, managerChains);
// Setup initial account of index 0
await manager.generateNextAccount();
await profile.storeIn(db, encryptionKey);
return new Persona(encryptionKey, profile, signer, manager, makeAuthorizationCallbacks);
}
public static async load(
db: StringDb,
password: string,
makeAuthorizationCallbacks: MakeAuthorizationCallbacks | undefined,
): Promise<Persona> {
const encryptionKey = await UserProfile.deriveEncryptionKey(password);
const profile = await UserProfile.loadFrom(db, encryptionKey);
const signer = new MultiChainSigner(profile);
const managerChains = await Persona.connectToAllConfiguredChains(signer);
const manager = new SoftwareAccountManager(profile, managerChains);
// write into the DB the identity for starname-migration chain in case it is not present yet
const identityWithStarname = profile.getAllIdentities().find(row => row.chainId === "starname-migration");
if (!identityWithStarname) {
await manager.updateAccount();
await profile.storeIn(db, encryptionKey);
}
return new Persona(encryptionKey, profile, signer, manager, makeAuthorizationCallbacks);
}
private static async connectToAllConfiguredChains(
signer: MultiChainSigner,
): Promise<readonly SoftwareAccountManagerChainConfig[]> {
const managerChains: SoftwareAccountManagerChainConfig[] = [];
for (const chainSpec of (await getChains()).map(chain => chain.chainSpec)) {
const connector = chainConnector(chainSpec);
try {
await signer.addChain(connector);
} catch (e) {
console.error("Could not add chain. " + e);
}
managerChains.push({
chainId: chainSpec.chainId,
algorithm: algorithmForCodec(chainSpec.codecType),
derivePath: pathBuilderForCodec(chainSpec.codecType),
});
}
return managerChains;
}
/**
* The given signer and accountsManager must share the same UserProfile.
* All changes are automatically saved in db.
*/
private constructor(
encryptionKey: UserProfileEncryptionKey,
profile: UserProfile,
signer: MultiChainSigner,
accountManager: AccountManager,
makeAuthorizationCallbacks: MakeAuthorizationCallbacks | undefined,
) {
this.encryptionKey = encryptionKey;
this.profile = profile;
this.signer = signer;
this.accountManager = accountManager;
const { authorizeGetIdentities, authorizeSignAndPost } = makeAuthorizationCallbacks
? makeAuthorizationCallbacks(signer)
: {
authorizeGetIdentities: () => {
throw new Error("No authorizeGetIdentities callback set");
},
authorizeSignAndPost: () => {
throw new Error("No authorizeSignAndPost callback set");
},
};
this.core = new SigningServerCore(
this.profile,
this.signer,
authorizeGetIdentities,
authorizeSignAndPost,
console.error,
);
this.jsonRpcSigningServer = new JsonRpcSigningServer(this.core);
}
public destroy(): void {
this.jsonRpcSigningServer.shutdown();
this.signer.shutdown();
}
public async createAccount(db: StringDb): Promise<void> {
await this.accountManager.generateNextAccount();
await this.profile.storeIn(db, this.encryptionKey);
}
public async getAccounts(): Promise<readonly PersonaAcccount[]> {
const accounts = await this.accountManager.accounts();
try {
const bnsConnection = this.getBnsConnection();
return Promise.all(
accounts.map(async (account, index) => {
const bnsIdentity = account.identities.find(ident => ident.chainId === bnsConnection.chainId);
if (!bnsIdentity) {
throw new Error(`Missing BNS identity for account at index ${index}`);
}
const iovAddress = this.signer.identityToAddress(bnsIdentity);
let label: string;
const names = await bnsConnection.getUsernames({ owner: iovAddress });
if (names.length > 1) {
// this case will not happen for regular users that do not professionally collect username NFTs
label = `Multiple names`;
} else if (names.length === 1) {
label = `${names[0].id}`;
} else {
label = `Account ${account.index}`;
}
return { label, iovAddress };
}),
);
} catch {
return [];
}
}
public get mnemonic(): string {
const wallets = this.profile.wallets.value;
const mnemonics = new Set(wallets.map(info => this.profile.printableSecret(info.id)));
if (mnemonics.size !== 1) {
throw new Error("Found multiple different mnemoics in different wallets. This is not supported.");
}
return mnemonics.values().next().value;
}
public get connectedChains(): readonly ChainId[] {
return this.signer.chainIds();
}
public async getBalances(): Promise<readonly (readonly Amount[])[]> {
const accountsInfos = await this.accountManager.accounts();
const balancesPerAccount = await Promise.all(
accountsInfos.map(
async (accountInfo: AccountInfo): Promise<readonly Amount[]> => {
const balances = (
await Promise.all(
accountInfo.identities.map(async identity => {
const { chainId, pubkey } = identity;
try {
const account = await this.signer.connection(chainId).getAccount({ pubkey });
return account;
} catch {
return undefined;
}
}),
)
)
.filter(isNonUndefined)
.flatMap(account => account.balance);
return balances;
},
),
);
return balancesPerAccount;
}
public async getStarnames(): Promise<readonly string[]> {
const starnames: BnsUsernameNft[] = [];
try {
const bnsConnection = this.getBnsConnection();
const accounts = await this.accountManager.accounts();
const bnsIdentities = accounts
.flatMap(account => account.identities)
.filter(ident => ident.chainId === bnsConnection.chainId);
await Promise.all(
bnsIdentities.map(async bnsIdentity => {
const bnsAddress = bnsCodec.identityToAddress(bnsIdentity);
starnames.push(...(await bnsConnection.getUsernames({ owner: bnsAddress })));
}),
);
return starnames.map(username => username.id);
} catch {
return [];
}
}
public async getMigrationSignature(): Promise<any> {
const profile = this.profile;
let chainId = "local-iov-devnet" as ChainId;
let iovIdentity = profile.getAllIdentities().find(row => row.chainId === "local-iov-devnet");
if (!iovIdentity) {
chainId = "iov-mainnet" as ChainId;
iovIdentity = profile.getAllIdentities().find(row => row.chainId === "iov-mainnet");
}
const starnameIdentity = profile.getAllIdentities().find(row => row.chainId === "starname-migration");
if (iovIdentity && starnameIdentity) {
const iovAddress = bnsCodec.identityToAddress(iovIdentity);
const addressPefix = "star";
const bankToken = {
fractionalDigits: 9,
name: "Internet Of Value Token",
ticker: "IOV",
denom: "IOV",
};
const cosmwasmCodec = new CosmWasmCodec(addressPefix, [bankToken]);
const starnameAddress = cosmwasmCodec.identityToAddress(starnameIdentity);
const sendTx = {
kind: "bcp/send",
chainId: chainId,
sender: iovAddress,
recipient: "tiov100ltqp3g7sxzqkkzv7qtz43932lhmm6gtnx5x8",
memo: starnameAddress,
amount: {
quantity: "1000000001",
fractionalDigits: 9,
tokenTicker: "CASH" as TokenTicker,
},
fee: {
tokens: { quantity: "500000000", fractionalDigits: 9, tokenTicker: "IOV" as TokenTicker },
payer: iovAddress,
},
};
return await profile.signTransaction(
iovIdentity,
sendTx as UnsignedTransaction,
bnsCodec,
10000 as Nonce,
);
} else {
return "ERROR";
}
}
private getBnsConnection(): BnsConnection {
for (const chainId of this.signer.chainIds()) {
const connection = this.signer.connection(chainId);
if (connection instanceof BnsConnection) {
return connection;
}
}
throw new Error("No BNS connection found");
}
}