PHP Classes

PHP CovalentHQ Service: Access blockchain data points using CovalentHQ API

Recommend this page to a friend!

  Author Author  
Picture of Hicri
Name: Hicri <contact>
Classes: 8 packages by
Country: Turkey Turkey
Innovation award
Innovation award
Nominee: 1x


  Detailed description   Download Download .zip .tar.gz  
This package can access blockchain data points using CovalentHQ API.

It provides Laravel service classes that can access the CovalentHQ API to retrieve several types of information about the blockchain made available through the CovalentHQ platform.

Currently provides service classes that can:

- Access the balance, and historical changes and holders given blockchains

- Get information about NFT tokens

Details

slvler - covalenthq Service

Version Latest Unstable Version License

An api service for covalenthq.com

Installation

To install this package tou can use composer:

    composer require slvler/covalent

Usage

  • First, you should extract the config/covalent.php file to the config folder.
    php artisan vendor:publish --tag=covalenthq

  • API key to be obtained from covalenthq.com address should be declared.
    'covalent' => [
        'base_url' => 'https://api.covalenthq.com/',
        'api_key' => 'XXXXXXXXXXXXXXXXXXXXXXXX'
    ]

  • This is how you can connect to the covalenthq service.
    $covalenthq = new BaseApi();
    
  • Given chain_id and wallet address, return current token balances along with their spot prices. This endpoint supports a variety of token standards like ERC20, ERC721 and ERC1155.
    $covalenthq->getBalancesForAddress('1','demo.eth');
    
  • Given chain_id and wallet address , return wallet value for the last 30 days at 24 hour interval timestamps.
    $covalenthq->getHistoricalPortfolio('1','demo.eth');
    
  • Given chain_id, wallet address and contract-address , return all ERC20 token contract transfers along with their historical prices at the time of their transfer.
    $covalenthq->getERC20token('1','0x197e3eCCD00F07B18205753C638c3E59013A92bf','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48');
    
  • Given chain_id and wallet address, return a paginated list of token holders. If block-height is omitted, the latest block is used.
    $covalenthq->getTokenHolders('1','0x3883f5e181fccaf8410fa61e12b59bad963fb645');
    
  • Given chain_id and wallet address, return a paginated list of token holders and their current/historical balances, where the token balance of the token holder changes between starting-block and ending-block.
    $covalenthq->getChangesInToken('1','0x3883f5e181fccaf8410fa61e12b59bad963fb645','12500100','13210000');
    
  • Given chain_id and contract_address, return a list of all token IDs for the NFT contract on the blockchain.
    $covalenthq->getNFTTokenIDs('1','0xe4605d46fd0b3f8329d936a8b258d69276cba264');
    
  • Given chain_id,contract_address and token_id, return a list of transactions.
    $covalenthq->getNFTTransactions('1','0xe4605d46fd0b3f8329d936a8b258d69276cba264','123');
    
  • Given chain_id, contract_address and token_id, fetch and return the external metadata. Both ERC721 as well as ERC1155 standards are supported.
    $covalenthq->getNFTExternalMetadata('1','0xe4605d46fd0b3f8329d936a8b258d69276cba264','123');
    
  • Given chain_id and wallet address, return all transactions along with their decoded log events. This endpoint does a deep-crawl of the blockchain to retrieve all kinds of transactions that references the address including indexed topics within the event logs.
     $covalenthq->getTransactionsAddress('1','0xa79E63e78Eec28741e711f89A672A4C40876Ebf3');
    
  • Given chain_id and tx_hash, return the transaction data with their decoded event logs.
     $covalenthq->getTransaction('1','0xbda92389200cadac424d64202caeab70cd5e93756fe34c08578adeb310bba254');
    
  • Given chain_id and block_height, return a single block at block_height. If block_height is set to the value latest, return the latest block available.
    $covalenthq->getBlock('11297108109','latest');
    
  • Given chain_id, start_date and end_date, return all the block height(s) of a particular chain within a date range. If the end_date is set to latest, return every block height from the start_date to now.
    $covalenthq->getBlockHeights('1','2021-01-01','2021-01-03');
    
  • Given chain_id and contract address, return a paginated list of decoded log events emitted by a particular smart contract.
    $covalenthq->getContractAddress('1','0xc0da01a04c3f3e0be433606045bb7017a7323e38','12115107','12240004');
    
  • Given chain_id and topic hash(es), return a paginated list of decoded log events with one or more topic hashes separated by a comma.
    $covalenthq->getTopicHashes('1','0x804c9b842b2748a22bb64b345453a3de7ca54a6ca45ce00d415894979e22897a','12500000','12500100','0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9');
    
  • Returns a list of all chains.
    $covalenthq->getAllChains();
    
  • Returns a list of all chain statuses.
    $covalenthq->getallChainStatuses();
    

Credits

License

The MIT License (MIT). Please see License File for more information.


  Classes of Hicri  >  PHP CovalentHQ Service  >  Download Download .zip .tar.gz  >  Support forum Support forum  >  Blog Blog  >  RSS 1.0 feed RSS 2.0 feed Latest changes  
Name: PHP CovalentHQ Service
Base name: covalenthq-service
Description: Access blockchain data points using CovalentHQ API
Version: -
PHP version: 5
License: The PHP License
 
  Groups   Applications   Files Files  

  Groups  
Group folder image PHP 5 Classes using PHP 5 specific features View top rated classes
Group folder image Web services Web data clipping, SOAP or XML-RPC clients and servers View top rated classes
Group folder image Finances Money, exchanging, taxes and stocks View top rated classes


  Applications that use this package  
No pages of applications that use this class were specified.

Add link image If you know an application of this package, send a message to the author to add a link here.

  Files folder image Files  
File Role Description
Files folder imageconfig (1 file)
Files folder imagesrc (1 file, 3 directories)
Accessible without login Plain text file .styleci.yml Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE.md Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  config  
File Role Description
  Accessible without login Plain text file covalent.php Conf. Configuration script

  Files folder image Files  /  src  
File Role Description
Files folder imageException (2 files)
Files folder imageHttp (3 files)
Files folder imageServices (5 files)
  Plain text file CovalentServiceProvider.php Class Class source

  Files folder image Files  /  src  /  Exception  
File Role Description
  Plain text file ErrorException.php Class Class source
  Plain text file MissingArgumentException.php Class Class source

  Files folder image Files  /  src  /  Http  
File Role Description
  Plain text file Build.php Class Class source
  Plain text file BuildAdapter.php Class Class source
  Plain text file HttpResponse.php Class Class source

  Files folder image Files  /  src  /  Services  
File Role Description
  Plain text file Balance.php Class Class source
  Plain text file Base.php Class Class source
  Plain text file BaseApi.php Class Class source
  Plain text file NFT.php Class Class source
  Plain text file Transactions.php Class Class source

Download Download all files: covalenthq-service.tar.gz covalenthq-service.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.
  Files folder image Files  
File Role Description
Files folder imageconfig (1 file)
Files folder imagesrc (1 file, 3 directories)
Accessible without login Plain text file .styleci.yml Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE.md Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  config  
File Role Description
  Accessible without login Plain text file covalent.php Conf. Configuration script

  Files folder image Files  /  src  
File Role Description
Files folder imageException (2 files)
Files folder imageHttp (3 files)
Files folder imageServices (5 files)
  Plain text file CovalentServiceProvider.php Class Class source

  Files folder image Files  /  src  /  Exception  
File Role Description
  Plain text file ErrorException.php Class Class source
  Plain text file MissingArgumentException.php Class Class source

  Files folder image Files  /  src  /  Http  
File Role Description
  Plain text file Build.php Class Class source
  Plain text file BuildAdapter.php Class Class source
  Plain text file HttpResponse.php Class Class source

  Files folder image Files  /  src  /  Services  
File Role Description
  Plain text file Balance.php Class Class source
  Plain text file Base.php Class Class source
  Plain text file BaseApi.php Class Class source
  Plain text file NFT.php Class Class source
  Plain text file Transactions.php Class Class source

Download Download all files: covalenthq-service.tar.gz covalenthq-service.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.