mtcute/packages/mtproxy
2024-08-21 17:56:12 +00:00
..
fake-tls.ts chore: enabled isolatedDeclarations 2024-08-18 09:44:26 +03:00
index.ts chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
package.json v0.16.7 2024-08-21 17:56:12 +00:00
README.md docs: updated packages readmes 2023-11-01 14:05:45 +03:00
tsconfig.json chore: migrate to antfu eslint config (+ reformat) 2024-08-18 07:18:13 +03:00
typedoc.cjs chore: moved most configs to .config 2023-11-13 13:28:11 +03:00

@mtcute/mtproxy

📖 API Reference

MTProto proxy (MTProxy) transport for mtcute.

Supports all kinds of MTProto proxies, including obfuscated and fake TLS.

Usage

import { MtProxyTcpTransport } from '@mtcute/mtproxy'

const tg = new TelegramClient({
    // ...
    transport: () => new MtProxyTcpTransport({
        host: 'localhost',
        port: 443,
        secret: 'secret'
    })
})