export type TonResponse = {
    ok: boolean;
    result?: string;
    error?: string;
    code?: number;
};
