TIPTIP

Quickstart

Install the SDK and resolve your first tag.

Install the SDK:

npm i @tagwise/tip-sdk

Create a client and resolve a tag. No configuration is required: the client defaults to the public TIP API.

import { TipClient } from "@tagwise/tip-sdk";

const client = new TipClient();
const identity = await client.resolve("daniel");

console.log(identity.wallet);

resolve() returns the wallet address, display name, and payment link for @daniel. See Concepts for what is happening underneath, or Guides for registering a tag and editing a profile.