├── .github └── workflows │ ├── main.yml │ ├── tonlib-linux.yml │ └── tonlib-macos.yml ├── .gitignore ├── LICENSE ├── README.md ├── client.go ├── client_test.go ├── cmd ├── tlgenerator │ ├── main.go │ ├── tlStructGenerator.go │ ├── tlparser.go │ └── utils.go └── tongo │ ├── createPrivateKey.go │ ├── deletePrivateKey.go │ ├── estimateFee.go │ ├── exportPrivateKey.go │ ├── main.go │ ├── rawAccountState.go │ ├── sendFile.go │ ├── sendGramm.go │ ├── sendMessage.go │ ├── transactions.go │ ├── walletAddress.go │ └── walletState.go ├── example ├── main.go └── send_gram.go ├── go.mod ├── go.sum ├── lib ├── darwin │ ├── lib.go │ ├── libtonlib.a │ ├── libtonlibjson.0.5.dylib │ ├── libtonlibjson.dylib │ ├── libtonlibjson_private.a │ └── libtonlibjson_static.a ├── lib.go ├── linux │ ├── lib.go │ ├── libtonlib.a │ ├── libtonlibjson.so │ ├── libtonlibjson.so.0.5 │ ├── libtonlibjson_private.a │ └── libtonlibjson_static.a ├── tonlib_client_json.h └── tonlibjson_export.h ├── methods.go ├── structs.go ├── testgiver-query.boc ├── tonlib.config.json.example ├── utils.go └── v2 ├── .gitignore ├── LICENSE ├── README.md ├── client.go ├── client_test.go ├── cmd ├── tlgenerator │ ├── main.go │ ├── tlStructGenerator.go │ ├── tlparser.go │ └── utils.go └── tongo │ ├── createPrivateKey.go │ ├── deletePrivateKey.go │ ├── estimateFee.go │ ├── exportPrivateKey.go │ ├── main.go │ ├── rawAccountState.go │ ├── runSmcMethod.go │ ├── sendFile.go │ ├── sendGramm.go │ ├── sendMessage.go │ ├── transactions.go │ ├── walletAddress.go │ └── walletState.go ├── example ├── main.go └── send_gram.go ├── go.mod ├── go.sum ├── lib ├── darwin │ ├── lib.go │ ├── libtonlib.a │ ├── libtonlibjson.0.5.dylib │ ├── libtonlibjson.dylib │ ├── libtonlibjson_private.a │ └── libtonlibjson_static.a ├── lib.go ├── linux │ ├── lib.go │ ├── libtonlib.a │ ├── libtonlibjson.so │ ├── libtonlibjson.so.0.5 │ ├── libtonlibjson_private.a │ └── libtonlibjson_static.a ├── test │ └── libtest.go ├── tonlib_client_json.h └── tonlibjson_export.h ├── methods.go ├── simple.go ├── structs.go ├── testgiver-query.boc ├── tonlib.config.json.example └── utils.go /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/tonlib-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/.github/workflows/tonlib-linux.yml -------------------------------------------------------------------------------- /.github/workflows/tonlib-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/.github/workflows/tonlib-macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/client_test.go -------------------------------------------------------------------------------- /cmd/tlgenerator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tlgenerator/main.go -------------------------------------------------------------------------------- /cmd/tlgenerator/tlStructGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tlgenerator/tlStructGenerator.go -------------------------------------------------------------------------------- /cmd/tlgenerator/tlparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tlgenerator/tlparser.go -------------------------------------------------------------------------------- /cmd/tlgenerator/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tlgenerator/utils.go -------------------------------------------------------------------------------- /cmd/tongo/createPrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/createPrivateKey.go -------------------------------------------------------------------------------- /cmd/tongo/deletePrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/deletePrivateKey.go -------------------------------------------------------------------------------- /cmd/tongo/estimateFee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/estimateFee.go -------------------------------------------------------------------------------- /cmd/tongo/exportPrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/exportPrivateKey.go -------------------------------------------------------------------------------- /cmd/tongo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/main.go -------------------------------------------------------------------------------- /cmd/tongo/rawAccountState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/rawAccountState.go -------------------------------------------------------------------------------- /cmd/tongo/sendFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/sendFile.go -------------------------------------------------------------------------------- /cmd/tongo/sendGramm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/sendGramm.go -------------------------------------------------------------------------------- /cmd/tongo/sendMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/sendMessage.go -------------------------------------------------------------------------------- /cmd/tongo/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/transactions.go -------------------------------------------------------------------------------- /cmd/tongo/walletAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/walletAddress.go -------------------------------------------------------------------------------- /cmd/tongo/walletState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/cmd/tongo/walletState.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/example/main.go -------------------------------------------------------------------------------- /example/send_gram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/example/send_gram.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/go.sum -------------------------------------------------------------------------------- /lib/darwin/lib.go: -------------------------------------------------------------------------------- 1 | package darwin 2 | -------------------------------------------------------------------------------- /lib/darwin/libtonlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/darwin/libtonlib.a -------------------------------------------------------------------------------- /lib/darwin/libtonlibjson.0.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/darwin/libtonlibjson.0.5.dylib -------------------------------------------------------------------------------- /lib/darwin/libtonlibjson.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/darwin/libtonlibjson.dylib -------------------------------------------------------------------------------- /lib/darwin/libtonlibjson_private.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/darwin/libtonlibjson_private.a -------------------------------------------------------------------------------- /lib/darwin/libtonlibjson_static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/darwin/libtonlibjson_static.a -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/lib.go -------------------------------------------------------------------------------- /lib/linux/lib.go: -------------------------------------------------------------------------------- 1 | package linux 2 | -------------------------------------------------------------------------------- /lib/linux/libtonlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/linux/libtonlib.a -------------------------------------------------------------------------------- /lib/linux/libtonlibjson.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/linux/libtonlibjson.so -------------------------------------------------------------------------------- /lib/linux/libtonlibjson.so.0.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/linux/libtonlibjson.so.0.5 -------------------------------------------------------------------------------- /lib/linux/libtonlibjson_private.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/linux/libtonlibjson_private.a -------------------------------------------------------------------------------- /lib/linux/libtonlibjson_static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/linux/libtonlibjson_static.a -------------------------------------------------------------------------------- /lib/tonlib_client_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/tonlib_client_json.h -------------------------------------------------------------------------------- /lib/tonlibjson_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/lib/tonlibjson_export.h -------------------------------------------------------------------------------- /methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/methods.go -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/structs.go -------------------------------------------------------------------------------- /testgiver-query.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/testgiver-query.boc -------------------------------------------------------------------------------- /tonlib.config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/tonlib.config.json.example -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/utils.go -------------------------------------------------------------------------------- /v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/.gitignore -------------------------------------------------------------------------------- /v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/LICENSE -------------------------------------------------------------------------------- /v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/README.md -------------------------------------------------------------------------------- /v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/client.go -------------------------------------------------------------------------------- /v2/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/client_test.go -------------------------------------------------------------------------------- /v2/cmd/tlgenerator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tlgenerator/main.go -------------------------------------------------------------------------------- /v2/cmd/tlgenerator/tlStructGenerator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tlgenerator/tlStructGenerator.go -------------------------------------------------------------------------------- /v2/cmd/tlgenerator/tlparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tlgenerator/tlparser.go -------------------------------------------------------------------------------- /v2/cmd/tlgenerator/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tlgenerator/utils.go -------------------------------------------------------------------------------- /v2/cmd/tongo/createPrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/createPrivateKey.go -------------------------------------------------------------------------------- /v2/cmd/tongo/deletePrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/deletePrivateKey.go -------------------------------------------------------------------------------- /v2/cmd/tongo/estimateFee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/estimateFee.go -------------------------------------------------------------------------------- /v2/cmd/tongo/exportPrivateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/exportPrivateKey.go -------------------------------------------------------------------------------- /v2/cmd/tongo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/main.go -------------------------------------------------------------------------------- /v2/cmd/tongo/rawAccountState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/rawAccountState.go -------------------------------------------------------------------------------- /v2/cmd/tongo/runSmcMethod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/runSmcMethod.go -------------------------------------------------------------------------------- /v2/cmd/tongo/sendFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/sendFile.go -------------------------------------------------------------------------------- /v2/cmd/tongo/sendGramm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/sendGramm.go -------------------------------------------------------------------------------- /v2/cmd/tongo/sendMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/sendMessage.go -------------------------------------------------------------------------------- /v2/cmd/tongo/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/transactions.go -------------------------------------------------------------------------------- /v2/cmd/tongo/walletAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/walletAddress.go -------------------------------------------------------------------------------- /v2/cmd/tongo/walletState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/cmd/tongo/walletState.go -------------------------------------------------------------------------------- /v2/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/example/main.go -------------------------------------------------------------------------------- /v2/example/send_gram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/example/send_gram.go -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/go.mod -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/go.sum -------------------------------------------------------------------------------- /v2/lib/darwin/lib.go: -------------------------------------------------------------------------------- 1 | package darwin 2 | -------------------------------------------------------------------------------- /v2/lib/darwin/libtonlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/darwin/libtonlib.a -------------------------------------------------------------------------------- /v2/lib/darwin/libtonlibjson.0.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/darwin/libtonlibjson.0.5.dylib -------------------------------------------------------------------------------- /v2/lib/darwin/libtonlibjson.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/darwin/libtonlibjson.dylib -------------------------------------------------------------------------------- /v2/lib/darwin/libtonlibjson_private.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/darwin/libtonlibjson_private.a -------------------------------------------------------------------------------- /v2/lib/darwin/libtonlibjson_static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/darwin/libtonlibjson_static.a -------------------------------------------------------------------------------- /v2/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/lib.go -------------------------------------------------------------------------------- /v2/lib/linux/lib.go: -------------------------------------------------------------------------------- 1 | package linux 2 | -------------------------------------------------------------------------------- /v2/lib/linux/libtonlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/linux/libtonlib.a -------------------------------------------------------------------------------- /v2/lib/linux/libtonlibjson.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/linux/libtonlibjson.so -------------------------------------------------------------------------------- /v2/lib/linux/libtonlibjson.so.0.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/linux/libtonlibjson.so.0.5 -------------------------------------------------------------------------------- /v2/lib/linux/libtonlibjson_private.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/linux/libtonlibjson_private.a -------------------------------------------------------------------------------- /v2/lib/linux/libtonlibjson_static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/linux/libtonlibjson_static.a -------------------------------------------------------------------------------- /v2/lib/test/libtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/test/libtest.go -------------------------------------------------------------------------------- /v2/lib/tonlib_client_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/tonlib_client_json.h -------------------------------------------------------------------------------- /v2/lib/tonlibjson_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/lib/tonlibjson_export.h -------------------------------------------------------------------------------- /v2/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/methods.go -------------------------------------------------------------------------------- /v2/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/simple.go -------------------------------------------------------------------------------- /v2/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/structs.go -------------------------------------------------------------------------------- /v2/testgiver-query.boc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/testgiver-query.boc -------------------------------------------------------------------------------- /v2/tonlib.config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/tonlib.config.json.example -------------------------------------------------------------------------------- /v2/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercuryoio/tonlib-go/HEAD/v2/utils.go --------------------------------------------------------------------------------