jeyroik/toncenter-php-sdk

View on GitHub
src/interfaces/responses/IResponseGetTransactions.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace tonc\interfaces\responses;

use tonc\interfaces\transactions\ITransaction;

interface IResponseGetTransactions extends IResponse
{
    public function last(): ITransaction;
    public function first(): ITransaction;
}