@meow-laika/ton-lite-client 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +80 -0
- package/dist/client.d.ts +121 -0
- package/dist/client.js +548 -0
- package/dist/engines/engine.d.ts +31 -0
- package/dist/engines/engine.js +12 -0
- package/dist/engines/roundRobin.d.ts +27 -0
- package/dist/engines/roundRobin.js +115 -0
- package/dist/engines/single.d.ts +37 -0
- package/dist/engines/single.js +186 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +16 -0
- package/dist/liteClientProvider.d.ts +12 -0
- package/dist/liteClientProvider.js +211 -0
- package/dist/main.d.ts +8 -0
- package/dist/main.js +80 -0
- package/dist/parser/parseShards.d.ts +11 -0
- package/dist/parser/parseShards.js +46 -0
- package/dist/schema.d.ts +554 -0
- package/dist/schema.gen.d.ts +8 -0
- package/dist/schema.gen.js +17 -0
- package/dist/schema.js +1595 -0
- package/dist/types.d.ts +70 -0
- package/dist/types.js +2 -0
- package/dist/utils/arrays.d.ts +2 -0
- package/dist/utils/arrays.js +11 -0
- package/dist/utils/bigint.d.ts +3 -0
- package/dist/utils/bigint.js +28 -0
- package/dist/utils/crc16.d.ts +9 -0
- package/dist/utils/crc16.js +56 -0
- package/package.json +36 -0
package/dist/main.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Whales Corp.
|
|
4
|
+
* All Rights Reserved.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the MIT license found in the
|
|
7
|
+
* LICENSE file in the root directory of this source tree.
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
const single_1 = require("./engines/single");
|
|
11
|
+
const roundRobin_1 = require("./engines/roundRobin");
|
|
12
|
+
const client_1 = require("./client");
|
|
13
|
+
const core_1 = require("@ton/core");
|
|
14
|
+
// import { formatDistance } from "date-fns";
|
|
15
|
+
const teslabot_1 = require("teslabot");
|
|
16
|
+
const backoff = (0, teslabot_1.createBackoff)();
|
|
17
|
+
function intToIP(int) {
|
|
18
|
+
var part1 = int & 255;
|
|
19
|
+
var part2 = ((int >> 8) & 255);
|
|
20
|
+
var part3 = ((int >> 16) & 255);
|
|
21
|
+
var part4 = ((int >> 24) & 255);
|
|
22
|
+
return part4 + "." + part3 + "." + part2 + "." + part1;
|
|
23
|
+
}
|
|
24
|
+
let server = {
|
|
25
|
+
"ip": 1097649206,
|
|
26
|
+
"port": 29296,
|
|
27
|
+
"id": {
|
|
28
|
+
"@type": "pub.ed25519",
|
|
29
|
+
"key": "p2tSiaeSqX978BxE5zLxuTQM06WVDErf5/15QToxMYA="
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
async function main() {
|
|
33
|
+
const engines = [];
|
|
34
|
+
for (let i = 0; i < 1; i++) {
|
|
35
|
+
engines.push(new single_1.LiteSingleEngine({
|
|
36
|
+
host: `tcp://${intToIP(server.ip)}:${server.port}`,
|
|
37
|
+
// host: `wss://ws.tonlens.com/?ip=${server.ip}&port=${server.port}&pubkey=${server.id.key}`,
|
|
38
|
+
publicKey: Buffer.from(server.id.key, 'base64'),
|
|
39
|
+
// client: 'ws'
|
|
40
|
+
}));
|
|
41
|
+
}
|
|
42
|
+
const engine = new roundRobin_1.LiteRoundRobinEngine(engines);
|
|
43
|
+
const client = new client_1.LiteClient({ engine });
|
|
44
|
+
console.log('get master info');
|
|
45
|
+
const master = await client.getMasterchainInfo();
|
|
46
|
+
console.log('master', master);
|
|
47
|
+
const address = core_1.Address.parse('kQC2sf_Hy34aMM7n9f9_V-ThHDehjH71LWBETy_JrTirPIHa');
|
|
48
|
+
while (true) {
|
|
49
|
+
let latest = await client.getMasterchainInfo();
|
|
50
|
+
console.log("Latest block: " + latest.last.seqno);
|
|
51
|
+
await client.getFullBlock(latest.last.seqno);
|
|
52
|
+
const libRes = await client.getLibraries([
|
|
53
|
+
Buffer.from('587cc789eff1c84f46ec3797e45fc809a14ff5ae24f1e0c7a6a99cc9dc9061ff', 'hex'),
|
|
54
|
+
Buffer.from('bd3d7ccaf2b4ccf7fc8f1e9abaf8781e5a783f1d1e075dfab884b1d795f23666', 'hex')
|
|
55
|
+
]);
|
|
56
|
+
console.log('libRes: ', libRes);
|
|
57
|
+
console.log('Account state full :', core_1.Cell.fromBoc((await client.getAccountState(address, latest.last)).raw)[0].hash().toString('hex'));
|
|
58
|
+
console.log('Account state prunned:', (await client.getAccountStatePrunned(address, latest.last)).stateHash?.toString('hex'));
|
|
59
|
+
// https://test-explorer.toncoin.org/transaction?account=EQBPId-mitsa7ldOJiYKMABPo64DxO46e93AiWXImbcPGzjI<=17770551000001&hash=ea5be964a475f24365ad9199e67ceb2309f4260a0fae697eed91e7fe1d168b97
|
|
60
|
+
const lt = 17770551000001n;
|
|
61
|
+
const blockSeqno = 16944437;
|
|
62
|
+
const blockByLt = await client.lookupBlockByLt({
|
|
63
|
+
shard: latest.last.shard,
|
|
64
|
+
workchain: 0,
|
|
65
|
+
lt,
|
|
66
|
+
});
|
|
67
|
+
console.log('Block by lt', blockByLt);
|
|
68
|
+
if (blockByLt.id.seqno !== blockSeqno) {
|
|
69
|
+
throw new Error('Wrong lt');
|
|
70
|
+
}
|
|
71
|
+
const start = Date.now();
|
|
72
|
+
const res = await client.getMasterchainInfo({ timeout: 15000, awaitSeqno: latest.last.seqno + 2 });
|
|
73
|
+
console.log('wait res', Date.now() - start, res);
|
|
74
|
+
const blockData = await client.getFullBlock(34745880);
|
|
75
|
+
// Should be 288
|
|
76
|
+
console.log('block data', blockData, blockData.shards[1].transactions.length);
|
|
77
|
+
await new Promise((resolve, reject) => setTimeout(resolve, 3000));
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
main();
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright
|
|
3
|
+
* (c) 2022 Whales Corp.
|
|
4
|
+
* (c) 2023 TrueCarry <truecarry@gmail.com>
|
|
5
|
+
* All Rights Reserved.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
import { Slice } from "@ton/core";
|
|
11
|
+
export declare function parseShards(cs: Slice): Map<bigint, Map<string, number>>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright
|
|
4
|
+
* (c) 2022 Whales Corp.
|
|
5
|
+
* (c) 2023 TrueCarry <truecarry@gmail.com>
|
|
6
|
+
* All Rights Reserved.
|
|
7
|
+
*
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
10
|
+
*/
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.parseShards = void 0;
|
|
13
|
+
const parseDict_1 = require("@ton/core/dist/dict/parseDict");
|
|
14
|
+
// Source: https://github.com/ton-foundation/ton/blob/ae5c0720143e231c32c3d2034cfe4e533a16d969/crypto/block/mc-config.cpp#L1232
|
|
15
|
+
function parseShards(cs) {
|
|
16
|
+
if (!cs.loadBit()) {
|
|
17
|
+
throw Error('Invalid slice');
|
|
18
|
+
}
|
|
19
|
+
return (0, parseDict_1.parseDict)(cs.loadRef().asSlice(), 32, (cs2) => {
|
|
20
|
+
let stack = [{ slice: cs2.loadRef().asSlice(), shard: 1n << 63n }];
|
|
21
|
+
let res = new Map();
|
|
22
|
+
while (stack.length > 0) {
|
|
23
|
+
let item = stack.pop();
|
|
24
|
+
let slice = item.slice;
|
|
25
|
+
let shard = item.shard;
|
|
26
|
+
let t = slice.loadBit();
|
|
27
|
+
if (!t) {
|
|
28
|
+
slice.skip(4);
|
|
29
|
+
let seqno = slice.loadUint(32);
|
|
30
|
+
const id = BigInt.asIntN(64, shard).toString(10);
|
|
31
|
+
res.set(id, seqno);
|
|
32
|
+
continue;
|
|
33
|
+
}
|
|
34
|
+
// Also check math
|
|
35
|
+
// let delta = shard.and(shard.notn(64).addn(1)).shrn(1);
|
|
36
|
+
let delta = (shard & (~shard + 1n)) >> 1n;
|
|
37
|
+
if (!delta || (slice.remainingRefs !== 2 || slice.remainingBits > 0)) {
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
stack.push({ slice: slice.loadRef().asSlice(), shard: shard - delta });
|
|
41
|
+
stack.push({ slice: slice.loadRef().asSlice(), shard: shard + delta });
|
|
42
|
+
}
|
|
43
|
+
return res;
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
exports.parseShards = parseShards;
|
package/dist/schema.d.ts
ADDED
|
@@ -0,0 +1,554 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Whales Corp.
|
|
3
|
+
* All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
/// <reference types="node" />
|
|
9
|
+
import { TLFlag, TLInt, TLString, TLLong, TLInt256, TLBytes, TLBool, TLCodec, TLFunction } from "ton-tl";
|
|
10
|
+
export interface tonNode_blockId {
|
|
11
|
+
readonly kind: 'tonNode.blockId';
|
|
12
|
+
readonly workchain: TLInt;
|
|
13
|
+
readonly shard: TLLong;
|
|
14
|
+
readonly seqno: TLInt;
|
|
15
|
+
}
|
|
16
|
+
export interface tonNode_blockIdExt {
|
|
17
|
+
readonly kind: 'tonNode.blockIdExt';
|
|
18
|
+
readonly workchain: TLInt;
|
|
19
|
+
readonly shard: TLLong;
|
|
20
|
+
readonly seqno: TLInt;
|
|
21
|
+
readonly rootHash: TLInt256;
|
|
22
|
+
readonly fileHash: TLInt256;
|
|
23
|
+
}
|
|
24
|
+
export interface tonNode_zeroStateIdExt {
|
|
25
|
+
readonly kind: 'tonNode.zeroStateIdExt';
|
|
26
|
+
readonly workchain: TLInt;
|
|
27
|
+
readonly rootHash: TLInt256;
|
|
28
|
+
readonly fileHash: TLInt256;
|
|
29
|
+
}
|
|
30
|
+
export interface adnl_message_query {
|
|
31
|
+
readonly kind: 'adnl.message.query';
|
|
32
|
+
readonly queryId: TLInt256;
|
|
33
|
+
readonly query: TLBytes;
|
|
34
|
+
}
|
|
35
|
+
export interface adnl_message_answer {
|
|
36
|
+
readonly kind: 'adnl.message.answer';
|
|
37
|
+
readonly queryId: TLInt256;
|
|
38
|
+
readonly answer: TLBytes;
|
|
39
|
+
}
|
|
40
|
+
export interface liteServer_error {
|
|
41
|
+
readonly kind: 'liteServer.error';
|
|
42
|
+
readonly code: TLInt;
|
|
43
|
+
readonly message: TLString;
|
|
44
|
+
}
|
|
45
|
+
export interface liteServer_accountId {
|
|
46
|
+
readonly kind: 'liteServer.accountId';
|
|
47
|
+
readonly workchain: TLInt;
|
|
48
|
+
readonly id: TLInt256;
|
|
49
|
+
}
|
|
50
|
+
export interface liteServer_libraryEntry {
|
|
51
|
+
readonly kind: 'liteServer.libraryEntry';
|
|
52
|
+
readonly hash: TLInt256;
|
|
53
|
+
readonly data: TLBytes;
|
|
54
|
+
}
|
|
55
|
+
export interface liteServer_masterchainInfo {
|
|
56
|
+
readonly kind: 'liteServer.masterchainInfo';
|
|
57
|
+
readonly last: tonNode_blockIdExt;
|
|
58
|
+
readonly stateRootHash: TLInt256;
|
|
59
|
+
readonly init: tonNode_zeroStateIdExt;
|
|
60
|
+
}
|
|
61
|
+
export interface liteServer_masterchainInfoExt {
|
|
62
|
+
readonly kind: 'liteServer.masterchainInfoExt';
|
|
63
|
+
readonly mode: TLFlag;
|
|
64
|
+
readonly version: TLInt;
|
|
65
|
+
readonly capabilities: TLLong;
|
|
66
|
+
readonly last: tonNode_blockIdExt;
|
|
67
|
+
readonly lastUtime: TLInt;
|
|
68
|
+
readonly now: TLInt;
|
|
69
|
+
readonly stateRootHash: TLInt256;
|
|
70
|
+
readonly init: tonNode_zeroStateIdExt;
|
|
71
|
+
}
|
|
72
|
+
export interface liteServer_currentTime {
|
|
73
|
+
readonly kind: 'liteServer.currentTime';
|
|
74
|
+
readonly now: TLInt;
|
|
75
|
+
}
|
|
76
|
+
export interface liteServer_version {
|
|
77
|
+
readonly kind: 'liteServer.version';
|
|
78
|
+
readonly mode: TLFlag;
|
|
79
|
+
readonly version: TLInt;
|
|
80
|
+
readonly capabilities: TLLong;
|
|
81
|
+
readonly now: TLInt;
|
|
82
|
+
}
|
|
83
|
+
export interface liteServer_blockData {
|
|
84
|
+
readonly kind: 'liteServer.blockData';
|
|
85
|
+
readonly id: tonNode_blockIdExt;
|
|
86
|
+
readonly data: TLBytes;
|
|
87
|
+
}
|
|
88
|
+
export interface liteServer_blockState {
|
|
89
|
+
readonly kind: 'liteServer.blockState';
|
|
90
|
+
readonly id: tonNode_blockIdExt;
|
|
91
|
+
readonly rootHash: TLInt256;
|
|
92
|
+
readonly fileHash: TLInt256;
|
|
93
|
+
readonly data: TLBytes;
|
|
94
|
+
}
|
|
95
|
+
export interface liteServer_blockHeader {
|
|
96
|
+
readonly kind: 'liteServer.blockHeader';
|
|
97
|
+
readonly id: tonNode_blockIdExt;
|
|
98
|
+
readonly mode: TLFlag;
|
|
99
|
+
readonly headerProof: TLBytes;
|
|
100
|
+
}
|
|
101
|
+
export interface liteServer_sendMsgStatus {
|
|
102
|
+
readonly kind: 'liteServer.sendMsgStatus';
|
|
103
|
+
readonly status: TLInt;
|
|
104
|
+
}
|
|
105
|
+
export interface liteServer_accountState {
|
|
106
|
+
readonly kind: 'liteServer.accountState';
|
|
107
|
+
readonly id: tonNode_blockIdExt;
|
|
108
|
+
readonly shardblk: tonNode_blockIdExt;
|
|
109
|
+
readonly shardProof: TLBytes;
|
|
110
|
+
readonly proof: TLBytes;
|
|
111
|
+
readonly state: TLBytes;
|
|
112
|
+
}
|
|
113
|
+
export interface liteServer_runMethodResult {
|
|
114
|
+
readonly kind: 'liteServer.runMethodResult';
|
|
115
|
+
readonly mode: TLFlag;
|
|
116
|
+
readonly id: tonNode_blockIdExt;
|
|
117
|
+
readonly shardblk: tonNode_blockIdExt;
|
|
118
|
+
readonly shardProof: TLBytes | null;
|
|
119
|
+
readonly proof: TLBytes | null;
|
|
120
|
+
readonly stateProof: TLBytes | null;
|
|
121
|
+
readonly initC7: TLBytes | null;
|
|
122
|
+
readonly libExtras: TLBytes | null;
|
|
123
|
+
readonly exitCode: TLInt;
|
|
124
|
+
readonly result: TLBytes | null;
|
|
125
|
+
}
|
|
126
|
+
export interface liteServer_shardInfo {
|
|
127
|
+
readonly kind: 'liteServer.shardInfo';
|
|
128
|
+
readonly id: tonNode_blockIdExt;
|
|
129
|
+
readonly shardblk: tonNode_blockIdExt;
|
|
130
|
+
readonly shardProof: TLBytes;
|
|
131
|
+
readonly shardDescr: TLBytes;
|
|
132
|
+
}
|
|
133
|
+
export interface liteServer_allShardsInfo {
|
|
134
|
+
readonly kind: 'liteServer.allShardsInfo';
|
|
135
|
+
readonly id: tonNode_blockIdExt;
|
|
136
|
+
readonly proof: TLBytes;
|
|
137
|
+
readonly data: TLBytes;
|
|
138
|
+
}
|
|
139
|
+
export interface liteServer_transactionInfo {
|
|
140
|
+
readonly kind: 'liteServer.transactionInfo';
|
|
141
|
+
readonly id: tonNode_blockIdExt;
|
|
142
|
+
readonly proof: TLBytes;
|
|
143
|
+
readonly transaction: TLBytes;
|
|
144
|
+
}
|
|
145
|
+
export interface liteServer_transactionList {
|
|
146
|
+
readonly kind: 'liteServer.transactionList';
|
|
147
|
+
readonly ids: tonNode_blockIdExt[];
|
|
148
|
+
readonly transactions: TLBytes;
|
|
149
|
+
}
|
|
150
|
+
export interface liteServer_transactionId {
|
|
151
|
+
readonly kind: 'liteServer.transactionId';
|
|
152
|
+
readonly mode: TLFlag;
|
|
153
|
+
readonly account: TLInt256 | null;
|
|
154
|
+
readonly lt: TLLong | null;
|
|
155
|
+
readonly hash: TLInt256 | null;
|
|
156
|
+
}
|
|
157
|
+
export interface liteServer_transactionId3 {
|
|
158
|
+
readonly kind: 'liteServer.transactionId3';
|
|
159
|
+
readonly account: TLInt256;
|
|
160
|
+
readonly lt: TLLong;
|
|
161
|
+
}
|
|
162
|
+
export interface liteServer_blockTransactions {
|
|
163
|
+
readonly kind: 'liteServer.blockTransactions';
|
|
164
|
+
readonly id: tonNode_blockIdExt;
|
|
165
|
+
readonly reqCount: TLFlag;
|
|
166
|
+
readonly incomplete: TLBool;
|
|
167
|
+
readonly ids: liteServer_transactionId[];
|
|
168
|
+
readonly proof: TLBytes;
|
|
169
|
+
}
|
|
170
|
+
export interface liteServer_blockTransactionsExt {
|
|
171
|
+
readonly kind: 'liteServer.blockTransactionsExt';
|
|
172
|
+
readonly id: tonNode_blockIdExt;
|
|
173
|
+
readonly reqCount: TLFlag;
|
|
174
|
+
readonly incomplete: TLBool;
|
|
175
|
+
readonly transactions: TLBytes;
|
|
176
|
+
readonly proof: TLBytes;
|
|
177
|
+
}
|
|
178
|
+
export interface liteServer_signature {
|
|
179
|
+
readonly kind: 'liteServer.signature';
|
|
180
|
+
readonly nodeIdShort: TLInt256;
|
|
181
|
+
readonly signature: TLBytes;
|
|
182
|
+
}
|
|
183
|
+
export interface liteServer_signatureSet {
|
|
184
|
+
readonly kind: 'liteServer.signatureSet';
|
|
185
|
+
readonly validatorSetHash: TLInt;
|
|
186
|
+
readonly catchainSeqno: TLInt;
|
|
187
|
+
readonly signatures: liteServer_signature[];
|
|
188
|
+
}
|
|
189
|
+
export interface liteServer_blockLinkBack {
|
|
190
|
+
readonly kind: 'liteServer.blockLinkBack';
|
|
191
|
+
readonly toKeyBlock: TLBool;
|
|
192
|
+
readonly from: tonNode_blockIdExt;
|
|
193
|
+
readonly to: tonNode_blockIdExt;
|
|
194
|
+
readonly destProof: TLBytes;
|
|
195
|
+
readonly proof: TLBytes;
|
|
196
|
+
readonly stateProof: TLBytes;
|
|
197
|
+
}
|
|
198
|
+
export interface liteServer_blockLinkForward {
|
|
199
|
+
readonly kind: 'liteServer.blockLinkForward';
|
|
200
|
+
readonly toKeyBlock: TLBool;
|
|
201
|
+
readonly from: tonNode_blockIdExt;
|
|
202
|
+
readonly to: tonNode_blockIdExt;
|
|
203
|
+
readonly destProof: TLBytes;
|
|
204
|
+
readonly configProof: TLBytes;
|
|
205
|
+
readonly signatures: liteServer_SignatureSet;
|
|
206
|
+
}
|
|
207
|
+
export interface liteServer_partialBlockProof {
|
|
208
|
+
readonly kind: 'liteServer.partialBlockProof';
|
|
209
|
+
readonly complete: TLBool;
|
|
210
|
+
readonly from: tonNode_blockIdExt;
|
|
211
|
+
readonly to: tonNode_blockIdExt;
|
|
212
|
+
readonly steps: liteServer_BlockLink[];
|
|
213
|
+
}
|
|
214
|
+
export interface liteServer_configInfo {
|
|
215
|
+
readonly kind: 'liteServer.configInfo';
|
|
216
|
+
readonly mode: TLFlag;
|
|
217
|
+
readonly id: tonNode_blockIdExt;
|
|
218
|
+
readonly stateProof: TLBytes;
|
|
219
|
+
readonly configProof: TLBytes;
|
|
220
|
+
}
|
|
221
|
+
export interface liteServer_validatorStats {
|
|
222
|
+
readonly kind: 'liteServer.validatorStats';
|
|
223
|
+
readonly mode: TLFlag;
|
|
224
|
+
readonly id: tonNode_blockIdExt;
|
|
225
|
+
readonly count: TLInt;
|
|
226
|
+
readonly complete: TLBool;
|
|
227
|
+
readonly stateProof: TLBytes;
|
|
228
|
+
readonly dataProof: TLBytes;
|
|
229
|
+
}
|
|
230
|
+
export interface liteServer_libraryResult {
|
|
231
|
+
readonly kind: 'liteServer.libraryResult';
|
|
232
|
+
readonly result: liteServer_libraryEntry[];
|
|
233
|
+
}
|
|
234
|
+
export interface liteServer_shardBlockLink {
|
|
235
|
+
readonly kind: 'liteServer.shardBlockLink';
|
|
236
|
+
readonly id: tonNode_blockIdExt;
|
|
237
|
+
readonly proof: TLBytes;
|
|
238
|
+
}
|
|
239
|
+
export interface liteServer_shardBlockProof {
|
|
240
|
+
readonly kind: 'liteServer.shardBlockProof';
|
|
241
|
+
readonly masterchainId: tonNode_blockIdExt;
|
|
242
|
+
readonly links: liteServer_shardBlockLink[];
|
|
243
|
+
}
|
|
244
|
+
export interface liteServer_debug_verbosity {
|
|
245
|
+
readonly kind: 'liteServer.debug.verbosity';
|
|
246
|
+
readonly value: TLInt;
|
|
247
|
+
}
|
|
248
|
+
export type tonNode_BlockId = tonNode_blockId;
|
|
249
|
+
export type tonNode_BlockIdExt = tonNode_blockIdExt;
|
|
250
|
+
export type tonNode_ZeroStateIdExt = tonNode_zeroStateIdExt;
|
|
251
|
+
export type adnl_Message = adnl_message_query | adnl_message_answer;
|
|
252
|
+
export type liteServer_Error = liteServer_error;
|
|
253
|
+
export type liteServer_AccountId = liteServer_accountId;
|
|
254
|
+
export type liteServer_LibraryEntry = liteServer_libraryEntry;
|
|
255
|
+
export type liteServer_MasterchainInfo = liteServer_masterchainInfo;
|
|
256
|
+
export type liteServer_MasterchainInfoExt = liteServer_masterchainInfoExt;
|
|
257
|
+
export type liteServer_CurrentTime = liteServer_currentTime;
|
|
258
|
+
export type liteServer_Version = liteServer_version;
|
|
259
|
+
export type liteServer_BlockData = liteServer_blockData;
|
|
260
|
+
export type liteServer_BlockState = liteServer_blockState;
|
|
261
|
+
export type liteServer_BlockHeader = liteServer_blockHeader;
|
|
262
|
+
export type liteServer_SendMsgStatus = liteServer_sendMsgStatus;
|
|
263
|
+
export type liteServer_AccountState = liteServer_accountState;
|
|
264
|
+
export type liteServer_RunMethodResult = liteServer_runMethodResult;
|
|
265
|
+
export type liteServer_ShardInfo = liteServer_shardInfo;
|
|
266
|
+
export type liteServer_AllShardsInfo = liteServer_allShardsInfo;
|
|
267
|
+
export type liteServer_TransactionInfo = liteServer_transactionInfo;
|
|
268
|
+
export type liteServer_TransactionList = liteServer_transactionList;
|
|
269
|
+
export type liteServer_TransactionId = liteServer_transactionId;
|
|
270
|
+
export type liteServer_TransactionId3 = liteServer_transactionId3;
|
|
271
|
+
export type liteServer_BlockTransactions = liteServer_blockTransactions;
|
|
272
|
+
export type liteServer_BlockTransactionsExt = liteServer_blockTransactionsExt;
|
|
273
|
+
export type liteServer_Signature = liteServer_signature;
|
|
274
|
+
export type liteServer_SignatureSet = liteServer_signatureSet;
|
|
275
|
+
export type liteServer_BlockLink = liteServer_blockLinkBack | liteServer_blockLinkForward;
|
|
276
|
+
export type liteServer_PartialBlockProof = liteServer_partialBlockProof;
|
|
277
|
+
export type liteServer_ConfigInfo = liteServer_configInfo;
|
|
278
|
+
export type liteServer_ValidatorStats = liteServer_validatorStats;
|
|
279
|
+
export type liteServer_LibraryResult = liteServer_libraryResult;
|
|
280
|
+
export type liteServer_ShardBlockLink = liteServer_shardBlockLink;
|
|
281
|
+
export type liteServer_ShardBlockProof = liteServer_shardBlockProof;
|
|
282
|
+
export type liteServer_debug_Verbosity = liteServer_debug_verbosity;
|
|
283
|
+
export interface liteServer_getMasterchainInfo {
|
|
284
|
+
readonly kind: 'liteServer.getMasterchainInfo';
|
|
285
|
+
}
|
|
286
|
+
export interface liteServer_getMasterchainInfoExt {
|
|
287
|
+
readonly kind: 'liteServer.getMasterchainInfoExt';
|
|
288
|
+
readonly mode: TLFlag;
|
|
289
|
+
}
|
|
290
|
+
export interface liteServer_getTime {
|
|
291
|
+
readonly kind: 'liteServer.getTime';
|
|
292
|
+
}
|
|
293
|
+
export interface liteServer_getVersion {
|
|
294
|
+
readonly kind: 'liteServer.getVersion';
|
|
295
|
+
}
|
|
296
|
+
export interface liteServer_getBlock {
|
|
297
|
+
readonly kind: 'liteServer.getBlock';
|
|
298
|
+
readonly id: tonNode_blockIdExt;
|
|
299
|
+
}
|
|
300
|
+
export interface liteServer_getState {
|
|
301
|
+
readonly kind: 'liteServer.getState';
|
|
302
|
+
readonly id: tonNode_blockIdExt;
|
|
303
|
+
}
|
|
304
|
+
export interface liteServer_getBlockHeader {
|
|
305
|
+
readonly kind: 'liteServer.getBlockHeader';
|
|
306
|
+
readonly id: tonNode_blockIdExt;
|
|
307
|
+
readonly mode: TLFlag;
|
|
308
|
+
}
|
|
309
|
+
export interface liteServer_sendMessage {
|
|
310
|
+
readonly kind: 'liteServer.sendMessage';
|
|
311
|
+
readonly body: TLBytes;
|
|
312
|
+
}
|
|
313
|
+
export interface liteServer_getAccountState {
|
|
314
|
+
readonly kind: 'liteServer.getAccountState';
|
|
315
|
+
readonly id: tonNode_blockIdExt;
|
|
316
|
+
readonly account: liteServer_accountId;
|
|
317
|
+
}
|
|
318
|
+
export interface liteServer_getAccountStatePrunned {
|
|
319
|
+
readonly kind: 'liteServer.getAccountStatePrunned';
|
|
320
|
+
readonly id: tonNode_blockIdExt;
|
|
321
|
+
readonly account: liteServer_accountId;
|
|
322
|
+
}
|
|
323
|
+
export interface liteServer_runSmcMethod {
|
|
324
|
+
readonly kind: 'liteServer.runSmcMethod';
|
|
325
|
+
readonly mode: TLFlag;
|
|
326
|
+
readonly id: tonNode_blockIdExt;
|
|
327
|
+
readonly account: liteServer_accountId;
|
|
328
|
+
readonly methodId: TLLong;
|
|
329
|
+
readonly params: TLBytes;
|
|
330
|
+
}
|
|
331
|
+
export interface liteServer_getShardInfo {
|
|
332
|
+
readonly kind: 'liteServer.getShardInfo';
|
|
333
|
+
readonly id: tonNode_blockIdExt;
|
|
334
|
+
readonly workchain: TLInt;
|
|
335
|
+
readonly shard: TLLong;
|
|
336
|
+
readonly exact: TLBool;
|
|
337
|
+
}
|
|
338
|
+
export interface liteServer_getAllShardsInfo {
|
|
339
|
+
readonly kind: 'liteServer.getAllShardsInfo';
|
|
340
|
+
readonly id: tonNode_blockIdExt;
|
|
341
|
+
}
|
|
342
|
+
export interface liteServer_getOneTransaction {
|
|
343
|
+
readonly kind: 'liteServer.getOneTransaction';
|
|
344
|
+
readonly id: tonNode_blockIdExt;
|
|
345
|
+
readonly account: liteServer_accountId;
|
|
346
|
+
readonly lt: TLLong;
|
|
347
|
+
}
|
|
348
|
+
export interface liteServer_getTransactions {
|
|
349
|
+
readonly kind: 'liteServer.getTransactions';
|
|
350
|
+
readonly count: TLFlag;
|
|
351
|
+
readonly account: liteServer_accountId;
|
|
352
|
+
readonly lt: TLLong;
|
|
353
|
+
readonly hash: TLInt256;
|
|
354
|
+
}
|
|
355
|
+
export interface liteServer_lookupBlock {
|
|
356
|
+
readonly kind: 'liteServer.lookupBlock';
|
|
357
|
+
readonly mode: TLFlag;
|
|
358
|
+
readonly id: tonNode_blockId;
|
|
359
|
+
readonly lt: TLLong | null;
|
|
360
|
+
readonly utime: TLInt | null;
|
|
361
|
+
}
|
|
362
|
+
export interface liteServer_listBlockTransactions {
|
|
363
|
+
readonly kind: 'liteServer.listBlockTransactions';
|
|
364
|
+
readonly id: tonNode_blockIdExt;
|
|
365
|
+
readonly mode: TLFlag;
|
|
366
|
+
readonly count: TLFlag;
|
|
367
|
+
readonly after: liteServer_transactionId3 | null;
|
|
368
|
+
readonly reverseOrder: TLBool | null;
|
|
369
|
+
readonly wantProof: TLBool | null;
|
|
370
|
+
}
|
|
371
|
+
export interface liteServer_listBlockTransactionsExt {
|
|
372
|
+
readonly kind: 'liteServer.listBlockTransactionsExt';
|
|
373
|
+
readonly id: tonNode_blockIdExt;
|
|
374
|
+
readonly mode: TLFlag;
|
|
375
|
+
readonly count: TLFlag;
|
|
376
|
+
readonly after: liteServer_transactionId3 | null;
|
|
377
|
+
readonly reverseOrder: TLBool | null;
|
|
378
|
+
readonly wantProof: TLBool | null;
|
|
379
|
+
}
|
|
380
|
+
export interface liteServer_getBlockProof {
|
|
381
|
+
readonly kind: 'liteServer.getBlockProof';
|
|
382
|
+
readonly mode: TLFlag;
|
|
383
|
+
readonly knownBlock: tonNode_blockIdExt;
|
|
384
|
+
readonly targetBlock: tonNode_blockIdExt | null;
|
|
385
|
+
}
|
|
386
|
+
export interface liteServer_getConfigAll {
|
|
387
|
+
readonly kind: 'liteServer.getConfigAll';
|
|
388
|
+
readonly mode: TLFlag;
|
|
389
|
+
readonly id: tonNode_blockIdExt;
|
|
390
|
+
}
|
|
391
|
+
export interface liteServer_getConfigParams {
|
|
392
|
+
readonly kind: 'liteServer.getConfigParams';
|
|
393
|
+
readonly mode: TLFlag;
|
|
394
|
+
readonly id: tonNode_blockIdExt;
|
|
395
|
+
readonly paramList: TLInt[];
|
|
396
|
+
}
|
|
397
|
+
export interface liteServer_getValidatorStats {
|
|
398
|
+
readonly kind: 'liteServer.getValidatorStats';
|
|
399
|
+
readonly mode: TLFlag;
|
|
400
|
+
readonly id: tonNode_blockIdExt;
|
|
401
|
+
readonly limit: TLInt;
|
|
402
|
+
readonly startAfter: TLInt256 | null;
|
|
403
|
+
readonly modifiedAfter: TLInt | null;
|
|
404
|
+
}
|
|
405
|
+
export interface liteServer_getLibraries {
|
|
406
|
+
readonly kind: 'liteServer.getLibraries';
|
|
407
|
+
readonly libraryList: TLInt256[];
|
|
408
|
+
}
|
|
409
|
+
export interface liteServer_getShardBlockProof {
|
|
410
|
+
readonly kind: 'liteServer.getShardBlockProof';
|
|
411
|
+
readonly id: tonNode_blockIdExt;
|
|
412
|
+
}
|
|
413
|
+
export interface liteServer_queryPrefix {
|
|
414
|
+
readonly kind: 'liteServer.queryPrefix';
|
|
415
|
+
}
|
|
416
|
+
export interface liteServer_query {
|
|
417
|
+
readonly kind: 'liteServer.query';
|
|
418
|
+
readonly data: TLBytes;
|
|
419
|
+
}
|
|
420
|
+
export interface liteServer_waitMasterchainSeqno {
|
|
421
|
+
readonly kind: 'liteServer.waitMasterchainSeqno';
|
|
422
|
+
readonly seqno: TLInt;
|
|
423
|
+
readonly timeoutMs: TLInt;
|
|
424
|
+
}
|
|
425
|
+
export declare const Functions: {
|
|
426
|
+
liteServer_getMasterchainInfo: TLFunction<liteServer_getMasterchainInfo, liteServer_masterchainInfo>;
|
|
427
|
+
liteServer_getMasterchainInfoExt: TLFunction<liteServer_getMasterchainInfoExt, liteServer_masterchainInfoExt>;
|
|
428
|
+
liteServer_getTime: TLFunction<liteServer_getTime, liteServer_currentTime>;
|
|
429
|
+
liteServer_getVersion: TLFunction<liteServer_getVersion, liteServer_version>;
|
|
430
|
+
liteServer_getBlock: TLFunction<liteServer_getBlock, liteServer_blockData>;
|
|
431
|
+
liteServer_getState: TLFunction<liteServer_getState, liteServer_blockState>;
|
|
432
|
+
liteServer_getBlockHeader: TLFunction<liteServer_getBlockHeader, liteServer_blockHeader>;
|
|
433
|
+
liteServer_sendMessage: TLFunction<liteServer_sendMessage, liteServer_sendMsgStatus>;
|
|
434
|
+
liteServer_getAccountState: TLFunction<liteServer_getAccountState, liteServer_accountState>;
|
|
435
|
+
liteServer_getAccountStatePrunned: TLFunction<liteServer_getAccountStatePrunned, liteServer_accountState>;
|
|
436
|
+
liteServer_runSmcMethod: TLFunction<liteServer_runSmcMethod, liteServer_runMethodResult>;
|
|
437
|
+
liteServer_getShardInfo: TLFunction<liteServer_getShardInfo, liteServer_shardInfo>;
|
|
438
|
+
liteServer_getAllShardsInfo: TLFunction<liteServer_getAllShardsInfo, liteServer_allShardsInfo>;
|
|
439
|
+
liteServer_getOneTransaction: TLFunction<liteServer_getOneTransaction, liteServer_transactionInfo>;
|
|
440
|
+
liteServer_getTransactions: TLFunction<liteServer_getTransactions, liteServer_transactionList>;
|
|
441
|
+
liteServer_lookupBlock: TLFunction<liteServer_lookupBlock, liteServer_blockHeader>;
|
|
442
|
+
liteServer_listBlockTransactions: TLFunction<liteServer_listBlockTransactions, liteServer_blockTransactions>;
|
|
443
|
+
liteServer_listBlockTransactionsExt: TLFunction<liteServer_listBlockTransactionsExt, liteServer_blockTransactionsExt>;
|
|
444
|
+
liteServer_getBlockProof: TLFunction<liteServer_getBlockProof, liteServer_partialBlockProof>;
|
|
445
|
+
liteServer_getConfigAll: TLFunction<liteServer_getConfigAll, liteServer_configInfo>;
|
|
446
|
+
liteServer_getConfigParams: TLFunction<liteServer_getConfigParams, liteServer_configInfo>;
|
|
447
|
+
liteServer_getValidatorStats: TLFunction<liteServer_getValidatorStats, liteServer_validatorStats>;
|
|
448
|
+
liteServer_getLibraries: TLFunction<liteServer_getLibraries, liteServer_libraryResult>;
|
|
449
|
+
liteServer_getShardBlockProof: TLFunction<liteServer_getShardBlockProof, liteServer_shardBlockProof>;
|
|
450
|
+
liteServer_queryPrefix: TLFunction<liteServer_queryPrefix, Buffer>;
|
|
451
|
+
liteServer_query: TLFunction<liteServer_query, Buffer>;
|
|
452
|
+
liteServer_waitMasterchainSeqno: TLFunction<liteServer_waitMasterchainSeqno, Buffer>;
|
|
453
|
+
};
|
|
454
|
+
export declare const Codecs: {
|
|
455
|
+
tonNode_blockId: TLCodec<tonNode_blockId>;
|
|
456
|
+
tonNode_blockIdExt: TLCodec<tonNode_blockIdExt>;
|
|
457
|
+
tonNode_zeroStateIdExt: TLCodec<tonNode_zeroStateIdExt>;
|
|
458
|
+
adnl_message_query: TLCodec<adnl_message_query>;
|
|
459
|
+
adnl_message_answer: TLCodec<adnl_message_answer>;
|
|
460
|
+
liteServer_error: TLCodec<liteServer_error>;
|
|
461
|
+
liteServer_accountId: TLCodec<liteServer_accountId>;
|
|
462
|
+
liteServer_libraryEntry: TLCodec<liteServer_libraryEntry>;
|
|
463
|
+
liteServer_masterchainInfo: TLCodec<liteServer_masterchainInfo>;
|
|
464
|
+
liteServer_masterchainInfoExt: TLCodec<liteServer_masterchainInfoExt>;
|
|
465
|
+
liteServer_currentTime: TLCodec<liteServer_currentTime>;
|
|
466
|
+
liteServer_version: TLCodec<liteServer_version>;
|
|
467
|
+
liteServer_blockData: TLCodec<liteServer_blockData>;
|
|
468
|
+
liteServer_blockState: TLCodec<liteServer_blockState>;
|
|
469
|
+
liteServer_blockHeader: TLCodec<liteServer_blockHeader>;
|
|
470
|
+
liteServer_sendMsgStatus: TLCodec<liteServer_sendMsgStatus>;
|
|
471
|
+
liteServer_accountState: TLCodec<liteServer_accountState>;
|
|
472
|
+
liteServer_runMethodResult: TLCodec<liteServer_runMethodResult>;
|
|
473
|
+
liteServer_shardInfo: TLCodec<liteServer_shardInfo>;
|
|
474
|
+
liteServer_allShardsInfo: TLCodec<liteServer_allShardsInfo>;
|
|
475
|
+
liteServer_transactionInfo: TLCodec<liteServer_transactionInfo>;
|
|
476
|
+
liteServer_transactionList: TLCodec<liteServer_transactionList>;
|
|
477
|
+
liteServer_transactionId: TLCodec<liteServer_transactionId>;
|
|
478
|
+
liteServer_transactionId3: TLCodec<liteServer_transactionId3>;
|
|
479
|
+
liteServer_blockTransactions: TLCodec<liteServer_blockTransactions>;
|
|
480
|
+
liteServer_blockTransactionsExt: TLCodec<liteServer_blockTransactionsExt>;
|
|
481
|
+
liteServer_signature: TLCodec<liteServer_signature>;
|
|
482
|
+
liteServer_signatureSet: TLCodec<liteServer_signatureSet>;
|
|
483
|
+
liteServer_blockLinkBack: TLCodec<liteServer_blockLinkBack>;
|
|
484
|
+
liteServer_blockLinkForward: TLCodec<liteServer_blockLinkForward>;
|
|
485
|
+
liteServer_partialBlockProof: TLCodec<liteServer_partialBlockProof>;
|
|
486
|
+
liteServer_configInfo: TLCodec<liteServer_configInfo>;
|
|
487
|
+
liteServer_validatorStats: TLCodec<liteServer_validatorStats>;
|
|
488
|
+
liteServer_libraryResult: TLCodec<liteServer_libraryResult>;
|
|
489
|
+
liteServer_shardBlockLink: TLCodec<liteServer_shardBlockLink>;
|
|
490
|
+
liteServer_shardBlockProof: TLCodec<liteServer_shardBlockProof>;
|
|
491
|
+
liteServer_debug_verbosity: TLCodec<liteServer_debug_verbosity>;
|
|
492
|
+
liteServer_getMasterchainInfo: TLCodec<liteServer_getMasterchainInfo>;
|
|
493
|
+
liteServer_getMasterchainInfoExt: TLCodec<liteServer_getMasterchainInfoExt>;
|
|
494
|
+
liteServer_getTime: TLCodec<liteServer_getTime>;
|
|
495
|
+
liteServer_getVersion: TLCodec<liteServer_getVersion>;
|
|
496
|
+
liteServer_getBlock: TLCodec<liteServer_getBlock>;
|
|
497
|
+
liteServer_getState: TLCodec<liteServer_getState>;
|
|
498
|
+
liteServer_getBlockHeader: TLCodec<liteServer_getBlockHeader>;
|
|
499
|
+
liteServer_sendMessage: TLCodec<liteServer_sendMessage>;
|
|
500
|
+
liteServer_getAccountState: TLCodec<liteServer_getAccountState>;
|
|
501
|
+
liteServer_getAccountStatePrunned: TLCodec<liteServer_getAccountStatePrunned>;
|
|
502
|
+
liteServer_runSmcMethod: TLCodec<liteServer_runSmcMethod>;
|
|
503
|
+
liteServer_getShardInfo: TLCodec<liteServer_getShardInfo>;
|
|
504
|
+
liteServer_getAllShardsInfo: TLCodec<liteServer_getAllShardsInfo>;
|
|
505
|
+
liteServer_getOneTransaction: TLCodec<liteServer_getOneTransaction>;
|
|
506
|
+
liteServer_getTransactions: TLCodec<liteServer_getTransactions>;
|
|
507
|
+
liteServer_lookupBlock: TLCodec<liteServer_lookupBlock>;
|
|
508
|
+
liteServer_listBlockTransactions: TLCodec<liteServer_listBlockTransactions>;
|
|
509
|
+
liteServer_listBlockTransactionsExt: TLCodec<liteServer_listBlockTransactionsExt>;
|
|
510
|
+
liteServer_getBlockProof: TLCodec<liteServer_getBlockProof>;
|
|
511
|
+
liteServer_getConfigAll: TLCodec<liteServer_getConfigAll>;
|
|
512
|
+
liteServer_getConfigParams: TLCodec<liteServer_getConfigParams>;
|
|
513
|
+
liteServer_getValidatorStats: TLCodec<liteServer_getValidatorStats>;
|
|
514
|
+
liteServer_getLibraries: TLCodec<liteServer_getLibraries>;
|
|
515
|
+
liteServer_getShardBlockProof: TLCodec<liteServer_getShardBlockProof>;
|
|
516
|
+
liteServer_queryPrefix: TLCodec<liteServer_queryPrefix>;
|
|
517
|
+
liteServer_query: TLCodec<liteServer_query>;
|
|
518
|
+
liteServer_waitMasterchainSeqno: TLCodec<liteServer_waitMasterchainSeqno>;
|
|
519
|
+
tonNode_BlockId: TLCodec<tonNode_blockId>;
|
|
520
|
+
tonNode_BlockIdExt: TLCodec<tonNode_blockIdExt>;
|
|
521
|
+
tonNode_ZeroStateIdExt: TLCodec<tonNode_zeroStateIdExt>;
|
|
522
|
+
adnl_Message: TLCodec<adnl_Message>;
|
|
523
|
+
liteServer_Error: TLCodec<liteServer_error>;
|
|
524
|
+
liteServer_AccountId: TLCodec<liteServer_accountId>;
|
|
525
|
+
liteServer_LibraryEntry: TLCodec<liteServer_libraryEntry>;
|
|
526
|
+
liteServer_MasterchainInfo: TLCodec<liteServer_masterchainInfo>;
|
|
527
|
+
liteServer_MasterchainInfoExt: TLCodec<liteServer_masterchainInfoExt>;
|
|
528
|
+
liteServer_CurrentTime: TLCodec<liteServer_currentTime>;
|
|
529
|
+
liteServer_Version: TLCodec<liteServer_version>;
|
|
530
|
+
liteServer_BlockData: TLCodec<liteServer_blockData>;
|
|
531
|
+
liteServer_BlockState: TLCodec<liteServer_blockState>;
|
|
532
|
+
liteServer_BlockHeader: TLCodec<liteServer_blockHeader>;
|
|
533
|
+
liteServer_SendMsgStatus: TLCodec<liteServer_sendMsgStatus>;
|
|
534
|
+
liteServer_AccountState: TLCodec<liteServer_accountState>;
|
|
535
|
+
liteServer_RunMethodResult: TLCodec<liteServer_runMethodResult>;
|
|
536
|
+
liteServer_ShardInfo: TLCodec<liteServer_shardInfo>;
|
|
537
|
+
liteServer_AllShardsInfo: TLCodec<liteServer_allShardsInfo>;
|
|
538
|
+
liteServer_TransactionInfo: TLCodec<liteServer_transactionInfo>;
|
|
539
|
+
liteServer_TransactionList: TLCodec<liteServer_transactionList>;
|
|
540
|
+
liteServer_TransactionId: TLCodec<liteServer_transactionId>;
|
|
541
|
+
liteServer_TransactionId3: TLCodec<liteServer_transactionId3>;
|
|
542
|
+
liteServer_BlockTransactions: TLCodec<liteServer_blockTransactions>;
|
|
543
|
+
liteServer_BlockTransactionsExt: TLCodec<liteServer_blockTransactionsExt>;
|
|
544
|
+
liteServer_Signature: TLCodec<liteServer_signature>;
|
|
545
|
+
liteServer_SignatureSet: TLCodec<liteServer_signatureSet>;
|
|
546
|
+
liteServer_BlockLink: TLCodec<liteServer_BlockLink>;
|
|
547
|
+
liteServer_PartialBlockProof: TLCodec<liteServer_partialBlockProof>;
|
|
548
|
+
liteServer_ConfigInfo: TLCodec<liteServer_configInfo>;
|
|
549
|
+
liteServer_ValidatorStats: TLCodec<liteServer_validatorStats>;
|
|
550
|
+
liteServer_LibraryResult: TLCodec<liteServer_libraryResult>;
|
|
551
|
+
liteServer_ShardBlockLink: TLCodec<liteServer_shardBlockLink>;
|
|
552
|
+
liteServer_ShardBlockProof: TLCodec<liteServer_shardBlockProof>;
|
|
553
|
+
liteServer_debug_Verbosity: TLCodec<liteServer_debug_verbosity>;
|
|
554
|
+
};
|