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,55 @@
<?php
namespace App\Bean\Sdk\Wallet\Tron;
use App\Bean\Model\Base\BaseBean;
class AccountTransactionTokenInfoBean extends BaseBean
{
protected $symbol;
protected $address;
protected $decimals;
protected $name;
public function getSymbol()
{
return $this->symbol;
}
public function setSymbol($symbol): void
{
$this->symbol = $symbol;
}
public function getAddress()
{
return $this->address;
}
public function setAddress($address): void
{
$this->address = $address;
}
public function getDecimals()
{
return $this->decimals;
}
public function setDecimals($decimals): void
{
$this->decimals = $decimals;
}
public function getName()
{
return $this->name;
}
public function setName($name): void
{
$this->name = $name;
}
}