aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/test/utils/fixture_data.ts
blob: 5ce3ff08f0b106d79a7df83f227cd85deca37101 (plain) (blame)
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
const TEST_RPC_ACCOUNT_0 = '0x5409ed021d9299bf6814279a6a1411a7e866a631';
const networkId = 42;
export const fixtureData = {
    TEST_RPC_ACCOUNT_0,
    TEST_RPC_ACCOUNT_0_ACCOUNT_PRIVATE_KEY: 'F2F48EE19680706196E2E339E5DA3491186E0C4C5030670656B0E0164837257D',
    TEST_RPC_MNEMONIC: 'concert load couple harbor equip island argue ramp clarify fence smart topic',
    TEST_RPC_MNEMONIC_DERIVATION_PATH: `44'/60'/0'/0`,
    PERSONAL_MESSAGE_STRING: 'hello world',
    PERSONAL_MESSAGE_SIGNED_RESULT:
        '0x1b0ec5e2908e993d0c8ab6b46da46be2688fdf03c7ea6686075de37392e50a7d7fcc531446699132fbda915bd989882e0064d417018773a315fb8d43ed063c9b00',
    TESTRPC_DERIVATION_PATH: `m/44'/60'/0'/0`,
    NETWORK_ID: networkId,
    TX_DATA: {
        nonce: '0x00',
        gasPrice: '0x0',
        gas: '0x2710',
        to: '0x0000000000000000000000000000000000000000',
        value: '0x00',
        chainId: networkId,
        from: TEST_RPC_ACCOUNT_0,
    },
    // This is the signed result of the abouve Transaction Data
    TX_DATA_SIGNED_RESULT:
        '0xf85f8080822710940000000000000000000000000000000000000000808078a0712854c73c69445cc1b22a7c3d7312ff9a97fe4ffba35fd636e8236b211b6e7ca0647cee031615e52d916c7c707025bc64ad525d8f1b9876c3435a863b42743178',
};