@covalenthq/client-sdk 2.2.3 → 2.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -248,8 +248,8 @@ The Covalent SDK provides comprehensive support for all Class A, Class B, and Pr
248
248
  2. <strong>Security Service</strong>: Access to the token approvals API endpoints
249
249
  </summary>
250
250
 
251
- - `getApprovals()`: Get a list of approvals across all ERC20 token contracts categorized by spenders for a wallets assets.
252
- - `getNftApprovals()`: Get a list of approvals across all NFT contracts categorized by spenders for a wallets assets.
251
+ - `getApprovals()`: Get a list of approvals across all ERC20 token contracts categorized by spenders for a wallet's assets.
252
+ - `getNftApprovals()`: Get a list of approvals across all NFT contracts categorized by spenders for a wallet's assets.
253
253
  </details>
254
254
 
255
255
  <details>
@@ -333,13 +333,13 @@ The Covalent SDK provides comprehensive support for all Class A, Class B, and Pr
333
333
 
334
334
  - `getAllTransactionsForAddress()`: Fetch and render the most recent transactions involving an address. Frequently seen in wallet applications. (Paginated)
335
335
  - `getAllTransactionsForAddressByPage()`: Fetch and render the most recent transactions involving an address. Frequently seen in wallet applications. (Nonpaginated)
336
- - `getTransactionsForAddressV3()`: Fetch and render the most recent transactions involving an address. Frequently seen in wallet applications.
336
+ - `getPaginatedTransactionsForAddress()`: Fetch and render the most recent transactions involving an address. Frequently seen in wallet applications.
337
337
  - `getTransaction()`: Fetch and render a single transaction including its decoded log events. Additionally return semantically decoded information for DEX trades, lending and NFT sales.
338
- - `getTransactionsForBlock()`: Fetch all transactions including their decoded log events in a block and further flag interesting wallets or transactions.
338
+ - `getTransactionsForBlockByPage()`: Fetch all transactions including their decoded log events in a block by page number and further flag interesting wallets or transactions.
339
+ - `getTransactionsForBlock()`: Fetch all transactions including their decoded log events in a block by block hash and further flag interesting wallets or transactions.
339
340
  - `getTransactionSummary()`: Fetch the earliest and latest transactions, and the transaction count for a wallet. Calculate the age of the wallet and the time it has been idle and quickly gain insights into their engagement with web3.
340
341
  - `getTimeBucketTransactionsForAddress()`: Fetch all transactions including their decoded log events in a 15-minute time bucket interval.
341
- - `getTransactionsForBlockHashByPage()`: Fetch all transactions including their decoded log events in a block and further flag interesting wallets or transactions.
342
- - `getTransactionsForBlockHash()`: Fetch all transactions including their decoded log events in a block and further flag interesting wallets or transactions.
342
+ - `getEarliestTransactionsForAddress()`: Fetch and render the earliest transactions involving an address. Frequently seen in wallet applications.
343
343
  </details>
344
344
 
345
345
  ## Contributing