Skip to content

Commit

Permalink
[v1.38.0-rc] Add support for SDK 1.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
risentveber committed Oct 17, 2022
1 parent 6db8cbf commit f5b2419
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 24 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.37.2-green.svg)](https://github.com/tonlabs/EVER-SDK/tree/1.37.2)
[![EVER-SDK](https://img.shields.io/badge/EVER_SDK-1.38.0-green.svg)](https://github.com/tonlabs/EVER-SDK/tree/1.38.0)
[![TON local-node docker image](https://img.shields.io/badge/TON_local_node-0.33.0-green.svg)](https://hub.docker.com/layers/local-node/tonlabs/local-node/0.33.0/images/sha256-40a544432089f2d730f3dd0542fcb59bef6c5192b5d374fdae3a7ea6417070c4)
[![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
19 changes: 13 additions & 6 deletions api-spec.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.37.2",
"version": "1.38.0",
"modules": [
{
"name": "client",
Expand Down Expand Up @@ -365,7 +365,7 @@
"optional_inner": {
"type": "String"
},
"summary": "**This field is deprecated, but left for backward-compatibility.** DApp Server public address.",
"summary": "**This field is deprecated, but left for backward-compatibility.** Evernode endpoint.",
"description": null
},
{
Expand All @@ -377,8 +377,8 @@
"type": "String"
}
},
"summary": "List of DApp Server addresses.",
"description": "Any correct URL format can be specified, including IP addresses. This parameter is prevailing over `server_address`.\nCheck the full list of [supported network endpoints](../ton-os-api/networks.md)."
"summary": "List of Evernode endpoints.",
"description": "Any correct URL format can be specified, including IP addresses. This parameter is prevailing over `server_address`.\nCheck the full list of [supported network endpoints](https://docs.everos.dev/ever-sdk/reference/ever-os-api/networks)."
},
{
"name": "network_retries_count",
Expand Down Expand Up @@ -539,8 +539,8 @@
"optional_inner": {
"type": "String"
},
"summary": "Access key to GraphQL API.",
"description": "You can specify here Basic Auth secret (Evercloud project secret) in hex string\nor serialized JWT in base64 string.\nWill be passed on as Authorization: Basic ... or Authorization: Bearer ... header."
"summary": "Access key to GraphQL API (Project secret)",
"description": null
}
],
"summary": null,
Expand Down Expand Up @@ -11303,6 +11303,13 @@
"value": "614",
"summary": null,
"description": null
},
{
"name": "Unauthorized",
"type": "Number",
"value": "615",
"summary": null,
"description": null
}
],
"summary": null,
Expand Down
2 changes: 1 addition & 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod abi
//
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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod boc
//
Expand Down
13 changes: 5 additions & 8 deletions 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod client
//
Expand Down Expand Up @@ -106,11 +106,11 @@ type Config struct {
}

type NetworkConfig struct {
// **This field is deprecated, but left for backward-compatibility.** DApp Server public address.
// **This field is deprecated, but left for backward-compatibility.** Evernode endpoint.
ServerAddress null.String `json:"server_address"` // optional
// List of DApp Server addresses.
// List of Evernode endpoints.
// Any correct URL format can be specified, including IP addresses. This parameter is prevailing over `server_address`.
// Check the full list of [supported network endpoints](../ton-os-api/networks.md).
// Check the full list of [supported network endpoints](https://docs.everos.dev/ever-sdk/reference/ever-os-api/networks).
Endpoints []string `json:"endpoints"` // optional
// Deprecated.
// You must use `network.max_reconnect_timeout` that allows to specify maximum network resolving timeout.
Expand Down Expand Up @@ -168,10 +168,7 @@ type NetworkConfig struct {
//
// Must be specified in milliseconds. Default is 5000 (5 sec).
NextRempStatusTimeout null.Uint32 `json:"next_remp_status_timeout"` // optional
// Access key to GraphQL API.
// You can specify here Basic Auth secret (Evercloud project secret) in hex string
// or serialized JWT in base64 string.
// Will be passed on as Authorization: Basic ... or Authorization: Bearer ... header.
// Access key to GraphQL API (Project secret).
AccessKey null.String `json:"access_key"` // optional
}

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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod debot
//
Expand Down
4 changes: 3 additions & 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod net
//
Expand Down Expand Up @@ -28,6 +28,7 @@ const (
NoEndpointsProvidedNetErrorCode = 612
GraphqlWebsocketInitErrorNetErrorCode = 613
NetworkModuleResumedNetErrorCode = 614
UnauthorizedNetErrorCode = 615
)

func init() { // nolint gochecknoinits
Expand All @@ -45,6 +46,7 @@ func init() { // nolint gochecknoinits
errorCodesToErrorTypes[NoEndpointsProvidedNetErrorCode] = "NoEndpointsProvidedNetErrorCode"
errorCodesToErrorTypes[GraphqlWebsocketInitErrorNetErrorCode] = "GraphqlWebsocketInitErrorNetErrorCode"
errorCodesToErrorTypes[NetworkModuleResumedNetErrorCode] = "NetworkModuleResumedNetErrorCode"
errorCodesToErrorTypes[UnauthorizedNetErrorCode] = "UnauthorizedNetErrorCode"
}

type OrderBy struct {
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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 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 21 Sep 22 18:29 UTC
// DON'T EDIT THIS FILE! It is generated via 'task generate' at 17 Oct 22 06:48 UTC
//
// Mod utils
//
Expand Down

0 comments on commit f5b2419

Please sign in to comment.