Skip to content

Commit

Permalink
[v1.36.1-rc] Add support for SDK 1.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
risentveber committed Jul 23, 2022
1 parent 9dca9d4 commit a9855b2
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TON SDK client Golang

[![EVER-SDK](https://img.shields.io/badge/EVER_SDK-1.35.1-green.svg)](https://github.com/tonlabs/EVER-SDK/tree/1.35.1)
[![EVER-SDK](https://img.shields.io/badge/EVER_SDK-1.36.1-green.svg)](https://github.com/tonlabs/EVER-SDK/tree/1.36.1)
[![TON local-node docker image](https://img.shields.io/badge/TON_local_node-0.32.0-green.svg)](https://hub.docker.com/layers/local-node/tonlabs/local-node/0.32.0/images/sha256-cdd54376eac60ef8d9e43fcaea7e6b9152b62920310a92b3fdac3066efd8c24e)
[![Chat Telegram](https://img.shields.io/badge/chat-Telegram-9cf.svg)](https://t.me/RADIANCE_EVER_SDK)
[![Documentation](https://godoc.org/github.com/radianceteam/everscale-client-go/client?status.svg)](https://godoc.org/github.com/radianceteam/everscale-client-go/client)
Expand Down
11 changes: 10 additions & 1 deletion api-spec.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.35.0",
"version": "1.36.0",
"modules": [
{
"name": "client",
Expand Down Expand Up @@ -6118,6 +6118,15 @@
},
"summary": "Processing try index.",
"description": "Used in message processing with retries.\n\nEncoder uses the provided try index to calculate message\nexpiration time.\n\nExpiration timeouts will grow with every retry.\n\nDefault value is 0."
},
{
"name": "address",
"type": "Optional",
"optional_inner": {
"type": "String"
},
"summary": "Destination address of the message",
"description": "Since ABI version 2.3 destination address of external inbound message is used in message\nbody signature calculation. Should be provided when signed external inbound message body is\ncreated. Otherwise can be omitted."
}
],
"summary": null,
Expand Down
7 changes: 6 additions & 1 deletion client/mod_abi.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod abi
//
Expand Down Expand Up @@ -467,6 +467,11 @@ type ParamsOfEncodeMessageBody struct {
//
// Default value is 0.
ProcessingTryIndex null.Uint8 `json:"processing_try_index"` // optional
// Destination address of the message.
// Since ABI version 2.3 destination address of external inbound message is used in message
// body signature calculation. Should be provided when signed external inbound message body is
// created. Otherwise can be omitted.
Address null.String `json:"address"` // optional
}

type ResultOfEncodeMessageBody struct {
Expand Down
2 changes: 1 addition & 1 deletion client/mod_boc.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod boc
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_client.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod client
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_crypto.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod crypto
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_debot.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod debot
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_net.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod net
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_processing.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod processing
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_proofs.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod proofs
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_tvm.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod tvm
//
Expand Down
2 changes: 1 addition & 1 deletion client/mod_utils.gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package client

// DON'T EDIT THIS FILE! It is generated via 'task generate' at 09 Jul 22 15:07 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 23 Jul 22 13:52 UTC
//
// Mod utils
//
Expand Down

0 comments on commit a9855b2

Please sign in to comment.