tact-lang / ton-abi

@ton/abi library

Repository from Github https://github.comtact-lang/ton-abiRepository from Github https://github.comtact-lang/ton-abi

TON ABI Parser

Small package for runtime parsing of messages given ABI and message data.

Getting started

Add it to your project:

yarn add ton-abi

Register types and parse message:

import { TypeRegistry } from 'ton-abi';

const registry = new TypeRegistry();
registry.register(....); // Put ABI type here

const message = registry.parse(...); // Put message data here

License

MIT

About

@ton/abi library

License:MIT License


Languages

Language:TypeScript 98.9%Language:JavaScript 1.1%