-
Web2 user information as a unique DID (Decentralized Identifier)
-
[ x ] More web2 social platforms, such as Twitter, WhatsApp, Facebook, and Discord
-
[ x ] Login with email
-
[ x ] Transfers between DIDs.
-
[ x ] MPC (Multi-Party Computation) functionality.
npm install --save @uxuy-js-sdkAdd declare module "uxuy-js-sdk" in the env.d.ts file.
/// <reference types="vite/client" />
declare interface Window {
}
declare module "uxuy-js-sdk";
import UXUYClient from "uxuy-js-sdk"
const token = await UXUYClient.register("ApiKey");
const instance = new UXUYClient();
const { profile, MPC, DID } = instance.init(UXUYToken.value);Get started
cd example/vue/
npm install --save
npm run dev