@basementdev/sdk
v1.0.9
Published
Basement SDK
Downloads
25
Readme
Basement SDK
The Basement SDK has sensible defaults and flexibility to allow you to get the data you want efficiently and effortlessly.
Installation
Basement SDK is available as an npm package
npm:
npm install @basementdev/sdk
yarn:
yarn add @basementdev/sdk
Getting Started with the Basement 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 },
});