wallet tron transactions

This commit is contained in:
cano
2024-03-25 06:15:36 +08:00
parent 4b8f205e86
commit 489090382f
83 changed files with 5424 additions and 1343 deletions

View File

@ -0,0 +1,34 @@
<?php
namespace App\Bean\Sdk\Wallet\Tron;
use App\Bean\Model\Base\BaseBean;
class NowBlockBean extends BaseBean
{
protected $block_number;
protected $block_timestamp;
public function getBlockNumber()
{
return $this->block_number;
}
public function setBlockNumber($block_number): void
{
$this->block_number = $block_number;
}
public function getBlockTimestamp()
{
return $this->block_timestamp;
}
public function setBlockTimestamp($block_timestamp): void
{
$this->block_timestamp = $block_timestamp;
}
}