├── .gitignore ├── LICENSE ├── README.md ├── SUMMARY.md ├── developer-interface.md ├── developer-interface ├── account.md ├── tonlib_client.md └── tonlibclient.md ├── examples ├── generate_wallet.py ├── init.py ├── nft.py ├── raw.py ├── transactions.py └── wallet.py ├── infrastructure ├── tonlib.Dockerfile └── tonlib.patch ├── makefile ├── poetry.lock ├── pyproject.toml ├── synchronous.md ├── ton ├── __init__.py ├── account │ ├── __init__.py │ ├── ft_methods.py │ ├── nft_methods.py │ ├── smc_methods.py │ ├── state_methods.py │ └── wallet_methods.py ├── client │ ├── __init__.py │ ├── converter_methods.py │ ├── function_methods.py │ ├── tonlib_methods.py │ └── wallet_methods.py ├── distlib │ ├── darwin │ │ ├── libtonlibjson.arm64.dylib │ │ └── libtonlibjson.x86_64.dylib │ ├── freebsd │ │ └── libtonlibjson.amd64.so │ ├── linux │ │ ├── libtonlibjson.aarch64.so │ │ └── libtonlibjson.x86_64.so │ └── windows │ │ └── tonlibjson.amd64.dll ├── errors.py ├── sync.py ├── tl │ ├── __init__.py │ ├── base.py │ ├── functions │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── keys.py │ │ ├── queries.py │ │ ├── settings.py │ │ └── smc.py │ └── types │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── actions.py │ │ ├── keys.py │ │ ├── messages.py │ │ ├── smc.py │ │ ├── tvm.py │ │ └── wallets.py ├── tonlibjson.py └── utils │ ├── __init__.py │ ├── cell.py │ ├── common.py │ └── wallet.py └── troubleshooting.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /developer-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/developer-interface.md -------------------------------------------------------------------------------- /developer-interface/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/developer-interface/account.md -------------------------------------------------------------------------------- /developer-interface/tonlib_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/developer-interface/tonlib_client.md -------------------------------------------------------------------------------- /developer-interface/tonlibclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/developer-interface/tonlibclient.md -------------------------------------------------------------------------------- /examples/generate_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/generate_wallet.py -------------------------------------------------------------------------------- /examples/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/init.py -------------------------------------------------------------------------------- /examples/nft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/nft.py -------------------------------------------------------------------------------- /examples/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/raw.py -------------------------------------------------------------------------------- /examples/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/transactions.py -------------------------------------------------------------------------------- /examples/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/examples/wallet.py -------------------------------------------------------------------------------- /infrastructure/tonlib.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/infrastructure/tonlib.Dockerfile -------------------------------------------------------------------------------- /infrastructure/tonlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/infrastructure/tonlib.patch -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/makefile -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/pyproject.toml -------------------------------------------------------------------------------- /synchronous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/synchronous.md -------------------------------------------------------------------------------- /ton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/__init__.py -------------------------------------------------------------------------------- /ton/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/__init__.py -------------------------------------------------------------------------------- /ton/account/ft_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/ft_methods.py -------------------------------------------------------------------------------- /ton/account/nft_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/nft_methods.py -------------------------------------------------------------------------------- /ton/account/smc_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/smc_methods.py -------------------------------------------------------------------------------- /ton/account/state_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/state_methods.py -------------------------------------------------------------------------------- /ton/account/wallet_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/account/wallet_methods.py -------------------------------------------------------------------------------- /ton/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/client/__init__.py -------------------------------------------------------------------------------- /ton/client/converter_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/client/converter_methods.py -------------------------------------------------------------------------------- /ton/client/function_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/client/function_methods.py -------------------------------------------------------------------------------- /ton/client/tonlib_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/client/tonlib_methods.py -------------------------------------------------------------------------------- /ton/client/wallet_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/client/wallet_methods.py -------------------------------------------------------------------------------- /ton/distlib/darwin/libtonlibjson.arm64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/darwin/libtonlibjson.arm64.dylib -------------------------------------------------------------------------------- /ton/distlib/darwin/libtonlibjson.x86_64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/darwin/libtonlibjson.x86_64.dylib -------------------------------------------------------------------------------- /ton/distlib/freebsd/libtonlibjson.amd64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/freebsd/libtonlibjson.amd64.so -------------------------------------------------------------------------------- /ton/distlib/linux/libtonlibjson.aarch64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/linux/libtonlibjson.aarch64.so -------------------------------------------------------------------------------- /ton/distlib/linux/libtonlibjson.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/linux/libtonlibjson.x86_64.so -------------------------------------------------------------------------------- /ton/distlib/windows/tonlibjson.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/distlib/windows/tonlibjson.amd64.dll -------------------------------------------------------------------------------- /ton/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/errors.py -------------------------------------------------------------------------------- /ton/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/sync.py -------------------------------------------------------------------------------- /ton/tl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ton/tl/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/base.py -------------------------------------------------------------------------------- /ton/tl/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/__init__.py -------------------------------------------------------------------------------- /ton/tl/functions/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/accounts.py -------------------------------------------------------------------------------- /ton/tl/functions/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/keys.py -------------------------------------------------------------------------------- /ton/tl/functions/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/queries.py -------------------------------------------------------------------------------- /ton/tl/functions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/settings.py -------------------------------------------------------------------------------- /ton/tl/functions/smc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/functions/smc.py -------------------------------------------------------------------------------- /ton/tl/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/__init__.py -------------------------------------------------------------------------------- /ton/tl/types/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/accounts.py -------------------------------------------------------------------------------- /ton/tl/types/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/actions.py -------------------------------------------------------------------------------- /ton/tl/types/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/keys.py -------------------------------------------------------------------------------- /ton/tl/types/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/messages.py -------------------------------------------------------------------------------- /ton/tl/types/smc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/smc.py -------------------------------------------------------------------------------- /ton/tl/types/tvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/tvm.py -------------------------------------------------------------------------------- /ton/tl/types/wallets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tl/types/wallets.py -------------------------------------------------------------------------------- /ton/tonlibjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/tonlibjson.py -------------------------------------------------------------------------------- /ton/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/utils/__init__.py -------------------------------------------------------------------------------- /ton/utils/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/utils/cell.py -------------------------------------------------------------------------------- /ton/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/utils/common.py -------------------------------------------------------------------------------- /ton/utils/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/ton/utils/wallet.py -------------------------------------------------------------------------------- /troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psylopunk/pytonlib/HEAD/troubleshooting.md --------------------------------------------------------------------------------