Hashrate.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * This file is part of web3.php package.
  4. *
  5. * (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
  6. *
  7. * @author Peter Lai <alk03073135@gmail.com>
  8. * @license MIT
  9. */
  10. namespace qiniu\services\blockchain\bsc\src\Methods\Eth;
  11. use InvalidArgumentException;
  12. use qiniu\services\blockchain\bsc\src\Methods\EthMethod;
  13. use qiniu\services\blockchain\bsc\src\Formatters\BigNumberFormatter;
  14. class Hashrate extends EthMethod
  15. {
  16. /**
  17. * validators
  18. *
  19. * @var array
  20. */
  21. protected $validators = [];
  22. /**
  23. * inputFormatters
  24. *
  25. * @var array
  26. */
  27. protected $inputFormatters = [];
  28. /**
  29. * outputFormatters
  30. *
  31. * @var array
  32. */
  33. protected $outputFormatters = [
  34. BigNumberFormatter::class
  35. ];
  36. /**
  37. * defaultValues
  38. *
  39. * @var array
  40. */
  41. protected $defaultValues = [];
  42. /**
  43. * construct
  44. *
  45. * @param string $method
  46. * @param array $arguments
  47. * @return void
  48. */
  49. // public function __construct($method='', $arguments=[])
  50. // {
  51. // parent::__construct($method, $arguments);
  52. // }
  53. }