The Basement SDK has sensible defaults and flexibility to allow you to get the data you want efficiently and effortlessly.
Basement SDK is available as an npm package
npm:
npm install @basementdev/sdk
yarn:
yarn add @basementdev/sdk
Here's an example of a basic query using the SDK:
import { BasementSDK } from "@basementdev/sdk";
const sdk = new BasementSDK();
const data = await sdk.address({
address: "vitalik.eth",
include: { profile: true, tokens: true },
});