12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * This file is part of web3.php package.
- *
- * (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
- *
- * @author Peter Lai <alk03073135@gmail.com>
- * @license MIT
- */
- namespace qiniu\services\blockchain\bsc\src\Methods\Eth;
- use InvalidArgumentException;
- use qiniu\services\blockchain\bsc\src\Methods\EthMethod;
- use qiniu\services\blockchain\bsc\src\Formatters\BigNumberFormatter;
- class Hashrate extends EthMethod
- {
- /**
- * validators
- *
- * @var array
- */
- protected $validators = [];
-
- /**
- * inputFormatters
- *
- * @var array
- */
- protected $inputFormatters = [];
- /**
- * outputFormatters
- *
- * @var array
- */
- protected $outputFormatters = [
- BigNumberFormatter::class
- ];
- /**
- * defaultValues
- *
- * @var array
- */
- protected $defaultValues = [];
- /**
- * construct
- *
- * @param string $method
- * @param array $arguments
- * @return void
- */
- // public function __construct($method='', $arguments=[])
- // {
- // parent::__construct($method, $arguments);
- // }
- }
|