
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@covalenthq/client-viem-sdk
Advanced tools
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.
The Covalent SDK provides comprehensive support for all Class A, Class B, and Pricing endpoints that are grouped under the following Service namespaces:
SecurityService
: Access to the token approvals endpointsBalanceService
: Access to the balances endpointsBaseService
: Access to the address activity, log events, chain status, and block retrieval endpointsNftService
: Access to the NFT endpointsPricingService
: Access to the historical token prices endpointTransactionService
: Access to the transactions endpointsXykService
: Access to the XY=K suite of endpointsThe 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.
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.
// 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
Unknown package
The npm package @covalenthq/client-viem-sdk receives a total of 0 weekly downloads. As such, @covalenthq/client-viem-sdk popularity was classified as not popular.
We found that @covalenthq/client-viem-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.