PHP code example of renoki-co / laravel-web3

1. Go to this page and download the library: Download renoki-co/laravel-web3 library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

renoki-co / laravel-web3 example snippets


use RenokiCo\LaravelWeb3\Web3Facade as Web3;

Web3::eth()->hashRate();

use RenokiCo\LaravelWeb3\Web3Facade as Web3;

Web3Facade::connection('http2')->eth()->hashRate();

use RenokiCo\LaravelWeb3\Web3Facade as Web3;

Web3::eth()->coinbase();
Web3::net()->version();