everscale-client-ruby 1.1.23 → 1.1.28

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e4378aa3309111cae784451d25b433bbee3281a701c359b99b1d042c2d097b4
4
- data.tar.gz: 45c712c85370b6e5357f9d424015595173562c5791c7ddabd484e6d5e28c9e7c
3
+ metadata.gz: 02004364bdc99b10b5d54b95e8f1215189ec9698c147e5cca10b89de20e801b7
4
+ data.tar.gz: cf365a553241442768bee5f17c1507c9c38a872e1ce2fbca474aafdd90f46f96
5
5
  SHA512:
6
- metadata.gz: bcd94078f6507d2ca3865125da0779f29430df1bfb32b915a89a2ef490f89dda2883a589ea0cb8747373a43bd7e1c2344d74ed2b7565112be19f3f8e66d517ad
7
- data.tar.gz: 978db55faec424a07e0f5bc64633c7fd5fea4a98a254cfeeeaa6c19b644c87082b42c928de69c58963ef961a8a34f4507c924fecddda11dafa7dfe269a17f5bc
6
+ metadata.gz: 07ee9f04575ddea0e95f083b05fdd23a7281eefc8188f5e0277e6b62596a5778f0f771d1a1b9bdc60b7993d15113627b0a02088370bf9528d141290b93eceb7c
7
+ data.tar.gz: 8f94ae8fb2888c296df8c491a2a06c6ee49c242ef40cfa2718abee0b689cf94c556aa4751f10514581efc9d7060a297f642c7fce2a12af42a854d0c07af9bc00
File without changes
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.31.0",
2
+ "version": "1.33.0",
3
3
  "modules": [
4
4
  {
5
5
  "name": "client",
@@ -365,7 +365,7 @@
365
365
  "optional_inner": {
366
366
  "type": "String"
367
367
  },
368
- "summary": "DApp Server public address. For instance, for `net.ton.dev/graphql` GraphQL endpoint the server address will be net.ton.dev",
368
+ "summary": "**This field is deprecated, but left for backward-compatibility.** DApp Server public address.",
369
369
  "description": null
370
370
  },
371
371
  {
@@ -378,7 +378,7 @@
378
378
  }
379
379
  },
380
380
  "summary": "List of DApp Server addresses.",
381
- "description": "Any correct URL format can be specified, including IP addresses This parameter is prevailing over `server_address`."
381
+ "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)."
382
382
  },
383
383
  {
384
384
  "name": "network_retries_count",
@@ -466,7 +466,7 @@
466
466
  "number_size": 8
467
467
  },
468
468
  "summary": "Maximum number of randomly chosen endpoints the library uses to broadcast a message.",
469
- "description": "Default is 2."
469
+ "description": "Default is 1."
470
470
  },
471
471
  {
472
472
  "name": "latency_detection_interval",
@@ -501,6 +501,38 @@
501
501
  "summary": "Default timeout for http requests.",
502
502
  "description": "Is is used when no timeout specified for the request to limit the answer waiting time. If no answer received during the timeout requests ends with\nerror.\n\nMust be specified in milliseconds. Default is 60000 (1 min)."
503
503
  },
504
+ {
505
+ "name": "queries_protocol",
506
+ "type": "Optional",
507
+ "optional_inner": {
508
+ "type": "Ref",
509
+ "ref_name": "client.NetworkQueriesProtocol"
510
+ },
511
+ "summary": "Queries protocol.",
512
+ "description": "`HTTP` or `WS`. \nDefault is `HTTP`."
513
+ },
514
+ {
515
+ "name": "first_remp_status_timeout",
516
+ "type": "Optional",
517
+ "optional_inner": {
518
+ "type": "Number",
519
+ "number_type": "UInt",
520
+ "number_size": 32
521
+ },
522
+ "summary": "UNSTABLE.",
523
+ "description": "First REMP status awaiting timeout. If no status recieved during the timeout than fallback transaction scenario is activated.\n\nMust be specified in milliseconds. Default is 1000 (1 sec)."
524
+ },
525
+ {
526
+ "name": "next_remp_status_timeout",
527
+ "type": "Optional",
528
+ "optional_inner": {
529
+ "type": "Number",
530
+ "number_type": "UInt",
531
+ "number_size": 32
532
+ },
533
+ "summary": "UNSTABLE.",
534
+ "description": "Subsequent REMP status awaiting timeout. If no status recieved during the timeout than fallback transaction scenario is activated.\n\nMust be specified in milliseconds. Default is 5000 (5 sec)."
535
+ },
504
536
  {
505
537
  "name": "access_key",
506
538
  "type": "Optional",
@@ -514,6 +546,26 @@
514
546
  "summary": null,
515
547
  "description": null
516
548
  },
549
+ {
550
+ "name": "NetworkQueriesProtocol",
551
+ "type": "EnumOfConsts",
552
+ "enum_consts": [
553
+ {
554
+ "name": "HTTP",
555
+ "type": "None",
556
+ "summary": "Each GraphQL query uses separate HTTP request.",
557
+ "description": null
558
+ },
559
+ {
560
+ "name": "WS",
561
+ "type": "None",
562
+ "summary": "All GraphQL queries will be served using single web socket connection.",
563
+ "description": null
564
+ }
565
+ ],
566
+ "summary": "Network protocol used to perform GraphQL queries.",
567
+ "description": null
568
+ },
517
569
  {
518
570
  "name": "CryptoConfig",
519
571
  "type": "Struct",
@@ -1147,6 +1199,13 @@
1147
1199
  "value": "133",
1148
1200
  "summary": null,
1149
1201
  "description": null
1202
+ },
1203
+ {
1204
+ "name": "InvalidNonceSize",
1205
+ "type": "Number",
1206
+ "value": "134",
1207
+ "summary": null,
1208
+ "description": null
1150
1209
  }
1151
1210
  ],
1152
1211
  "summary": null,
@@ -6368,6 +6427,15 @@
6368
6427
  "type": "String",
6369
6428
  "summary": "Message BOC",
6370
6429
  "description": null
6430
+ },
6431
+ {
6432
+ "name": "allow_partial",
6433
+ "type": "Optional",
6434
+ "optional_inner": {
6435
+ "type": "Boolean"
6436
+ },
6437
+ "summary": "Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)",
6438
+ "description": null
6371
6439
  }
6372
6440
  ],
6373
6441
  "summary": null,
@@ -6436,6 +6504,15 @@
6436
6504
  "type": "Boolean",
6437
6505
  "summary": "True if the body belongs to the internal message.",
6438
6506
  "description": null
6507
+ },
6508
+ {
6509
+ "name": "allow_partial",
6510
+ "type": "Optional",
6511
+ "optional_inner": {
6512
+ "type": "Boolean"
6513
+ },
6514
+ "summary": "Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)",
6515
+ "description": null
6439
6516
  }
6440
6517
  ],
6441
6518
  "summary": null,
@@ -6535,6 +6612,15 @@
6535
6612
  "type": "String",
6536
6613
  "summary": "Data BOC or BOC handle",
6537
6614
  "description": null
6615
+ },
6616
+ {
6617
+ "name": "allow_partial",
6618
+ "type": "Optional",
6619
+ "optional_inner": {
6620
+ "type": "Boolean"
6621
+ },
6622
+ "summary": "Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)",
6623
+ "description": null
6538
6624
  }
6539
6625
  ],
6540
6626
  "summary": null,
@@ -6702,6 +6788,15 @@
6702
6788
  "type": "String",
6703
6789
  "summary": "Data BOC or BOC handle",
6704
6790
  "description": null
6791
+ },
6792
+ {
6793
+ "name": "allow_partial",
6794
+ "type": "Optional",
6795
+ "optional_inner": {
6796
+ "type": "Boolean"
6797
+ },
6798
+ "summary": "Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)",
6799
+ "description": null
6705
6800
  }
6706
6801
  ],
6707
6802
  "summary": null,
@@ -9081,6 +9176,27 @@
9081
9176
  "value": "513",
9082
9177
  "summary": null,
9083
9178
  "description": null
9179
+ },
9180
+ {
9181
+ "name": "MessageRejected",
9182
+ "type": "Number",
9183
+ "value": "514",
9184
+ "summary": null,
9185
+ "description": null
9186
+ },
9187
+ {
9188
+ "name": "InvalidRempStatus",
9189
+ "type": "Number",
9190
+ "value": "515",
9191
+ "summary": null,
9192
+ "description": null
9193
+ },
9194
+ {
9195
+ "name": "NextRempStatusTimeout",
9196
+ "type": "Number",
9197
+ "value": "516",
9198
+ "summary": null,
9199
+ "description": null
9084
9200
  }
9085
9201
  ],
9086
9202
  "summary": null,
@@ -9282,6 +9398,137 @@
9282
9398
  ],
9283
9399
  "summary": "Notifies the app that the message was not executed within expire timeout on-chain and will never be because it is already expired. The expiration timeout can be configured with `AbiConfig` parameters.",
9284
9400
  "description": "This event occurs only for the contracts which ABI includes \"expire\" header.\n\nIf Application specifies `NetworkConfig.message_retries_count` > 0, then `process_message`\nwill perform retries: will create a new message and send it again and repeat it untill it reaches\nthe maximum retries count or receives a successful result. All the processing\nevents will be repeated."
9401
+ },
9402
+ {
9403
+ "name": "RempSentToValidators",
9404
+ "type": "Struct",
9405
+ "struct_fields": [
9406
+ {
9407
+ "name": "message_id",
9408
+ "type": "String",
9409
+ "summary": null,
9410
+ "description": null
9411
+ },
9412
+ {
9413
+ "name": "timestamp",
9414
+ "type": "BigInt",
9415
+ "number_type": "UInt",
9416
+ "number_size": 64,
9417
+ "summary": null,
9418
+ "description": null
9419
+ },
9420
+ {
9421
+ "name": "json",
9422
+ "type": "Ref",
9423
+ "ref_name": "Value",
9424
+ "summary": null,
9425
+ "description": null
9426
+ }
9427
+ ],
9428
+ "summary": "Notifies the app that the message has been delivered to the thread's validators",
9429
+ "description": null
9430
+ },
9431
+ {
9432
+ "name": "RempIncludedIntoBlock",
9433
+ "type": "Struct",
9434
+ "struct_fields": [
9435
+ {
9436
+ "name": "message_id",
9437
+ "type": "String",
9438
+ "summary": null,
9439
+ "description": null
9440
+ },
9441
+ {
9442
+ "name": "timestamp",
9443
+ "type": "BigInt",
9444
+ "number_type": "UInt",
9445
+ "number_size": 64,
9446
+ "summary": null,
9447
+ "description": null
9448
+ },
9449
+ {
9450
+ "name": "json",
9451
+ "type": "Ref",
9452
+ "ref_name": "Value",
9453
+ "summary": null,
9454
+ "description": null
9455
+ }
9456
+ ],
9457
+ "summary": "Notifies the app that the message has been successfully included into a block candidate by the thread's collator",
9458
+ "description": null
9459
+ },
9460
+ {
9461
+ "name": "RempIncludedIntoAcceptedBlock",
9462
+ "type": "Struct",
9463
+ "struct_fields": [
9464
+ {
9465
+ "name": "message_id",
9466
+ "type": "String",
9467
+ "summary": null,
9468
+ "description": null
9469
+ },
9470
+ {
9471
+ "name": "timestamp",
9472
+ "type": "BigInt",
9473
+ "number_type": "UInt",
9474
+ "number_size": 64,
9475
+ "summary": null,
9476
+ "description": null
9477
+ },
9478
+ {
9479
+ "name": "json",
9480
+ "type": "Ref",
9481
+ "ref_name": "Value",
9482
+ "summary": null,
9483
+ "description": null
9484
+ }
9485
+ ],
9486
+ "summary": "Notifies the app that the block candicate with the message has been accepted by the thread's validators",
9487
+ "description": null
9488
+ },
9489
+ {
9490
+ "name": "RempOther",
9491
+ "type": "Struct",
9492
+ "struct_fields": [
9493
+ {
9494
+ "name": "message_id",
9495
+ "type": "String",
9496
+ "summary": null,
9497
+ "description": null
9498
+ },
9499
+ {
9500
+ "name": "timestamp",
9501
+ "type": "BigInt",
9502
+ "number_type": "UInt",
9503
+ "number_size": 64,
9504
+ "summary": null,
9505
+ "description": null
9506
+ },
9507
+ {
9508
+ "name": "json",
9509
+ "type": "Ref",
9510
+ "ref_name": "Value",
9511
+ "summary": null,
9512
+ "description": null
9513
+ }
9514
+ ],
9515
+ "summary": "Notifies the app about some other minor REMP statuses occurring during message processing",
9516
+ "description": null
9517
+ },
9518
+ {
9519
+ "name": "RempError",
9520
+ "type": "Struct",
9521
+ "struct_fields": [
9522
+ {
9523
+ "name": "error",
9524
+ "type": "Ref",
9525
+ "ref_name": "client.ClientError",
9526
+ "summary": null,
9527
+ "description": null
9528
+ }
9529
+ ],
9530
+ "summary": "Notifies the app about any problem that has occured in REMP processing - in this case library switches to the fallback transaction awaiting scenario (sequential block reading).",
9531
+ "description": null
9285
9532
  }
9286
9533
  ],
9287
9534
  "summary": null,
@@ -12391,7 +12638,7 @@
12391
12638
  {
12392
12639
  "name": "query_counterparties",
12393
12640
  "summary": "Allows to query and paginate through the list of accounts that the specified account has interacted with, sorted by the time of the last internal message between accounts",
12394
- "description": "*Attention* this query retrieves data from 'Counterparties' service which is not supported in\nthe opensource version of DApp Server (and will not be supported) as well as in TON OS SE (will be supported in SE in future),\nbut is always accessible via [TON OS Devnet/Mainnet Clouds](https://docs.ton.dev/86757ecb2/p/85c869-networks)",
12641
+ "description": "*Attention* this query retrieves data from 'Counterparties' service which is not supported in\nthe opensource version of DApp Server (and will not be supported) as well as in Evernode SE (will be supported in SE in future),\nbut is always accessible via [EVER OS Clouds](../ton-os-api/networks.md)",
12395
12642
  "params": [
12396
12643
  {
12397
12644
  "name": "context",
@@ -13723,7 +13970,7 @@
13723
13970
  {
13724
13971
  "name": "proof_block_data",
13725
13972
  "summary": "Proves that a given block's data, which is queried from TONOS API, can be trusted.",
13726
- "description": "This function checks block proofs and compares given data with the proven.\nIf the given data differs from the proven, the exception will be thrown.\nThe input param is a single block's JSON object, which was queried from DApp server using\nfunctions such as `net.query`, `net.query_collection` or `net.wait_for_collection`.\nIf block's BOC is not provided in the JSON, it will be queried from DApp server\n(in this case it is required to provide at least `id` of block).\n\nPlease note, that joins (like `signatures` in `Block`) are separated entities and not supported,\nso function will throw an exception in a case if JSON being checked has such entities in it.\n\nIf `cache_in_local_storage` in config is set to `true` (default), downloaded proofs and\nmaster-chain BOCs are saved into the persistent local storage (e.g. file system for native\nenvironments or browser's IndexedDB for the web); otherwise all the data is cached only in\nmemory in current client's context and will be lost after destruction of the client.\n\n**Why Proofs are needed**\n\nProofs are needed to ensure that the data downloaded from a DApp server is real blockchain\ndata. Checking proofs can protect from the malicious DApp server which can potentially provide\nfake data, or also from \"Man in the Middle\" attacks class.\n\n**What Proofs are**\n\nSimply, proof is a list of signatures of validators', which have signed this particular master-\nblock.\n\nThe very first validator set's public keys are included in the zero-state. Whe know a root hash\nof the zero-state, because it is stored in the network configuration file, it is our authority\nroot. For proving zero-state it is enough to calculate and compare its root hash.\n\nIn each new validator cycle the validator set is changed. The new one is stored in a key-block,\nwhich is signed by the validator set, which we already trust, the next validator set will be\nstored to the new key-block and signed by the current validator set, and so on.\n\nIn order to prove any block in the master-chain we need to check, that it has been signed by\na trusted validator set. So we need to check all key-blocks' proofs, started from the zero-state\nand until the block, which we want to prove. But it can take a lot of time and traffic to\ndownload and prove all key-blocks on a client. For solving this, special trusted blocks are used\nin TON-SDK.\n\nThe trusted block is the authority root, as well, as the zero-state. Each trusted block is the\n`id` (e.g. `root_hash`) of the already proven key-block. There can be plenty of trusted\nblocks, so there can be a lot of authority roots. The hashes of trusted blocks for MainNet\nand DevNet are hardcoded in SDK in a separated binary file (trusted_key_blocks.bin) and is\nbeing updated for each release by using `update_trusted_blocks` utility.\n\nSee [update_trusted_blocks](../../../tools/update_trusted_blocks) directory for more info.\n\nIn future SDK releases, one will also be able to provide their hashes of trusted blocks for\nother networks, besides for MainNet and DevNet.\nBy using trusted key-blocks, in order to prove any block, we can prove chain of key-blocks to\nthe closest previous trusted key-block, not only to the zero-state.\n\nBut shard-blocks don't have proofs on DApp server. In this case, in order to prove any shard-\nblock data, we search for a corresponding master-block, which contains the root hash of this\nshard-block, or some shard block which is linked to that block in shard-chain. After proving\nthis master-block, we traverse through each link and calculate and compare hashes with links,\none-by-one. After that we can ensure that this shard-block has also been proven.",
13973
+ "description": "This function checks block proofs and compares given data with the proven.\nIf the given data differs from the proven, the exception will be thrown.\nThe input param is a single block's JSON object, which was queried from DApp server using\nfunctions such as `net.query`, `net.query_collection` or `net.wait_for_collection`.\nIf block's BOC is not provided in the JSON, it will be queried from DApp server\n(in this case it is required to provide at least `id` of block).\n\nPlease note, that joins (like `signatures` in `Block`) are separated entities and not supported,\nso function will throw an exception in a case if JSON being checked has such entities in it.\n\nIf `cache_in_local_storage` in config is set to `true` (default), downloaded proofs and\nmaster-chain BOCs are saved into the persistent local storage (e.g. file system for native\nenvironments or browser's IndexedDB for the web); otherwise all the data is cached only in\nmemory in current client's context and will be lost after destruction of the client.\n\n**Why Proofs are needed**\n\nProofs are needed to ensure that the data downloaded from a DApp server is real blockchain\ndata. Checking proofs can protect from the malicious DApp server which can potentially provide\nfake data, or also from \"Man in the Middle\" attacks class.\n\n**What Proofs are**\n\nSimply, proof is a list of signatures of validators', which have signed this particular master-\nblock.\n\nThe very first validator set's public keys are included in the zero-state. Whe know a root hash\nof the zero-state, because it is stored in the network configuration file, it is our authority\nroot. For proving zero-state it is enough to calculate and compare its root hash.\n\nIn each new validator cycle the validator set is changed. The new one is stored in a key-block,\nwhich is signed by the validator set, which we already trust, the next validator set will be\nstored to the new key-block and signed by the current validator set, and so on.\n\nIn order to prove any block in the master-chain we need to check, that it has been signed by\na trusted validator set. So we need to check all key-blocks' proofs, started from the zero-state\nand until the block, which we want to prove. But it can take a lot of time and traffic to\ndownload and prove all key-blocks on a client. For solving this, special trusted blocks are used\nin Ever-SDK.\n\nThe trusted block is the authority root, as well, as the zero-state. Each trusted block is the\n`id` (e.g. `root_hash`) of the already proven key-block. There can be plenty of trusted\nblocks, so there can be a lot of authority roots. The hashes of trusted blocks for MainNet\nand DevNet are hardcoded in SDK in a separated binary file (trusted_key_blocks.bin) and is\nbeing updated for each release by using `update_trusted_blocks` utility.\n\nSee [update_trusted_blocks](../../../tools/update_trusted_blocks) directory for more info.\n\nIn future SDK releases, one will also be able to provide their hashes of trusted blocks for\nother networks, besides for MainNet and DevNet.\nBy using trusted key-blocks, in order to prove any block, we can prove chain of key-blocks to\nthe closest previous trusted key-block, not only to the zero-state.\n\nBut shard-blocks don't have proofs on DApp server. In this case, in order to prove any shard-\nblock data, we search for a corresponding master-block, which contains the root hash of this\nshard-block, or some shard block which is linked to that block in shard-chain. After proving\nthis master-block, we traverse through each link and calculate and compare hashes with links,\none-by-one. After that we can ensure that this shard-block has also been proven.",
13727
13974
  "params": [
13728
13975
  {
13729
13976
  "name": "context",
@@ -94,6 +94,7 @@ module TonClient
94
94
  # INPUT: ParamsOfDecodeMessage
95
95
  # abi: Value - # # contract ABI
96
96
  # message: String - # # Message BOC
97
+ # allow_partial: Boolean<Optional> - # # Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)
97
98
  # RESPONSE: DecodedMessageBody
98
99
  # body_type: MessageBodyType - # # Type of the message body content.
99
100
  # name: String - # # Function or event name.
@@ -107,6 +108,7 @@ module TonClient
107
108
  # abi: Value - # # Contract ABI used to decode.
108
109
  # body: String - # # Message body BOC encoded in `base64`.
109
110
  # is_internal: Boolean - # # True if the body belongs to the internal message.
111
+ # allow_partial: Boolean<Optional> - # # Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)
110
112
  # RESPONSE: DecodedMessageBody
111
113
  # body_type: MessageBodyType - # # Type of the message body content.
112
114
  # name: String - # # Function or event name.
@@ -132,6 +134,7 @@ module TonClient
132
134
  # INPUT: ParamsOfDecodeAccountData
133
135
  # abi: Value - # # Contract ABI
134
136
  # data: String - # # Data BOC or BOC handle
137
+ # allow_partial: Boolean<Optional> - # # Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)
135
138
  # RESPONSE: ResultOfDecodeAccountData
136
139
  # data: Value - # # Decoded data as a JSON structure.
137
140
  def decode_account_data(payload, &block)
@@ -164,6 +167,7 @@ module TonClient
164
167
  # INPUT: ParamsOfDecodeInitialData
165
168
  # abi: Value<Optional> - # # Contract ABI. # # Initial data is decoded if this parameter is provided
166
169
  # data: String - # # Data BOC or BOC handle
170
+ # allow_partial: Boolean<Optional> - # # Flag allowing partial BOC decoding when ABI doesn't describe the full body BOC. Controls decoder behaviour when after decoding all described in ABI params there are some data left in BOC: `true` - return decoded values `false` - return error of incomplete BOC deserialization (default)
167
171
  # RESPONSE: ResultOfDecodeInitialData
168
172
  # initial_data: Value<Optional> - # # List of initial values of contract's public variables. # # Initial data is decoded if `abi` input parameter is provided
169
173
  # initial_pubkey: String - # # Initial account owner's public key
@@ -1,4 +1,4 @@
1
1
  module TonClient
2
- VERSION = "1.1.23"
2
+ VERSION = "1.1.28"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: everscale-client-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.23
4
+ version: 1.1.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - nerzh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -112,11 +112,11 @@ description: Gem Ton Client Ruby for all ruby projects
112
112
  email:
113
113
  - emptystamp@gmail.com
114
114
  executables:
115
- - ton-client-ruby
115
+ - everscale-client-ruby
116
116
  extensions: []
117
117
  extra_rdoc_files: []
118
118
  files:
119
- - bin/ton-client-ruby
119
+ - bin/everscale-client-ruby
120
120
  - lib/code_generator/api.json
121
121
  - lib/code_generator/api_converter.rb
122
122
  - lib/code_generator/code_generator.rb