Function TransactionHistoryApiAxiosParamCreator

  • TransactionHistoryApi - axios parameter creator

    Parameters

    Returns {
        listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>);
    }

    • listAddressTransactions: ((networkId, addressId, limit?, page?, options?) => Promise<RequestArgs>)

      List all transactions that interact with the address.

      Summary

      List transactions for an address.

      Throws

        • (networkId, addressId, limit?, page?, options?): Promise<RequestArgs>
        • Parameters

          • networkId: string

            The ID of the blockchain network

          • addressId: string

            The ID of the address to fetch the transactions for.

          • Optional limit: number

            A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

          • Optional page: string

            A cursor for pagination across multiple pages of results. Don&#39;t include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

          • Optional options: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    Export