Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@quicknode/sdk
Advanced tools
![npm](https://img.shields.io/npm/dm/@quicknode/sdk) ![npm](https://img.shields.io/npm/v/@quicknode/sdk?color=g) ![Maintenance](https://img.shields.io/maintenance/yes/2022?color=g) ![NPM](https://img.shields.io/npm/l/@quicknode/sdk?color=g) ![GitHub issue
Currently has support for getting started with Icy Tools GraphQL API in a blink!
import { QuickNodeSDK } from '@quicknode/sdk';
const client = new QuickNodeSDK();
client.nft
.getNFTsByWalletENS({
ensName: 'vitalik.eth',
first: 5,
})
.then((response) => console.log(response));
Full example implementation here.
:warning: This client (and the underlying API) can be used without an icyApiKey, but its usage will be heavily rate limited, intended for trial and development purposes only.
import { QuickNodeSDK } from '@quicknode/sdk';
const client = new QuickNodeSDK({
icyApiKey: 'my-api-key', // which is obtained by signing up on https://developers.icy.tools/
});
Property | Values | Example |
---|---|---|
icyApiKey | string | 1c1t00ls-4p10-k3y0-lu21-43405e3310 |
Argument | Values | Optional | Example |
---|---|---|---|
ensName | string | ❌ | vitalik.eth |
first | number | ✅ | 10 |
after | string | ✅ | YXJyYXljb25uZWN0aW9uOjUwNQ== |
import { QuickNodeSDK } from '@quicknode/sdk';
const client = new QuickNodeSDK();
client.nft
.getNFTsByWalletENS({
ensName: 'vitalik.eth',
first: 5,
after: 'YXJyYXljb25uZWN0aW9uOjUwNQ==',
})
.then((response) => console.log(response));
Argument | Values | Optional | Example |
---|---|---|---|
address | string | ❌ | 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 |
first | number | ✅ | 10 |
after | string | ✅ | YXJyYXljb25uZWN0aW9uOjUwNQ== |
import { QuickNodeSDK } from '@quicknode/sdk';
const client = new QuickNodeSDK();
client.nft
.getNFTsByWalletAddress({
address: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045',
first: 5,
after: 'YXJyYXljb25uZWN0aW9uOjUwNQ==',
})
.then((response) => console.log(response));
Run nx build libs-api-sdk
to build the library.
Run nx test libs-api-sdk
to execute the unit tests via Jest.
Run nx lint libs-api-sdk
to execute the lint via ESLint.
FAQs
A SDK from [QuickNode](https://www.quicknode.com/) making it easy for developers to interact with QuickNode's services.
The npm package @quicknode/sdk receives a total of 648 weekly downloads. As such, @quicknode/sdk popularity was classified as not popular.
We found that @quicknode/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 27 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.