
Product
Go Support Is Now Generally Available
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.
@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
We found that @covalenthq/client-viem-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.
Security News
vlt adds real-time security selectors powered by Socket, enabling developers to query and analyze package risks directly in their dependency graph.
Security News
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.