| 123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Module\Blockchain\ApiDto;
- use App\Module\Blockchain\ApiDto\Result\EthGetTransactionByHashResultDto;
- /**
- * 以太坊获取交易详情DTO
- */
- class EthGetTransactionByHashDto
- {
- /**
- * @var string JSON-RPC版本
- */
- public string $jsonrpc;
- /**
- * @var int 请求ID
- */
- public int $id;
- /**
- * @var EthGetTransactionByHashResultDto 交易详情结果
- */
- public EthGetTransactionByHashResultDto $result;
- }
|