npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cuonghx.ngen/cat-battle-ton-sdk

v1.1.6

Published

## Features

Downloads

1,080

Readme

Cat Battle Ton SDK

Features

  • Support connect your app to TON wallets via TonConnectUI
  • Send transaction with comment via plain-text
    • Support convert plain-text to BoC

Technique

  • @tonconnect/ui: TonConnect UI is a UI kit for TonConnect SDK. Use it to connect your app to TON wallets via TonConnect protocol.
  • tonweb: Utils library for working TON, especially TON BoC

Getting Started

Install with CDN

  • Add the script to your HTML file:
<script src="https://unpkg.com/cat-battle-ton-sdk@latest"></script>
  • ℹ️ If you don't want auto-update the library, pass concrete version instead of latest, e.g.
<script src="https://unpkg.com/[email protected]"></script>
  • Add load-sdk.js scripts
<script src="./load-sdk.js"></script>
  • Prepare load-sdk.js file
const plugin = new UnityTonPlugin.default({
  manifestUrl: "https://<YOUR_APP_URL>/tonconnect-manifest.json",
});

Install with npm

npm i cat-battle-ton-sdk

Usage

  • Using with Unity throw jslib plugin
mergeInto(LibraryManager.library, {
  Connect: function () {
    plugin.connect();
  },
  Disconnect: function () {
    plugin.disconnect();
  },
  IsConnected: function () {
    return plugin.isConnected();
  },
  GetAccount: function () {
    var returnStr = plugin.getAccount();
    var bufferSize = lengthBytesUTF8(returnStr) + 1;
    var buffer = _malloc(bufferSize);
    stringToUTF8(returnStr, buffer, bufferSize);
    return buffer;
  },
  SendTon: async function (args) {
    var returnStr = await plugin.sendTon(UTF8ToString(args));
    var bufferSize = lengthBytesUTF8(returnStr) + 1;
    var buffer = _malloc(bufferSize);
    stringToUTF8(returnStr, buffer, bufferSize);
    return buffer;
  },
});

| Function | Description | | -------------------- | ------------------------------------------------ | | plugin.connect() | Connect your app to TON wallets via TonConnectUI | | plugin.disconnect() | Disconnect your app from TON wallets | | plugin.isConnected() | Return connected status | | plugin.getAccount() | Return account connected address | | plugin.sendTon() | Send transaction with comment via plaint-text | | plugin.getBalance() | Get balance of connected address |

Examples

  • GetAccount
plugin.getAccount();
{
  account: "UQAbB+ykyJKBtL17EUxDOyL2H55aakn05uDVW06aH0wJNLJB"; // friendly-address
  chain: "TESTNET"; // testnet or mainnet
}
  • GetBalance
plugin.getBalance(); // TON
  • SendTon
plugin.sendTon(
  JSON.stringify({
    validUntil: Math.floor(Date.now() / 1000) + 60,
    address: "UQDv9l280Mdnlq9GFOsM-boZ6Kc2af8imSsblRSW0vBvV8io",
    amount: "20000000", // nanoton
    comment: "test test test test test", // send with comment via plain-text
  })
);

Authors and acknowledgment

Cat Battle Team

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project status

We are still developing this project following the roadmap in here: https://catb.io/