-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
423 lines (374 loc) · 12.7 KB
/
index.tsx
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
import { Aptos, AptosConfig, Network } from '@aptos-labs/ts-sdk';
import type { Account, RawTransaction } from '@aptos-labs/ts-sdk';
import type { Json, JsonRpcParams, OnRpcRequestHandler } from '@metamask/snaps-sdk';
import {
Box,
Text,
Bold,
Divider,
Dropdown,
Option,
Heading,
Copyable,
} from '@metamask/snaps-sdk/jsx';
import { getAccount, getAccountAddress, getPrivateKey, getPublicKey } from './cryptoUtils';
import { bytesToHex, hexToBytes, stringifyBigInts, convertBytesToHexRecursively, fetchData } from './utils';
import { MY_ACC_ADD, APTOS_COIN, COIN_STORE, INITIAL_BALANCE } from './constants';
import { Operation, RequestParams, StateData, } from './types';
import { clearData, getData, setData } from './helpers';
/**
* Handle incoming JSON-RPC requests, sent through `wallet_invokeSnap`.
*
* @param args - The request handler args as object.
* @param args.origin - The origin of the request, e.g., the website that
* invoked the snap.
* @param args.request - A validated JSON-RPC request object.
* @returns The result of `snap_dialog`.
* @throws If the request method is not valid for this snap.
*/
export const onRpcRequest: OnRpcRequestHandler = async ({
origin,
request,
}) => {
switch (request.method) {
case 'getAccountAddress': {
const { derivationPath }: ((Record<string, Json> | Json[]) & ExactOptionalGuard) & JsonRpcParams = request.params ?? {};
const pubKey: string = await getAccountAddress(derivationPath);
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Text>Account Address</Text>
<Copyable value={pubKey} />
</Box>
),
},
});
return pubKey;
}
case 'getPublicKey': {
const { derivationPath } = request.params ?? {};
const pubKey: string = await getPublicKey(derivationPath);
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Text>Public Key</Text>
<Copyable value={pubKey} />
</Box>
),
},
});
return pubKey;
}
case 'getPrivateKey': {
const { derivationPath } = request.params ?? {};
const sk: string = await getPrivateKey(derivationPath);
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Text>Private Key</Text>
<Copyable value={sk} sensitive />
</Box>
),
},
});
return sk;
}
case 'createNewAccount': {
const { derivationPath } = request.params ?? {};
const pubKey: string = await getPublicKey(derivationPath);
const accAdd: string = await getAccountAddress(derivationPath);
const sk: string = await getPrivateKey(derivationPath);
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Heading>Your Account details:</Heading>
<Text>Account Address</Text>
<Copyable value={accAdd} />
<Text>Public Key</Text>
<Copyable value={pubKey} />
<Text>Private Key</Text>
<Copyable value={sk} sensitive />
</Box>
),
},
});
return accAdd;
}
case 'signMessage': {
const { derivationPath, message } = request.params ?? {};
const account = await getAccount(derivationPath);
const sig = account.sign(message || 'Jai Siyaram!');
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Text>Message</Text>
<Copyable value={message || 'Jai Siyaram!'} />
<Text>Signature</Text>
<Copyable value={sig.toString()} />
</Box>
),
},
});
return sig.toString();
}
case 'test_SignTxn': {
const { derivationPath } = request.params ?? {};
const account = await getAccount(derivationPath);
const config = new AptosConfig({ network: Network.TESTNET });
const aptos = new Aptos(config);
const txn = await aptos.transaction.build.simple({
sender: account.accountAddress,
data: {
// All transactions on Aptos are implemented via smart contracts.
function: '0x1::aptos_account::transfer',
functionArguments: [MY_ACC_ADD, 100],
},
});
const sig = account.signTransaction(txn);
const txnForDisplay = stringifyBigInts(
convertBytesToHexRecursively(txn.rawTransaction),
);
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Heading>Transaction Details</Heading>
{/* // @TODO show txn details properly */}
<Text>{JSON.stringify(txnForDisplay, null, 2)}</Text>
<Copyable value={sig.toString()} />
</Box>
),
},
});
return sig.toString();
}
case 'sign&sendTxn': {
const { derivationPath, txnDetails } = request.params ?? {};
if (!txnDetails.receiver || !txnDetails.amount) throw new Error('Txn Details not present.')
const account = await getAccount(derivationPath);
console.log('account: ', account);
// Setup the client
const config = new AptosConfig({ network: Network.TESTNET });
const aptos = new Aptos(config);
try {
await aptos.fundAccount({
accountAddress: account.accountAddress,
amount: INITIAL_BALANCE,
});
console.log('account have been funded!');
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
try {
console.log('\n=== Balances ===\n');
const aliceAccountBalance = await aptos.getAccountResource({
accountAddress: account.accountAddress,
resourceType: COIN_STORE,
});
const aliceBalance = Number(aliceAccountBalance.coin.value);
console.log(`Alice's balance is: ${aliceBalance}`);
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
const txn = await aptos.transaction.build.simple({
sender: account.accountAddress,
data: {
function: '0x1::aptos_account::transfer',
functionArguments: [txnDetails.receiver, txnDetails.amount],
},
});
const sig = account.signTransaction(txn);
const txnForDisplay = stringifyBigInts(
convertBytesToHexRecursively(txn.rawTransaction),
);
const result = await snap.request({
method: 'snap_dialog',
params: {
type: 'confirmation',
content: (
<Box>
<Heading>Approve Transaction</Heading>
{/* // @TODO show txn details properly */}
<Text>{JSON.stringify(txnForDisplay, null, 2)}</Text>
<Text>Signature</Text>
<Copyable value={sig.toString()} />
</Box>
),
},
});
if (result !== true) {
throw new Error('User Denied Permission');
}
console.log('\n=== Transfer transaction ===\n');
const committedTxn = await aptos.signAndSubmitTransaction({
signer: account,
transaction: txn,
});
const executedTransaction = await aptos.waitForTransaction({
transactionHash: committedTxn.hash,
});
console.log('Transaction hash:', executedTransaction.hash);
try {
console.log('\n=== Balances after transfer ===\n');
const newAliceAccountBalance = await aptos.getAccountResource({
accountAddress: account.accountAddress,
resourceType: COIN_STORE,
});
const newAliceBalance = Number(newAliceAccountBalance.coin.value);
console.log(`Alice's balance is: ${newAliceBalance}`);
const newBobAccountBalance = await aptos.getAccountResource({
accountAddress: txnDetails.receiver,
resourceType: COIN_STORE,
});
const newBobBalance = Number(newBobAccountBalance.coin.value);
console.log(`Bob's balance is: ${newBobBalance}`);
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
return executedTransaction.hash;
}
case 'test_sign&sendTxn': {
const { derivationPath } = request.params ?? {};
const account = await getAccount(derivationPath);
console.log('account: ', account);
// Setup the client
const config = new AptosConfig({ network: Network.TESTNET });
const aptos = new Aptos(config);
try {
await aptos.fundAccount({
accountAddress: account.accountAddress,
amount: INITIAL_BALANCE,
});
console.log('account have been funded!');
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
try {
console.log('\n=== Balances ===\n');
const aliceAccountBalance = await aptos.getAccountResource({
accountAddress: account.accountAddress,
resourceType: COIN_STORE,
});
const aliceBalance = Number(aliceAccountBalance.coin.value);
console.log(`Alice's balance is: ${aliceBalance}`);
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
const txn = await aptos.transaction.build.simple({
sender: account.accountAddress,
data: {
// All transactions on Aptos are implemented via smart contracts.
function: '0x1::aptos_account::transfer',
functionArguments: [MY_ACC_ADD, 100],
},
});
const sig = account.signTransaction(txn);
const txnForDisplay = stringifyBigInts(
convertBytesToHexRecursively(txn.rawTransaction),
);
const result = await snap.request({
method: 'snap_dialog',
params: {
type: 'confirmation',
content: (
<Box>
<Heading>Approve Transaction</Heading>
{/* // @TODO show txn details properly */}
<Text>{JSON.stringify(txnForDisplay, null, 2)}</Text>
<Text>Signature</Text>
<Copyable value={sig.toString()} />
</Box>
),
},
});
if (result !== true) {
throw new Error('User Denied Permission');
}
console.log('\n=== Transfer transaction ===\n');
const committedTxn = await aptos.signAndSubmitTransaction({
signer: account,
transaction: txn,
});
const executedTransaction = await aptos.waitForTransaction({
transactionHash: committedTxn.hash,
});
console.log('Transaction hash:', executedTransaction.hash);
try {
console.log('\n=== Balances after transfer ===\n');
const newAliceAccountBalance = await aptos.getAccountResource({
accountAddress: account.accountAddress,
resourceType: COIN_STORE,
});
const newAliceBalance = Number(newAliceAccountBalance.coin.value);
console.log(`Alice's balance is: ${newAliceBalance}`);
const newBobAccountBalance = await aptos.getAccountResource({
accountAddress: MY_ACC_ADD,
resourceType: COIN_STORE,
});
const newBobBalance = Number(newBobAccountBalance.coin.value);
console.log(`Bob's balance is: ${newBobBalance}`);
} catch (error) {
console.log('account could not be funded!');
console.log(error);
}
return executedTransaction.hash;
}
case 'setData': {
return setData(request.params);
}
case 'getData': {
return getData();
}
case 'clearData': {
return clearData();
}
case 'jsr': {
const response = await fetchData('https://api.testnet.aptoslabs.com/v1', {
method: 'GET',
headers: { 'Content-Type': 'application/json' },
});
const data = await response.json();
await snap.request({
method: 'snap_dialog',
params: {
type: 'alert',
content: (
<Box>
<Heading>Jai Siyaram!</Heading>
<Text>Aptos RPC Fetch</Text>
<Copyable value={JSON.stringify(data, null, 2)}></Copyable>
<Divider />
<Text>Systems Operational!</Text>
</Box>
),
},
});
return data;
// return 'jsr';
}
default:
throw new Error('Method not found.');
}
};