forked from aave/safety-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-wallets.ts
39 lines (37 loc) · 1.2 KB
/
test-wallets.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
import BigNumber from 'bignumber.js';
import {WAD} from './helpers/constants';
const toWad = (value: string) => new BigNumber(value).times(WAD).toFixed();
export const accounts: {secretKey: string; balance: string}[] = [
{
secretKey: '0xc5e8f61d1ab959b397eecc0a37a6517b8e67a0e7cf1f4bce5591f3ed80199122',
balance: toWad('1000000'),
},
{
secretKey: '0xd49743deccbccc5dc7baa8e69e5be03298da8688a15dd202e20f15d5e0e9a9fb',
balance: toWad('1000000'),
},
{
secretKey: '0x23c601ae397441f3ef6f1075dcb0031ff17fb079837beadaf3c84d96c6f3e569',
balance: toWad('1000000'),
},
{
secretKey: '0xee9d129c1997549ee09c0757af5939b2483d80ad649a0eda68e8b0357ad11131',
balance: toWad('1000000'),
},
{
secretKey: '0x87630b2d1de0fbd5044eb6891b3d9d98c34c8d310c852f98550ba774480e47cc',
balance: toWad('1000000'),
},
{
secretKey: '0x275cc4a2bfd4f612625204a20a2280ab53a6da2d14860c47a9f5affe58ad86d4',
balance: toWad('1000000'),
},
{
secretKey: '0xaee25d55ce586148a853ca83fdfacaf7bc42d5762c6e7187e6f8e822d8e6a650',
balance: toWad('1000000'),
},
{
secretKey: '0xa2e0097c961c67ec197b6865d7ecea6caffc68ebeb00e6050368c8f67fc9c588',
balance: toWad('1000000'),
},
];