Kit
HOT Connector + Omni assets = Wibe3 (very simple tool even for vibe coders)
Install / Use
/learn @hot-dao/KitREADME
HOT Kit
Documentation: https://hot-labs.gitbook.io/hot-protocol/hot-kit
yarn add @hot-labs/kit react react-dom
Multi-chain connector for NEAR Intents support. Implements NEAR Intents support for the following networks:
- NEAR
- EVM
- Solana
- TON
- Stellar
- Cosmos
Also supported: Passkey accounts and Google Auth via HOT MPC Network
Installation: Setup Vite Node polyfills and React plugins
kit require you to install node polyfills and react to work, for vite you need to complete the following extra steps:
npm install vite-plugin-node-polyfills @vitejs/plugin-react
Then in your vite.config.ts add this plugins:
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { nodePolyfills } from "vite-plugin-node-polyfills";
export default defineConfig({
plugins: [nodePolyfills(), react()],
});
Getting started
import { HotKit } from "@hot-labs/kit";
import { defaultConnectors } from "@hot-labs/kit/defaults";
const kit = new HotKit({
connectors: defaultConnectors,
apiKey: "Get on https://pay.hot-labs.org/admin/api-keys for free",
// optional get on https://dashboard.reown.com
walletConnect: {
projectId: "1292473190ce7eb75c9de67e15aaad99",
metadata: {
name: "Example App",
description: "Example App",
url: window.location.origin,
icons: ["/favicon.ico"],
},
},
});
kit.onConnect(({ wallet }) => {});
kit.onDisconnect(({ wallet }) => {});
Server side usage
On Node.js you should use @hot-labs/kit/core library to exclude UI functional from hot-kit
import { Intents, OmniToken } from "@hot-labs/kit/core";
import { NearWallet } from "@hot-labs/kit/near";
const wallet = await NearWallet.fromPrivateKey(Buffer.from(PRIVATE_KEY), SIGNER_ID);
await Intents.builder(wallet) //
.give(OmniToken.USDT, 1)
.take(OmniToken.USDC, 1)
.execute(); // or sign or simulate
Related Skills
node-connect
353.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
111.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
353.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
353.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
