Helius SDK is the most complete & powerful SDK for building on Solana. Learn more about how Helius gives you superpowers, here.
The functionality provided in this SDK nicely wraps and enhances the core Helius REST APIs, which can be found in our API docs.
npm install helius-sdk
After installing, you can simply import the SDK:
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>"); // input your api key generated from dev.helius.xyz here
IMPORTANT: You must generate an API key at dev.helius.xyz and replace "<your-api-key-here>" above with it. This will take no longer than 10 seconds as we auto-generate a key for you upon connecting your wallet.
Our SDK is designed to give you a seamless experience when building on Solana. We've separated the core functionality into various segments.
Helius webhooks are the perfect way of building event driven systems on Solana.
Simply select the transaction type(s) to detect, the accounts to watch, and the webhook handler.
We've parsed over 100 transaction types (including NFT Sales, NFT Listings, and more) from over 50 different sources so you can get building ASAP.
If you don't want Helius' unique abstractions and would rather work with Solana's native data types, set
webhookType
to "raw".
For a quick demo video, please see the Webhook docs.
Note: You can use enum
WebhookType
to specify between raw, discord, or enhanced webhooks! The default type is "enhanced".
import {
// enums
Address,
TransactionType,
// lib
Helius,
} from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.createWebhook({
accountAddresses: [Address.MAGIC_EDEN_V2],
transactionTypes: [TransactionType.NFT_LISTING],
webhookURL: "my-webhook-handler.com/handle",
});
If you'd like to work with the native Solana transaction format instead of Helius' abstraction, use the "raw" type instead (this will also have lower latency). Note we also add an auth-header for security purposes.
import {
// enums
TransactionType,
WebhookType,
Address,
Helius
} from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.createWebhook({
accountAddresses: [Address.MAGIC_EDEN_V2],
authHeader: "some auth header",
webhookURL: "my-webhook-handler.com/handle",
webhookType: WebhookType.RAW,
transactionTypes: [TransactionType.ANY],
});
For Discord webhooks, simply use enum WebhookType.DISCORD
.
You can also edit your webhooks. A common use case is dynamically adding/removing accounts to watch in a webhook:
import { Helius, Address } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.editWebhook(
"your-webhook-id-here",
{ accountAddresses: [Address.SQUADS] } // This will ONLY update accountAddresses, not the other fields on the webhook object
);
Very important: The
editWebhook
method will completely overwrite the existing values for the field(s) that you inputted. Make sure to fetch the existing webhook and merge the values to avoid this.
For convenience, we've added a method to let you simply append new addresses to an existing webhook:
import { Helius, Address } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.appendAddressesToWebhook("your-webhook-id-here", [
Address.SQUADS,
Address.JUPITER_V3,
]);
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.getAllWebhooks();
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.getWebhookByID("<webhook-id-here>");
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.deleteWebhook("<webhook-id-here>"); // returns a boolean
import {
// collections dict
Collections,
Helius,
} from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
helius.createCollectionWebhook({
collectionQuery: Collections.ABC,
transactionTypes: [Types.TransactionType.ANY],
webhookType: Types.WebhookType.DISCORD,
webhookURL: "https://discord.com/api/webhooks/your-discord-token-here",
});
Note that the Collections.ABC enum references the collection query for this collection. It is just a convenience enum so that developers don't have to figure out whether to use firstVerifiedCreator or the Metaplex Certified Collection address (see more about this here). If you already know it for your collection, please make a PR :)
Read more about the DAS API from our docs, here.
Get an asset by its ID.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAsset({
id: "FNt6A9Mfnqbwc1tY7uwAguKQ1JcpBrxmhczDgbdJy5AC",
})
console.log(response);
}
run();
Get a list of transaction signatures related to a compressed asset.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getSignaturesForAsset({
id: "Bu1DEKeawy7txbnCEJE4BU3BKLXaNAKCYcHR4XhndGss",
page: 1,
})
console.log(response.items);
}
run();
Search for assets by a variety of parameters. Very useful for token-gating!
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.searchAssets({
ownerAddress: "2k5AXX4guW9XwRQ1AKCpAuUqgWDpQpwFfpVFh3hnm2Ha",
compressed: true,
page: 1,
});
console.log(response.items)
}
run();
Get a merkle proof for a compressed asset by its ID.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAssetProof({
id: "Bu1DEKeawy7txbnCEJE4BU3BKLXaNAKCYcHR4XhndGss",
})
console.log(response);
}
run();
Get a list of assets owned by an address. This is the fastest way to get all the NFTs owned by a wallet on Solana.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAssetsByOwner({
ownerAddress: "86xCnPeV69n6t3DnyGvkKobf9FdN2H9oiVDdaMpo2MMY",
page: 1,
})
console.log(response.items);
}
run();
Get a list of assets by a group key and value. This endpoint is very useful for getting the mintlist for NFT Collections.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAssetsByGroup({
groupKey: "collection",
groupValue: "J1S9H3QjnRtBbbuD4HjPV6RpRhwuk4zKbxsnCHuTgh9w",
page: 1,
})
console.log(response.items);
}
run();
Get a list of assets created by an address.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAssetsByCreator({
creatorAddress: "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3",
onlyVerified: true,
page: 1,
})
console.log(response.items);
}
run();
Get a list of assets with a specific authority.
import { Helius } from 'helius-sdk';
async function run() {
const helius = new Helius("HELIUS_API_KEY");
const response = await helius.rpc.getAssetsByAuthority({
authorityAddress: "2RtGg6fsFiiF1EQzHqbd66AhW7R5bWeQGpTbv2UMkCdW",
page: 1,
})
console.log(response.items);
}
run();
To read more about the most powerful NFT API on Solana, see our docs.
To get all the tokens for an NFT collection:
import {
Helius
Collections,
} from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
const mints = helius.getMintlist({
query: Collections.ABC,
});
We provide a variety of helper methods to help make Solana RPCs easier to work with.
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
const tps = await helius.rpc.getCurrentTPS();
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
const response = await helius.rpc.airdrop(new PublicKey("<wallet address>"), 1000000000); // 1 sol
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
const response = await helius.rpc.getStakeAccounts("<wallet address>");
import { Helius } from "helius-sdk";
const helius = new Helius("<your-api-key-here>");
const response = await helius.rpc.getTokenHolders("<token mint address>");