Skip to content

Commit 4b3fa76

Browse files
authored
Update README.md
1 parent 3b936db commit 4b3fa76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,24 @@ If you love this library and want to support its development you can donate any
2121
### How to use
2222
- [Connection](#Connection)
2323
- [Wallet](#Wallet)
24+
- [Example](https://github.com/xssnick/tonutils-go/blob/master/example/wallet/main.go)
2425
- [Create](#Wallet)
2526
- [Transfer](#Wallet)
2627
- [Balance](#Wallet)
2728
- [Transfer to many](https://github.com/xssnick/tonutils-go/blob/master/example/highload-wallet/main.go)
2829
- [Send message to contract](https://github.com/xssnick/tonutils-go/blob/master/example/send-to-contract/main.go)
30+
- [Build transaction and send from other place](https://github.com/xssnick/tonutils-go/blob/master/example/wallet-cold-alike/main.go#L61)
2931
- [Accounts](#Account-info-and-transactions)
3032
- [List transactions](#Account-info-and-transactions)
3133
- [Get balance](https://github.com/xssnick/tonutils-go/blob/master/example/account-state/main.go)
34+
- [Subscribe on transactions](https://github.com/xssnick/tonutils-go/blob/master/example/accept-payments/main.go)
3235
- [NFT](#NFT)
3336
- [Details](#NFT)
3437
- [Mint](https://github.com/xssnick/tonutils-go/blob/master/example/nft-mint/main.go#L42)
3538
- [Transfer](https://github.com/xssnick/tonutils-go/blob/master/ton/nft/integration_test.go#L89)
3639
- [Jettons](#Jettons)
3740
- [Details](#Jettons)
38-
- [Transfer](https://github.com/xssnick/tonutils-go/blob/master/example/jettons/main.go#L56)
41+
- [Transfer](https://github.com/xssnick/tonutils-go/blob/master/example/jetton-transfer/main.go)
3942
- [DNS](#DNS)
4043
- [Resolve](#DNS)
4144
- [Get records](#Records)
@@ -80,6 +83,7 @@ if err != nil {
8083
panic(err)
8184
}
8285
api := ton.NewAPIClient(client)
86+
api = api.WithRetry() // if you want automatic retries with failover to another node
8387
```
8488

8589
Since `client` implements connection pool, it can be the chance that some block is not yet applied on one of the nodes, so it can lead to errors.

0 commit comments

Comments
 (0)