123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- require('./exampleBase.php');
- $eth = $web3->eth;
- echo 'Eth Send Transaction' . PHP_EOL;
- $eth->accounts(function ($err, $accounts) use ($eth) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- $fromAccount = $accounts[0];
- $toAccount = $accounts[1];
- // get balance
- $eth->getBalance($fromAccount, function ($err, $balance) use($fromAccount) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- echo $fromAccount . ' Balance: ' . $balance . PHP_EOL;
- });
- $eth->getBalance($toAccount, function ($err, $balance) use($toAccount) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- echo $toAccount . ' Balance: ' . $balance . PHP_EOL;
- });
- // send transaction
- $eth->sendTransaction([
- 'from' => $fromAccount,
- 'to' => $toAccount,
- 'value' => '0x11'
- ], function ($err, $transaction) use ($eth, $fromAccount, $toAccount) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- echo 'Tx hash: ' . $transaction . PHP_EOL;
- // get balance
- $eth->getBalance($fromAccount, function ($err, $balance) use($fromAccount) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- echo $fromAccount . ' Balance: ' . $balance . PHP_EOL;
- });
- $eth->getBalance($toAccount, function ($err, $balance) use($toAccount) {
- if ($err !== null) {
- echo 'Error: ' . $err->getMessage();
- return;
- }
- echo $toAccount . ' Balance: ' . $balance . PHP_EOL;
- });
- });
- });
|