Open enty8080 opened 1 year ago
you can work in testnet with this library, specifying testnet config url. but also you have to compile tonlibjson binaries and specify the path to them (btw instead of compiling binaries by yourself you can just download them from toncenter/pytonlib) code for example:
client = TonlibClient(config='https://ton.org/testnet-global.config.json')
client.enable_unaudited_binaries()
await client.init_tonlib(cdll_path='libtonlibjson.x86_64.dylib')
Hello, @psylopunk
First of all, thats a great library.
The only thing that I want to know is how can I test your library to work with my project? In Bitcoin, there is a testnet which is intentended in providing testing platform. I mean, anyways, every project connected with money and exchange should be tested properly, isn't that right?
Waiting for your reply.