⏩
Quick Start
Getting started with Spindl is as simple as installing the JS SDK. You can browse more details and configuration in the JS SDK Documentation.
Spindl is in closed beta. To get access, please fill out our beta waitlist, and we'll get back to you soon.
Install SDK
npm install @spindl-xyz/attribution
Initialize SDK
import spindl from "@spindl-xyz/attribution";
spindl.configure({
API_KEY: "<your SDK API key here>",
});
spindl.enableAutoPageViews();
function onWalletConnect(address: string) {
spindl.attribute(address);
}
Last modified 12d ago