Socket
Socket
Sign inDemoInstall

@covalenthq/client-viem-sdk

Package Overview
Dependencies
93
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @covalenthq/client-viem-sdk


Version published
Weekly downloads
15
increased by50%
Maintainers
5
Install size
5.70 MB
Created
Weekly downloads
 

Readme

Source

NPM npm downloads

Covalent's Viem Compatible SDK

Node Version

The Covalent Viem SDK, developed in TypeScript, leverages the viem framework to offer a seamless integration path with the Covalent Unified API, facilitating efficient access to blockchain data. Designed to support a broad array of blockchain networks, including both Mainnets and Testnets, this SDK ensures comprehensive coverage and utility for developers working across the supported chains, making it an essential tool for blockchain application development.

Features

The Covalent SDK provides comprehensive support for all Class A, Class B, and Pricing endpoints that are grouped under the following Service namespaces:

The SDK internally utilizes the Covalent TypeScript SDK, offering a robust foundation for interacting with blockchain data. For detailed insights into the SDK's comprehensive capabilities and the extensive range of functionalities it provides, we highly recommend consulting the README documentation. This will equip you with a thorough understanding of the various features and the potential applications of the SDK in your projects.

Installation

npm install viem @covalenthq/client-viem-sdk

or

yarn add viem @covalenthq/client-viem-sdk

Getting an API Key

To get your own Covalent API key, sign up here and create your key from the API Keys tab.

Example

// Import the required modules.
import { publicActionCovalent } from "@covalenthq/client-viem-sdk"
import { mainnet } from "viem/chains"
import { http, createClient } from "viem"

// Create the required clients.
const client = createClient({
    chain: mainnet,
    transport: http("RPC_URL")  // use your RPC provider or bundler
}).extend(publicActionCovalent("YOUR_API_KEY"));

// Returns token balances for a specific wallet address
const tokenBalances = await client.BalanceService.getTokenBalancesForWalletAddress("eth-mainnet", "demo.eth");
console.log(tokenBalances.data)

FAQs

Last updated on 18 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc