async getTransactions (hash: string, size: number = 30, next?: string): Promise<ApiPagedResponse<Transaction>> {
    return await this.client.requestList('GET', `blocks/${hash}/transactions`, size, next)
  }