async getVouts (txid: string, size: number = 30, next?: string): Promise<ApiPagedResponse<TransactionVout>> {
    return await this.client.requestList('GET', `transactions/${txid}/vouts`, size, next)
  }