tesser-sdk
v1.0.0
Published
Tesser SDK for AO
Maintainers
Readme
tesser-sdk
Overview
A powerful JavaScript/TypeScript SDK for creating tokens, airdrops, vesting schedules, and curve steps, with support for both CommonJS (CJS), ES Modules (MJS), and TypeScript (TS).
Table of Contents
Installation
Install the SDK using npm or yarn:
npm install tesser-sdkyarn add tesser-sdkQuick Start
To use the SDK, create an instance of Tesser. By default, it uses Goldsky as the host for fetching data.
const { TesserSDK } = require("tesser-sdk"); // For CommonJS
// or
import { TesserSDK } from "tesser-sdk"; // For ES Modules/TypeScript
const tesser = new TesserSDK();The Tesser instance provides the following methods:
- createToken (Async Generator)
- createAirdrop (Async Generator)
- createVesting (Async Generator)
- createCurveSteps (Normal Function)
For detailed usage and examples, refer to the documentation.
Documentation
For full documentation, detailed API references, and advanced usage examples, visit the official Tesser SDK Documentation.
Contributing
Contributions to the Tesser SDK are welcome. Please refer to the project's GitHub repository to submit issues or pull requests.
License
The SDK is licensed under the ISC license, allowing for free and open usage in both personal and commercial projects.
This documentation provides a high-level overview and starting points for integrating the Tesser SDK into your projects. For more detailed information, refer to the official Tesser SDK Documentation.
