Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 356 Bytes

USAGE.md

File metadata and controls

19 lines (14 loc) · 356 Bytes
import { Kx } from "kx";

const kx = new Kx({
    apiKeyAuth: "<YOUR_API_KEY_HERE>",
});

async function run() {
    const result = await kx.ai.insertRaw(new TextEncoder().encode("0x02eF1eFB84"));

    // Handle the result
    console.log(result);
}

run();