You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Get transactions, optionally filtered by contract address, signature, and more.
245
+
/// </summary>
246
+
/// <param name="chainIds">The chain IDs to get the transactions from.</param>
247
+
/// <param name="contractAddress">The contract address to get the transactions from. (Optional)</param>
248
+
/// <param name="signature">The signature to filter transactions by. (Optional)</param>
249
+
/// <param name="fromBlock">The starting block number to get the transactions from. (Optional, if provided, said block is included in query)</param>
250
+
/// <param name="toBlock">The ending block number to get the transactions from. (Optional, if provided, said block is included in query)</param>
251
+
/// <param name="fromTimestamp">The starting block timestamp to get the transactions from. (Optional, if provided, said block is included in query)</param>
252
+
/// <param name="toTimestamp">The ending block timestamp to get the transactions from. (Optional, if provided, said block is included in query)</param>
253
+
/// <param name="sortBy">The field to sort the transactions by. (Default: BlockNumber)</param>
254
+
/// <param name="sortOrder">The order to sort the transactions by. (Default: Desc)</param>
255
+
/// <param name="limit">The number of transactions to return. (Default: 20)</param>
256
+
/// <param name="page">The page number to return. (Default: 0)</param>
257
+
/// <param name="decode">Whether to decode the transactions. (Default: true)</param>
258
+
/// <returns>The transactions and metadata as an instance of <see cref="InsightTransactions"/>.</returns>
259
+
/// <exception cref="ArgumentException">Thrown when a signature is provided without a contract address.</exception>
260
+
/// /// <exception cref="ArgumentException">Thrown when no chain IDs are provided.</exception>
0 commit comments