Skip to content

Commit

Permalink
Merge pull request #358 from tonlabs/0.64.0-rc
Browse files Browse the repository at this point in the history
Version 0.64.0
  • Loading branch information
d3p authored Aug 9, 2023
2 parents f0c9fd0 + 8dff694 commit abfa641
Show file tree
Hide file tree
Showing 39 changed files with 1,228 additions and 232 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.64.0] - 2023-08-09

### New

- Added account BOC provider via evernode RPC (new config parameter 'accountProvider`).

## [0.63.0] - 2023-07-25

### New
Expand Down
56 changes: 43 additions & 13 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ton-q-server",
"version": "0.63.0",
"version": "0.64.0",
"description": "TON Q Server – realtime queries over TON blockchain.",
"main": "index.js",
"repository": "[email protected]:tonlabs/ton-q-server.git",
Expand Down Expand Up @@ -29,10 +29,11 @@
}
},
"dependencies": {
"@eversdk/core": "^1",
"@eversdk/lib-node": "^1",
"@node-redis/client": "^1.0.6",
"@aws-sdk/client-s3": "^3.347.1",
"@eversdk/core": "^1.44.1",
"@eversdk/lib-node": "^1.44.1",
"@node-redis/client": "^1.0.6",
"@open-rpc/client-js": "^1.8.1",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
Expand Down Expand Up @@ -72,6 +73,7 @@
"@graphql-codegen/typescript": "^2.0.0",
"@graphql-codegen/typescript-resolvers": "^2.0.0",
"@types/ioredis": "^4.28.10",
"@types/isomorphic-fetch": "0.0.36",
"@types/jaeger-client": "^3.18.1",
"@types/jest": "^26.0.23",
"@types/md5": "^2.3.2",
Expand Down
7 changes: 7 additions & 0 deletions res/type-defs-blockchain/blockchain.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,13 @@ type BlockchainQuery {
time_start: Int,
"End of the time range, exclusive"
time_end: Int,
"""
Defines query scope.
If `true` then query performed on a maximum time range supported by the cloud.
If `false` then query performed on a recent time range supported by the cloud.
You can find an actual information about time ranges on evercloud documentation.
"""
archive: Boolean
): BlockchainMasterSeqNoRange

"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21472,6 +21472,35 @@ export const accounts = [
public_cells_dec: "0",
workchain_id: 0,
},
{
_key: "0:198880de2ac28bcf71ab8082d7132d22c337879351cae8b48dd397aadf12f206",
_id: "accounts/0:198880de2ac28bcf71ab8082d7132d22c337879351cae8b48dd397aadf12f206",
_rev: "_d5F6M7---A",
acc_type: 1,
balance: "09504e92f56a",
balance_dec: "344915637610",
bits: "3860b",
bits_dec: "34315",
boc: "te6ccg..boc..",
cells: "14a",
cells_dec: "74",
code: "te6ccg..code..",
code_hash:
"80d6c47c4a25543c9b397b71716f3fae1e2c5d247174c52e2c19bd896442b105",
data: "te6ccg..data..",
data_hash:
"ade3c3fb095d33e8958d93245fc6b02dbd9a805a0405b295e0aa76497bf27d52",
id: "0:3d3442a1de0c4f720ee64546ef9714fe0dd83d848115652253b2d7a782c2c954",
json_version: 8,
last_paid: 1647958564,
last_trans_lt: "b1699bfd1b902",
last_trans_lt_dec: "24849604000002",
prev_code_hash:
"80d6c47c4a25543c9b397b71716f3fae1e2c5d247174c52e2c19bd896442b105",
public_cells: "00",
public_cells_dec: "0",
workchain_id: 0,
},
]

export const summary = {
Expand Down
Loading

0 comments on commit abfa641

Please sign in to comment.