├── .gitignore ├── .yarn └── releases │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── client.ts ├── engines │ ├── engine.ts │ ├── roundRobin.ts │ └── single.ts ├── index.ts ├── liteClientProvider.ts ├── main.ts ├── parser │ └── parseShards.ts ├── schema.gen.ts ├── schema.tl ├── schema.ts ├── types.ts └── utils │ ├── arrays.ts │ ├── bigint.ts │ └── crc16.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/.yarn/releases/yarn-3.4.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/package.json -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/engines/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/engines/engine.ts -------------------------------------------------------------------------------- /src/engines/roundRobin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/engines/roundRobin.ts -------------------------------------------------------------------------------- /src/engines/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/engines/single.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/liteClientProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/liteClientProvider.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/parser/parseShards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/parser/parseShards.ts -------------------------------------------------------------------------------- /src/schema.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/schema.gen.ts -------------------------------------------------------------------------------- /src/schema.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/schema.tl -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/schema.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/utils/arrays.ts -------------------------------------------------------------------------------- /src/utils/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/utils/bigint.ts -------------------------------------------------------------------------------- /src/utils/crc16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/src/utils/crc16.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-core/ton-lite-client/HEAD/yarn.lock --------------------------------------------------------------------------------