import { searchClient } from "@rss3/js-sdk";
const searchResults = await searchClient().activities({
keyword: "Ethereum",
limit: 10,
});
RSS3 unlocks a new level of Open Web data interpretation. With just one query - a dApp or user can access a complete panorama of activities — both on-chain transactions and off-chain interactions, whether on trading, NFTs, grant donations, DAO governance, in-game interactions, social activities, or any other on-chain transaction.
import { dataClient } from "@rss3/js-sdk";
const nftCollections = await dataClient().activities(
"vitalik.eth", // use .eth, .arb, .avax, .bnb, .lens, and many Web3 domains ...
{
tag: ["collectible"],
limit: 10,
direction: "out",
},
);