Small package for runtime parsing of messages given ABI and message data.
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
MIT