2023-05-24 19:50:31 +02:00
|
|
|
const {
|
|
|
|
convertToHexValue,
|
|
|
|
withFixtures,
|
|
|
|
sendTransaction,
|
2023-06-09 16:01:12 +02:00
|
|
|
logInWithBalanceValidation,
|
2023-05-24 19:50:31 +02:00
|
|
|
} = require('../helpers');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2020-01-20 19:50:25 +01:00
|
|
|
|
2020-07-09 22:27:37 +02:00
|
|
|
describe('Simple send', function () {
|
2020-02-11 17:51:13 +01:00
|
|
|
it('can send a simple transaction from one account to another', async function () {
|
2020-01-20 19:50:25 +01:00
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
2020-11-03 00:41:28 +01:00
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
2022-01-19 00:08:41 +01:00
|
|
|
balance: convertToHexValue(25000000000000000000),
|
2020-01-20 19:50:25 +01:00
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-07-09 17:42:56 +02:00
|
|
|
await withFixtures(
|
2022-10-28 10:42:12 +02:00
|
|
|
{
|
|
|
|
fixtures: new FixtureBuilder().build(),
|
|
|
|
ganacheOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
},
|
2023-05-30 14:44:56 +02:00
|
|
|
async ({ driver, ganacheServer }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.navigate();
|
2023-06-09 16:01:12 +02:00
|
|
|
await logInWithBalanceValidation(driver, ganacheServer);
|
2023-05-30 14:44:56 +02:00
|
|
|
|
2023-05-24 19:50:31 +02:00
|
|
|
await sendTransaction(
|
|
|
|
driver,
|
2020-11-03 00:41:28 +01:00
|
|
|
'0x985c30949c92df7a0bd42e0f3e3d539ece98db24',
|
2023-05-24 19:50:31 +02:00
|
|
|
'1',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-07-14 17:20:41 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|