tongo icon indicating copy to clipboard operation
tongo copied to clipboard

Go primitives to work with TON

Results 37 tongo issues
Sort by recently updated
recently updated
newest added

In the Go 1.21 standard library, a new function has been introduced that enhances code conciseness and readability. It can be find [here](https://pkg.go.dev/[email protected]#Equal).

Since we have already checked err before and returned when err != nil, err must be nil here. Return nil directly to make the code clearer. Keep consistent with https://github.com/tonkeeper/tongo/blob/master/boc/cell.go#L132

Hi, When I publish transactions to the chain, I calculate the message hash, and use it later to track the transaction. Unfortunately, since yesterday, I have experienced multiple occurrences where...

``` networks := map[string]*liteapi.Client{} var err error networks["-239"], err = liteapi.NewClientWithDefaultMainnet() if err != nil { t.logger.Errorf("Error creating TON mainnet client: %v", err) } ````` the error response "Error creating...

- Add `get proxy` method for `whales_nominator` contract - Add test

> Ton.Fun is a software interface to a public blockchain protocol, enabling easy creation, collection, and trading of memes or vanity coins (tokens) in a peer-to-peer (P2P) manner. [(source)](https://tonfun.gitbook.io/docs) Recently...