@fuel-ts/account 0.0.0-rc-2021-20240408141516 → 0.0.0-rc-1976-20240409133547
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.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/README.md +1 -1
- package/dist/account.d.ts +4 -5
- package/dist/account.d.ts.map +1 -1
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +1 -1
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +1 -1
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +1 -1
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +619 -869
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +609 -845
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -687
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +2 -10
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +328 -894
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/coin-quantity.d.ts +3 -3
- package/dist/providers/coin-quantity.d.ts.map +1 -1
- package/dist/providers/coin.d.ts +2 -4
- package/dist/providers/coin.d.ts.map +1 -1
- package/dist/providers/fuel-graphql-subscriber.d.ts.map +1 -1
- package/dist/providers/message.d.ts +1 -3
- package/dist/providers/message.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +34 -45
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/create-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/input.d.ts +2 -2
- package/dist/providers/transaction-request/input.d.ts.map +1 -1
- package/dist/providers/transaction-request/script-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/transaction-request.d.ts +29 -9
- package/dist/providers/transaction-request/transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/utils.d.ts +0 -3
- package/dist/providers/transaction-request/utils.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/providers/transaction-summary/assemble-transaction-summary.d.ts +0 -2
- package/dist/providers/transaction-summary/assemble-transaction-summary.d.ts.map +1 -1
- package/dist/providers/transaction-summary/calculate-transaction-fee.d.ts +2 -3
- package/dist/providers/transaction-summary/calculate-transaction-fee.d.ts.map +1 -1
- package/dist/providers/transaction-summary/get-transaction-summary.d.ts.map +1 -1
- package/dist/providers/utils/gas.d.ts +2 -8
- package/dist/providers/utils/gas.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +1120 -1584
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +606 -821
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +464 -679
- package/dist/test-utils.mjs.map +1 -1
- package/dist/wallet/base-wallet-unlocked.d.ts.map +1 -1
- package/package.json +17 -17
@@ -32,7 +32,6 @@ export type Scalars = {
|
|
32
32
|
TransactionId: string;
|
33
33
|
TxPointer: any;
|
34
34
|
U8: any;
|
35
|
-
U16: any;
|
36
35
|
U32: any;
|
37
36
|
U64: string;
|
38
37
|
UtxoId: string;
|
@@ -68,7 +67,6 @@ export type GqlBlock = {
|
|
68
67
|
__typename: 'Block';
|
69
68
|
consensus: GqlConsensus;
|
70
69
|
header: GqlHeader;
|
71
|
-
height: Scalars['U32'];
|
72
70
|
id: Scalars['BlockId'];
|
73
71
|
transactions: Array<GqlTransaction>;
|
74
72
|
};
|
@@ -89,7 +87,6 @@ export type GqlBlockEdge = {
|
|
89
87
|
/** The item at the end of the edge */
|
90
88
|
node: GqlBlock;
|
91
89
|
};
|
92
|
-
/** Breakpoint, defined as a tuple of contract ID and relative PC offset inside it */
|
93
90
|
export type GqlBreakpoint = {
|
94
91
|
contract: Scalars['ContractId'];
|
95
92
|
pc: Scalars['U64'];
|
@@ -114,9 +111,10 @@ export type GqlCoin = {
|
|
114
111
|
assetId: Scalars['AssetId'];
|
115
112
|
/** TxPointer - the height of the block this coin was created in */
|
116
113
|
blockCreated: Scalars['U32'];
|
114
|
+
maturity: Scalars['U32'];
|
117
115
|
owner: Scalars['Address'];
|
118
116
|
/** TxPointer - the index of the transaction that created this coin */
|
119
|
-
txCreatedIdx: Scalars['
|
117
|
+
txCreatedIdx: Scalars['U64'];
|
120
118
|
utxoId: Scalars['UtxoId'];
|
121
119
|
};
|
122
120
|
export type GqlCoinConnection = {
|
@@ -154,18 +152,14 @@ export type GqlConsensus = GqlGenesis | GqlPoAConsensus;
|
|
154
152
|
export type GqlConsensusParameters = {
|
155
153
|
__typename: 'ConsensusParameters';
|
156
154
|
baseAssetId: Scalars['AssetId'];
|
157
|
-
blockGasLimit: Scalars['U64'];
|
158
155
|
chainId: Scalars['U64'];
|
159
156
|
contractParams: GqlContractParameters;
|
160
157
|
feeParams: GqlFeeParameters;
|
161
158
|
gasCosts: GqlGasCosts;
|
162
159
|
predicateParams: GqlPredicateParameters;
|
163
|
-
privilegedAddress: Scalars['Address'];
|
164
160
|
scriptParams: GqlScriptParameters;
|
165
161
|
txParams: GqlTxParameters;
|
166
|
-
version: GqlConsensusParametersVersion;
|
167
162
|
};
|
168
|
-
export type GqlConsensusParametersVersion = GqlVersion;
|
169
163
|
export type GqlContract = {
|
170
164
|
__typename: 'Contract';
|
171
165
|
bytecode: Scalars['HexString'];
|
@@ -201,45 +195,21 @@ export type GqlContractBalanceFilterInput = {
|
|
201
195
|
};
|
202
196
|
export type GqlContractCreated = {
|
203
197
|
__typename: 'ContractCreated';
|
204
|
-
contract:
|
198
|
+
contract: GqlContract;
|
205
199
|
stateRoot: Scalars['Bytes32'];
|
206
200
|
};
|
207
201
|
export type GqlContractOutput = {
|
208
202
|
__typename: 'ContractOutput';
|
209
203
|
balanceRoot: Scalars['Bytes32'];
|
210
|
-
inputIndex: Scalars['
|
204
|
+
inputIndex: Scalars['Int'];
|
211
205
|
stateRoot: Scalars['Bytes32'];
|
212
206
|
};
|
213
207
|
export type GqlContractParameters = {
|
214
208
|
__typename: 'ContractParameters';
|
215
209
|
contractMaxSize: Scalars['U64'];
|
216
210
|
maxStorageSlots: Scalars['U64'];
|
217
|
-
version: GqlContractParametersVersion;
|
218
211
|
};
|
219
|
-
export type GqlContractParametersVersion = GqlVersion;
|
220
212
|
export type GqlDependentCost = GqlHeavyOperation | GqlLightOperation;
|
221
|
-
export type GqlDryRunFailureStatus = {
|
222
|
-
__typename: 'DryRunFailureStatus';
|
223
|
-
programState?: Maybe<GqlProgramState>;
|
224
|
-
reason: Scalars['String'];
|
225
|
-
receipts: Array<GqlReceipt>;
|
226
|
-
};
|
227
|
-
export type GqlDryRunSuccessStatus = {
|
228
|
-
__typename: 'DryRunSuccessStatus';
|
229
|
-
programState?: Maybe<GqlProgramState>;
|
230
|
-
receipts: Array<GqlReceipt>;
|
231
|
-
};
|
232
|
-
export type GqlDryRunTransactionExecutionStatus = {
|
233
|
-
__typename: 'DryRunTransactionExecutionStatus';
|
234
|
-
id: Scalars['TransactionId'];
|
235
|
-
receipts: Array<GqlReceipt>;
|
236
|
-
status: GqlDryRunTransactionStatus;
|
237
|
-
};
|
238
|
-
export type GqlDryRunTransactionStatus = GqlDryRunFailureStatus | GqlDryRunSuccessStatus;
|
239
|
-
export type GqlEstimateGasPrice = {
|
240
|
-
__typename: 'EstimateGasPrice';
|
241
|
-
gasPrice: Scalars['U64'];
|
242
|
-
};
|
243
213
|
export type GqlExcludeInput = {
|
244
214
|
/** Messages to exclude from the selection. */
|
245
215
|
messages: Array<Scalars['Nonce']>;
|
@@ -259,9 +229,7 @@ export type GqlFeeParameters = {
|
|
259
229
|
__typename: 'FeeParameters';
|
260
230
|
gasPerByte: Scalars['U64'];
|
261
231
|
gasPriceFactor: Scalars['U64'];
|
262
|
-
version: GqlFeeParametersVersion;
|
263
232
|
};
|
264
|
-
export type GqlFeeParametersVersion = GqlVersion;
|
265
233
|
export type GqlGasCosts = {
|
266
234
|
__typename: 'GasCosts';
|
267
235
|
add: Scalars['U64'];
|
@@ -279,7 +247,7 @@ export type GqlGasCosts = {
|
|
279
247
|
cfei: Scalars['U64'];
|
280
248
|
cfsi: Scalars['U64'];
|
281
249
|
contractRoot: GqlDependentCost;
|
282
|
-
croo:
|
250
|
+
croo: Scalars['U64'];
|
283
251
|
csiz: GqlDependentCost;
|
284
252
|
div: Scalars['U64'];
|
285
253
|
divi: Scalars['U64'];
|
@@ -357,7 +325,6 @@ export type GqlGasCosts = {
|
|
357
325
|
time: Scalars['U64'];
|
358
326
|
tr: Scalars['U64'];
|
359
327
|
tro: Scalars['U64'];
|
360
|
-
version: GqlGasCostsVersion;
|
361
328
|
vmInitialization: GqlDependentCost;
|
362
329
|
wdam: Scalars['U64'];
|
363
330
|
wdcm: Scalars['U64'];
|
@@ -376,7 +343,6 @@ export type GqlGasCosts = {
|
|
376
343
|
xor: Scalars['U64'];
|
377
344
|
xori: Scalars['U64'];
|
378
345
|
};
|
379
|
-
export type GqlGasCostsVersion = GqlVersion;
|
380
346
|
export type GqlGenesis = {
|
381
347
|
__typename: 'Genesis';
|
382
348
|
/**
|
@@ -395,24 +361,18 @@ export type GqlHeader = {
|
|
395
361
|
__typename: 'Header';
|
396
362
|
/** Hash of the application header. */
|
397
363
|
applicationHash: Scalars['Bytes32'];
|
398
|
-
/** The version of the consensus parameters used to create this block. */
|
399
|
-
consensusParametersVersion: Scalars['U32'];
|
400
364
|
/** The layer 1 height of messages and events to include since the last layer 1 block number. */
|
401
365
|
daHeight: Scalars['U64'];
|
402
|
-
/** Merkle root of inbox events in this block. */
|
403
|
-
eventInboxRoot: Scalars['Bytes32'];
|
404
366
|
/** Fuel block height. */
|
405
367
|
height: Scalars['U32'];
|
406
368
|
/** Hash of the header */
|
407
369
|
id: Scalars['BlockId'];
|
408
|
-
/** Merkle root of message receipts in this block. */
|
409
|
-
messageOutboxRoot: Scalars['Bytes32'];
|
410
370
|
/** Number of message receipts in this block. */
|
411
371
|
messageReceiptCount: Scalars['U64'];
|
372
|
+
/** Merkle root of message receipts in this block. */
|
373
|
+
messageReceiptRoot: Scalars['Bytes32'];
|
412
374
|
/** Merkle root of all previous block header hashes. */
|
413
375
|
prevRoot: Scalars['Bytes32'];
|
414
|
-
/** The version of the state transition bytecode used to create this block. */
|
415
|
-
stateTransitionBytecodeVersion: Scalars['U32'];
|
416
376
|
/** The block producer time. */
|
417
377
|
time: Scalars['Tai64Timestamp'];
|
418
378
|
/** Number of transactions in this block. */
|
@@ -430,6 +390,7 @@ export type GqlInputCoin = {
|
|
430
390
|
__typename: 'InputCoin';
|
431
391
|
amount: Scalars['U64'];
|
432
392
|
assetId: Scalars['AssetId'];
|
393
|
+
maturity: Scalars['U32'];
|
433
394
|
owner: Scalars['Address'];
|
434
395
|
predicate: Scalars['HexString'];
|
435
396
|
predicateData: Scalars['HexString'];
|
@@ -441,7 +402,7 @@ export type GqlInputCoin = {
|
|
441
402
|
export type GqlInputContract = {
|
442
403
|
__typename: 'InputContract';
|
443
404
|
balanceRoot: Scalars['Bytes32'];
|
444
|
-
|
405
|
+
contract: GqlContract;
|
445
406
|
stateRoot: Scalars['Bytes32'];
|
446
407
|
txPointer: Scalars['TxPointer'];
|
447
408
|
utxoId: Scalars['UtxoId'];
|
@@ -456,12 +417,7 @@ export type GqlInputMessage = {
|
|
456
417
|
predicateGasUsed: Scalars['U64'];
|
457
418
|
recipient: Scalars['Address'];
|
458
419
|
sender: Scalars['Address'];
|
459
|
-
witnessIndex: Scalars['
|
460
|
-
};
|
461
|
-
export type GqlLatestGasPrice = {
|
462
|
-
__typename: 'LatestGasPrice';
|
463
|
-
blockHeight: Scalars['U32'];
|
464
|
-
gasPrice: Scalars['U64'];
|
420
|
+
witnessIndex: Scalars['Int'];
|
465
421
|
};
|
466
422
|
export type GqlLightOperation = {
|
467
423
|
__typename: 'LightOperation';
|
@@ -531,16 +487,10 @@ export type GqlMessageStatus = {
|
|
531
487
|
};
|
532
488
|
export type GqlMutation = {
|
533
489
|
__typename: 'Mutation';
|
534
|
-
/**
|
535
|
-
* Resume execution of the VM instance after a breakpoint.
|
536
|
-
* Runs until the next breakpoint or until the transaction completes.
|
537
|
-
*/
|
538
490
|
continueTx: GqlRunResult;
|
539
|
-
/** Execute a dry-run of
|
540
|
-
dryRun: Array<
|
541
|
-
/** End debugger session. */
|
491
|
+
/** Execute a dry-run of the transaction using a fork of current state, no changes are committed. */
|
492
|
+
dryRun: Array<GqlReceipt>;
|
542
493
|
endSession: Scalars['Boolean'];
|
543
|
-
/** Execute a single fuel-asm instruction. */
|
544
494
|
execute: Scalars['Boolean'];
|
545
495
|
/**
|
546
496
|
* Sequentially produces `blocks_to_produce` blocks. The first block starts with
|
@@ -549,23 +499,10 @@ export type GqlMutation = {
|
|
549
499
|
* them. The `start_timestamp` is the timestamp in seconds.
|
550
500
|
*/
|
551
501
|
produceBlocks: Scalars['U32'];
|
552
|
-
/** Reset the VM instance to the initial state. */
|
553
502
|
reset: Scalars['Boolean'];
|
554
|
-
/** Set a breakpoint for a VM instance. */
|
555
503
|
setBreakpoint: Scalars['Boolean'];
|
556
|
-
/** Set single-stepping mode for the VM instance. */
|
557
504
|
setSingleStepping: Scalars['Boolean'];
|
558
|
-
/**
|
559
|
-
* Initialize a new debugger session, returning its ID.
|
560
|
-
* A new VM instance is spawned for each session.
|
561
|
-
* The session is run in a separate database transaction,
|
562
|
-
* on top of the most recent node state.
|
563
|
-
*/
|
564
505
|
startSession: Scalars['ID'];
|
565
|
-
/**
|
566
|
-
* Run a single transaction in given session until it
|
567
|
-
* hits a breakpoint or completes.
|
568
|
-
*/
|
569
506
|
startTx: GqlRunResult;
|
570
507
|
/**
|
571
508
|
* Submits transaction to the `TxPool`.
|
@@ -578,7 +515,7 @@ export type GqlMutationContinueTxArgs = {
|
|
578
515
|
id: Scalars['ID'];
|
579
516
|
};
|
580
517
|
export type GqlMutationDryRunArgs = {
|
581
|
-
|
518
|
+
tx: Scalars['HexString'];
|
582
519
|
utxoValidation?: InputMaybe<Scalars['Boolean']>;
|
583
520
|
};
|
584
521
|
export type GqlMutationEndSessionArgs = {
|
@@ -614,6 +551,7 @@ export type GqlNodeInfo = {
|
|
614
551
|
__typename: 'NodeInfo';
|
615
552
|
maxDepth: Scalars['U64'];
|
616
553
|
maxTx: Scalars['U64'];
|
554
|
+
minGasPrice: Scalars['U64'];
|
617
555
|
nodeVersion: Scalars['String'];
|
618
556
|
peers: Array<GqlPeerInfo>;
|
619
557
|
utxoValidation: Scalars['Boolean'];
|
@@ -663,9 +601,9 @@ export type GqlPoAConsensus = {
|
|
663
601
|
};
|
664
602
|
export type GqlPolicies = {
|
665
603
|
__typename: 'Policies';
|
604
|
+
gasPrice?: Maybe<Scalars['U64']>;
|
666
605
|
maturity?: Maybe<Scalars['U32']>;
|
667
606
|
maxFee?: Maybe<Scalars['U64']>;
|
668
|
-
tip?: Maybe<Scalars['U64']>;
|
669
607
|
witnessLimit?: Maybe<Scalars['U64']>;
|
670
608
|
};
|
671
609
|
export type GqlPredicateParameters = {
|
@@ -674,9 +612,7 @@ export type GqlPredicateParameters = {
|
|
674
612
|
maxMessageDataLength: Scalars['U64'];
|
675
613
|
maxPredicateDataLength: Scalars['U64'];
|
676
614
|
maxPredicateLength: Scalars['U64'];
|
677
|
-
version: GqlPredicateParametersVersion;
|
678
615
|
};
|
679
|
-
export type GqlPredicateParametersVersion = GqlVersion;
|
680
616
|
export type GqlProgramState = {
|
681
617
|
__typename: 'ProgramState';
|
682
618
|
data: Scalars['HexString'];
|
@@ -709,20 +645,15 @@ export type GqlQuery = {
|
|
709
645
|
contract?: Maybe<GqlContract>;
|
710
646
|
contractBalance: GqlContractBalance;
|
711
647
|
contractBalances: GqlContractBalanceConnection;
|
712
|
-
estimateGasPrice: GqlEstimateGasPrice;
|
713
648
|
/** Estimate the predicate gas for the provided transaction */
|
714
649
|
estimatePredicates: GqlTransaction;
|
715
650
|
/** Returns true when the GraphQL API is serving requests. */
|
716
651
|
health: Scalars['Boolean'];
|
717
|
-
latestGasPrice: GqlLatestGasPrice;
|
718
|
-
/** Read read a range of memory bytes. */
|
719
652
|
memory: Scalars['String'];
|
720
|
-
message?: Maybe<GqlMessage>;
|
721
653
|
messageProof?: Maybe<GqlMessageProof>;
|
722
654
|
messageStatus: GqlMessageStatus;
|
723
655
|
messages: GqlMessageConnection;
|
724
656
|
nodeInfo: GqlNodeInfo;
|
725
|
-
/** Read register value by index. */
|
726
657
|
register: Scalars['U64'];
|
727
658
|
transaction?: Maybe<GqlTransaction>;
|
728
659
|
transactions: GqlTransactionConnection;
|
@@ -778,9 +709,6 @@ export type GqlQueryContractBalancesArgs = {
|
|
778
709
|
first?: InputMaybe<Scalars['Int']>;
|
779
710
|
last?: InputMaybe<Scalars['Int']>;
|
780
711
|
};
|
781
|
-
export type GqlQueryEstimateGasPriceArgs = {
|
782
|
-
blockHorizon?: InputMaybe<Scalars['U32']>;
|
783
|
-
};
|
784
712
|
export type GqlQueryEstimatePredicatesArgs = {
|
785
713
|
tx: Scalars['HexString'];
|
786
714
|
};
|
@@ -789,9 +717,6 @@ export type GqlQueryMemoryArgs = {
|
|
789
717
|
size: Scalars['U32'];
|
790
718
|
start: Scalars['U32'];
|
791
719
|
};
|
792
|
-
export type GqlQueryMessageArgs = {
|
793
|
-
nonce: Scalars['Nonce'];
|
794
|
-
};
|
795
720
|
export type GqlQueryMessageProofArgs = {
|
796
721
|
commitBlockHeight?: InputMaybe<Scalars['U32']>;
|
797
722
|
commitBlockId?: InputMaybe<Scalars['BlockId']>;
|
@@ -832,13 +757,12 @@ export type GqlReceipt = {
|
|
832
757
|
__typename: 'Receipt';
|
833
758
|
amount?: Maybe<Scalars['U64']>;
|
834
759
|
assetId?: Maybe<Scalars['AssetId']>;
|
835
|
-
|
760
|
+
contract?: Maybe<GqlContract>;
|
836
761
|
contractId?: Maybe<Scalars['ContractId']>;
|
837
762
|
data?: Maybe<Scalars['HexString']>;
|
838
763
|
digest?: Maybe<Scalars['Bytes32']>;
|
839
764
|
gas?: Maybe<Scalars['U64']>;
|
840
765
|
gasUsed?: Maybe<Scalars['U64']>;
|
841
|
-
id?: Maybe<Scalars['ContractId']>;
|
842
766
|
is?: Maybe<Scalars['U64']>;
|
843
767
|
len?: Maybe<Scalars['U64']>;
|
844
768
|
nonce?: Maybe<Scalars['Nonce']>;
|
@@ -856,7 +780,7 @@ export type GqlReceipt = {
|
|
856
780
|
result?: Maybe<Scalars['U64']>;
|
857
781
|
sender?: Maybe<Scalars['Address']>;
|
858
782
|
subId?: Maybe<Scalars['Bytes32']>;
|
859
|
-
to?: Maybe<
|
783
|
+
to?: Maybe<GqlContract>;
|
860
784
|
toAddress?: Maybe<Scalars['Address']>;
|
861
785
|
val?: Maybe<Scalars['U64']>;
|
862
786
|
};
|
@@ -896,9 +820,7 @@ export type GqlScriptParameters = {
|
|
896
820
|
__typename: 'ScriptParameters';
|
897
821
|
maxScriptDataLength: Scalars['U64'];
|
898
822
|
maxScriptLength: Scalars['U64'];
|
899
|
-
version: GqlScriptParametersVersion;
|
900
823
|
};
|
901
|
-
export type GqlScriptParametersVersion = GqlVersion;
|
902
824
|
export type GqlSpendQueryElementInput = {
|
903
825
|
/** Target amount for the query. */
|
904
826
|
amount: Scalars['U64'];
|
@@ -951,11 +873,13 @@ export type GqlSuccessStatus = {
|
|
951
873
|
};
|
952
874
|
export type GqlTransaction = {
|
953
875
|
__typename: 'Transaction';
|
954
|
-
|
876
|
+
bytecodeLength?: Maybe<Scalars['U64']>;
|
877
|
+
bytecodeWitnessIndex?: Maybe<Scalars['Int']>;
|
878
|
+
gasPrice?: Maybe<Scalars['U64']>;
|
955
879
|
id: Scalars['TransactionId'];
|
956
880
|
inputAssetIds?: Maybe<Array<Scalars['AssetId']>>;
|
957
881
|
inputContract?: Maybe<GqlInputContract>;
|
958
|
-
inputContracts?: Maybe<Array<
|
882
|
+
inputContracts?: Maybe<Array<GqlContract>>;
|
959
883
|
inputs?: Maybe<Array<GqlInput>>;
|
960
884
|
isCreate: Scalars['Boolean'];
|
961
885
|
isMint: Scalars['Boolean'];
|
@@ -963,12 +887,12 @@ export type GqlTransaction = {
|
|
963
887
|
maturity?: Maybe<Scalars['U32']>;
|
964
888
|
mintAmount?: Maybe<Scalars['U64']>;
|
965
889
|
mintAssetId?: Maybe<Scalars['AssetId']>;
|
966
|
-
mintGasPrice?: Maybe<Scalars['U64']>;
|
967
890
|
outputContract?: Maybe<GqlContractOutput>;
|
968
891
|
outputs: Array<GqlOutput>;
|
969
892
|
policies?: Maybe<GqlPolicies>;
|
970
893
|
/** Return the transaction bytes using canonical encoding */
|
971
894
|
rawPayload: Scalars['HexString'];
|
895
|
+
receipts?: Maybe<Array<GqlReceipt>>;
|
972
896
|
receiptsRoot?: Maybe<Scalars['Bytes32']>;
|
973
897
|
salt?: Maybe<Scalars['Salt']>;
|
974
898
|
script?: Maybe<Scalars['HexString']>;
|
@@ -1000,23 +924,17 @@ export type GqlTransactionStatus = GqlFailureStatus | GqlSqueezedOutStatus | Gql
|
|
1000
924
|
export type GqlTxParameters = {
|
1001
925
|
__typename: 'TxParameters';
|
1002
926
|
maxGasPerTx: Scalars['U64'];
|
1003
|
-
maxInputs: Scalars['
|
1004
|
-
maxOutputs: Scalars['
|
927
|
+
maxInputs: Scalars['U8'];
|
928
|
+
maxOutputs: Scalars['U8'];
|
1005
929
|
maxSize: Scalars['U64'];
|
1006
930
|
maxWitnesses: Scalars['U32'];
|
1007
|
-
version: GqlTxParametersVersion;
|
1008
931
|
};
|
1009
|
-
export type GqlTxParametersVersion = GqlVersion;
|
1010
932
|
export type GqlVariableOutput = {
|
1011
933
|
__typename: 'VariableOutput';
|
1012
934
|
amount: Scalars['U64'];
|
1013
935
|
assetId: Scalars['AssetId'];
|
1014
936
|
to: Scalars['Address'];
|
1015
937
|
};
|
1016
|
-
export type GqlVersion = {
|
1017
|
-
__typename: 'Version';
|
1018
|
-
value: Scalars['U8'];
|
1019
|
-
};
|
1020
938
|
type GqlTransactionStatusFragment_FailureStatus_Fragment = {
|
1021
939
|
__typename: 'FailureStatus';
|
1022
940
|
time: string;
|
@@ -1026,37 +944,6 @@ type GqlTransactionStatusFragment_FailureStatus_Fragment = {
|
|
1026
944
|
__typename: 'Block';
|
1027
945
|
id: string;
|
1028
946
|
};
|
1029
|
-
receipts: Array<{
|
1030
|
-
__typename: 'Receipt';
|
1031
|
-
id?: string | null;
|
1032
|
-
pc?: string | null;
|
1033
|
-
is?: string | null;
|
1034
|
-
to?: string | null;
|
1035
|
-
toAddress?: string | null;
|
1036
|
-
amount?: string | null;
|
1037
|
-
assetId?: string | null;
|
1038
|
-
gas?: string | null;
|
1039
|
-
param1?: string | null;
|
1040
|
-
param2?: string | null;
|
1041
|
-
val?: string | null;
|
1042
|
-
ptr?: string | null;
|
1043
|
-
digest?: string | null;
|
1044
|
-
reason?: string | null;
|
1045
|
-
ra?: string | null;
|
1046
|
-
rb?: string | null;
|
1047
|
-
rc?: string | null;
|
1048
|
-
rd?: string | null;
|
1049
|
-
len?: string | null;
|
1050
|
-
receiptType: GqlReceiptType;
|
1051
|
-
result?: string | null;
|
1052
|
-
gasUsed?: string | null;
|
1053
|
-
data?: string | null;
|
1054
|
-
sender?: string | null;
|
1055
|
-
recipient?: string | null;
|
1056
|
-
nonce?: string | null;
|
1057
|
-
contractId?: string | null;
|
1058
|
-
subId?: string | null;
|
1059
|
-
}>;
|
1060
947
|
};
|
1061
948
|
type GqlTransactionStatusFragment_SqueezedOutStatus_Fragment = {
|
1062
949
|
__typename: 'SqueezedOutStatus';
|
@@ -1076,12 +963,22 @@ type GqlTransactionStatusFragment_SuccessStatus_Fragment = {
|
|
1076
963
|
__typename: 'Block';
|
1077
964
|
id: string;
|
1078
965
|
};
|
1079
|
-
|
966
|
+
programState?: {
|
967
|
+
__typename: 'ProgramState';
|
968
|
+
returnType: GqlReturnType;
|
969
|
+
data: string;
|
970
|
+
} | null;
|
971
|
+
};
|
972
|
+
export type GqlTransactionStatusFragmentFragment = GqlTransactionStatusFragment_FailureStatus_Fragment | GqlTransactionStatusFragment_SqueezedOutStatus_Fragment | GqlTransactionStatusFragment_SubmittedStatus_Fragment | GqlTransactionStatusFragment_SuccessStatus_Fragment;
|
973
|
+
export type GqlTransactionFragmentFragment = {
|
974
|
+
__typename: 'Transaction';
|
975
|
+
id: string;
|
976
|
+
rawPayload: string;
|
977
|
+
gasPrice?: string | null;
|
978
|
+
receipts?: Array<{
|
1080
979
|
__typename: 'Receipt';
|
1081
|
-
id?: string | null;
|
1082
980
|
pc?: string | null;
|
1083
981
|
is?: string | null;
|
1084
|
-
to?: string | null;
|
1085
982
|
toAddress?: string | null;
|
1086
983
|
amount?: string | null;
|
1087
984
|
assetId?: string | null;
|
@@ -1106,18 +1003,15 @@ type GqlTransactionStatusFragment_SuccessStatus_Fragment = {
|
|
1106
1003
|
nonce?: string | null;
|
1107
1004
|
contractId?: string | null;
|
1108
1005
|
subId?: string | null;
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
__typename: 'Transaction';
|
1119
|
-
id: string;
|
1120
|
-
rawPayload: string;
|
1006
|
+
contract?: {
|
1007
|
+
__typename: 'Contract';
|
1008
|
+
id: string;
|
1009
|
+
} | null;
|
1010
|
+
to?: {
|
1011
|
+
__typename: 'Contract';
|
1012
|
+
id: string;
|
1013
|
+
} | null;
|
1014
|
+
}> | null;
|
1121
1015
|
status?: {
|
1122
1016
|
__typename: 'FailureStatus';
|
1123
1017
|
time: string;
|
@@ -1127,37 +1021,6 @@ export type GqlTransactionFragmentFragment = {
|
|
1127
1021
|
__typename: 'Block';
|
1128
1022
|
id: string;
|
1129
1023
|
};
|
1130
|
-
receipts: Array<{
|
1131
|
-
__typename: 'Receipt';
|
1132
|
-
id?: string | null;
|
1133
|
-
pc?: string | null;
|
1134
|
-
is?: string | null;
|
1135
|
-
to?: string | null;
|
1136
|
-
toAddress?: string | null;
|
1137
|
-
amount?: string | null;
|
1138
|
-
assetId?: string | null;
|
1139
|
-
gas?: string | null;
|
1140
|
-
param1?: string | null;
|
1141
|
-
param2?: string | null;
|
1142
|
-
val?: string | null;
|
1143
|
-
ptr?: string | null;
|
1144
|
-
digest?: string | null;
|
1145
|
-
reason?: string | null;
|
1146
|
-
ra?: string | null;
|
1147
|
-
rb?: string | null;
|
1148
|
-
rc?: string | null;
|
1149
|
-
rd?: string | null;
|
1150
|
-
len?: string | null;
|
1151
|
-
receiptType: GqlReceiptType;
|
1152
|
-
result?: string | null;
|
1153
|
-
gasUsed?: string | null;
|
1154
|
-
data?: string | null;
|
1155
|
-
sender?: string | null;
|
1156
|
-
recipient?: string | null;
|
1157
|
-
nonce?: string | null;
|
1158
|
-
contractId?: string | null;
|
1159
|
-
subId?: string | null;
|
1160
|
-
}>;
|
1161
1024
|
} | {
|
1162
1025
|
__typename: 'SqueezedOutStatus';
|
1163
1026
|
reason: string;
|
@@ -1174,37 +1037,6 @@ export type GqlTransactionFragmentFragment = {
|
|
1174
1037
|
__typename: 'Block';
|
1175
1038
|
id: string;
|
1176
1039
|
};
|
1177
|
-
receipts: Array<{
|
1178
|
-
__typename: 'Receipt';
|
1179
|
-
id?: string | null;
|
1180
|
-
pc?: string | null;
|
1181
|
-
is?: string | null;
|
1182
|
-
to?: string | null;
|
1183
|
-
toAddress?: string | null;
|
1184
|
-
amount?: string | null;
|
1185
|
-
assetId?: string | null;
|
1186
|
-
gas?: string | null;
|
1187
|
-
param1?: string | null;
|
1188
|
-
param2?: string | null;
|
1189
|
-
val?: string | null;
|
1190
|
-
ptr?: string | null;
|
1191
|
-
digest?: string | null;
|
1192
|
-
reason?: string | null;
|
1193
|
-
ra?: string | null;
|
1194
|
-
rb?: string | null;
|
1195
|
-
rc?: string | null;
|
1196
|
-
rd?: string | null;
|
1197
|
-
len?: string | null;
|
1198
|
-
receiptType: GqlReceiptType;
|
1199
|
-
result?: string | null;
|
1200
|
-
gasUsed?: string | null;
|
1201
|
-
data?: string | null;
|
1202
|
-
sender?: string | null;
|
1203
|
-
recipient?: string | null;
|
1204
|
-
nonce?: string | null;
|
1205
|
-
contractId?: string | null;
|
1206
|
-
subId?: string | null;
|
1207
|
-
}>;
|
1208
1040
|
programState?: {
|
1209
1041
|
__typename: 'ProgramState';
|
1210
1042
|
returnType: GqlReturnType;
|
@@ -1236,29 +1068,10 @@ export type GqlTransactionEstimatePredicatesFragmentFragment = {
|
|
1236
1068
|
predicateGasUsed: string;
|
1237
1069
|
}> | null;
|
1238
1070
|
};
|
1239
|
-
export type GqlDryRunFailureStatusFragmentFragment = {
|
1240
|
-
__typename: 'DryRunFailureStatus';
|
1241
|
-
reason: string;
|
1242
|
-
programState?: {
|
1243
|
-
__typename: 'ProgramState';
|
1244
|
-
returnType: GqlReturnType;
|
1245
|
-
data: string;
|
1246
|
-
} | null;
|
1247
|
-
};
|
1248
|
-
export type GqlDryRunSuccessStatusFragmentFragment = {
|
1249
|
-
__typename: 'DryRunSuccessStatus';
|
1250
|
-
programState?: {
|
1251
|
-
__typename: 'ProgramState';
|
1252
|
-
returnType: GqlReturnType;
|
1253
|
-
data: string;
|
1254
|
-
} | null;
|
1255
|
-
};
|
1256
1071
|
export type GqlReceiptFragmentFragment = {
|
1257
1072
|
__typename: 'Receipt';
|
1258
|
-
id?: string | null;
|
1259
1073
|
pc?: string | null;
|
1260
1074
|
is?: string | null;
|
1261
|
-
to?: string | null;
|
1262
1075
|
toAddress?: string | null;
|
1263
1076
|
amount?: string | null;
|
1264
1077
|
assetId?: string | null;
|
@@ -1283,82 +1096,21 @@ export type GqlReceiptFragmentFragment = {
|
|
1283
1096
|
nonce?: string | null;
|
1284
1097
|
contractId?: string | null;
|
1285
1098
|
subId?: string | null;
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
reason: string;
|
1290
|
-
programState?: {
|
1291
|
-
__typename: 'ProgramState';
|
1292
|
-
returnType: GqlReturnType;
|
1293
|
-
data: string;
|
1099
|
+
contract?: {
|
1100
|
+
__typename: 'Contract';
|
1101
|
+
id: string;
|
1294
1102
|
} | null;
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
programState?: {
|
1299
|
-
__typename: 'ProgramState';
|
1300
|
-
returnType: GqlReturnType;
|
1301
|
-
data: string;
|
1103
|
+
to?: {
|
1104
|
+
__typename: 'Contract';
|
1105
|
+
id: string;
|
1302
1106
|
} | null;
|
1303
1107
|
};
|
1304
|
-
export type GqlDryRunTransactionStatusFragmentFragment = GqlDryRunTransactionStatusFragment_DryRunFailureStatus_Fragment | GqlDryRunTransactionStatusFragment_DryRunSuccessStatus_Fragment;
|
1305
|
-
export type GqlDryRunTransactionExecutionStatusFragmentFragment = {
|
1306
|
-
__typename: 'DryRunTransactionExecutionStatus';
|
1307
|
-
id: string;
|
1308
|
-
status: {
|
1309
|
-
__typename: 'DryRunFailureStatus';
|
1310
|
-
reason: string;
|
1311
|
-
programState?: {
|
1312
|
-
__typename: 'ProgramState';
|
1313
|
-
returnType: GqlReturnType;
|
1314
|
-
data: string;
|
1315
|
-
} | null;
|
1316
|
-
} | {
|
1317
|
-
__typename: 'DryRunSuccessStatus';
|
1318
|
-
programState?: {
|
1319
|
-
__typename: 'ProgramState';
|
1320
|
-
returnType: GqlReturnType;
|
1321
|
-
data: string;
|
1322
|
-
} | null;
|
1323
|
-
};
|
1324
|
-
receipts: Array<{
|
1325
|
-
__typename: 'Receipt';
|
1326
|
-
id?: string | null;
|
1327
|
-
pc?: string | null;
|
1328
|
-
is?: string | null;
|
1329
|
-
to?: string | null;
|
1330
|
-
toAddress?: string | null;
|
1331
|
-
amount?: string | null;
|
1332
|
-
assetId?: string | null;
|
1333
|
-
gas?: string | null;
|
1334
|
-
param1?: string | null;
|
1335
|
-
param2?: string | null;
|
1336
|
-
val?: string | null;
|
1337
|
-
ptr?: string | null;
|
1338
|
-
digest?: string | null;
|
1339
|
-
reason?: string | null;
|
1340
|
-
ra?: string | null;
|
1341
|
-
rb?: string | null;
|
1342
|
-
rc?: string | null;
|
1343
|
-
rd?: string | null;
|
1344
|
-
len?: string | null;
|
1345
|
-
receiptType: GqlReceiptType;
|
1346
|
-
result?: string | null;
|
1347
|
-
gasUsed?: string | null;
|
1348
|
-
data?: string | null;
|
1349
|
-
sender?: string | null;
|
1350
|
-
recipient?: string | null;
|
1351
|
-
nonce?: string | null;
|
1352
|
-
contractId?: string | null;
|
1353
|
-
subId?: string | null;
|
1354
|
-
}>;
|
1355
|
-
};
|
1356
1108
|
export type GqlBlockFragmentFragment = {
|
1357
1109
|
__typename: 'Block';
|
1358
1110
|
id: string;
|
1359
|
-
height: any;
|
1360
1111
|
header: {
|
1361
1112
|
__typename: 'Header';
|
1113
|
+
height: any;
|
1362
1114
|
time: string;
|
1363
1115
|
};
|
1364
1116
|
transactions: Array<{
|
@@ -1372,8 +1124,9 @@ export type GqlCoinFragmentFragment = {
|
|
1372
1124
|
owner: string;
|
1373
1125
|
amount: string;
|
1374
1126
|
assetId: string;
|
1127
|
+
maturity: any;
|
1375
1128
|
blockCreated: any;
|
1376
|
-
txCreatedIdx:
|
1129
|
+
txCreatedIdx: string;
|
1377
1130
|
};
|
1378
1131
|
export type GqlMessageCoinFragmentFragment = {
|
1379
1132
|
__typename: 'MessageCoin';
|
@@ -1420,6 +1173,7 @@ export type GqlMessageProofFragmentFragment = {
|
|
1420
1173
|
prevRoot: string;
|
1421
1174
|
time: string;
|
1422
1175
|
applicationHash: string;
|
1176
|
+
messageReceiptRoot: string;
|
1423
1177
|
messageReceiptCount: string;
|
1424
1178
|
};
|
1425
1179
|
commitBlockHeader: {
|
@@ -1432,6 +1186,7 @@ export type GqlMessageProofFragmentFragment = {
|
|
1432
1186
|
prevRoot: string;
|
1433
1187
|
time: string;
|
1434
1188
|
applicationHash: string;
|
1189
|
+
messageReceiptRoot: string;
|
1435
1190
|
messageReceiptCount: string;
|
1436
1191
|
};
|
1437
1192
|
};
|
@@ -1496,6 +1251,7 @@ export type GqlGasCostsFragmentFragment = {
|
|
1496
1251
|
cb: string;
|
1497
1252
|
cfei: string;
|
1498
1253
|
cfsi: string;
|
1254
|
+
croo: string;
|
1499
1255
|
div: string;
|
1500
1256
|
divi: string;
|
1501
1257
|
ecr1: string;
|
@@ -1573,10 +1329,6 @@ export type GqlGasCostsFragmentFragment = {
|
|
1573
1329
|
xor: string;
|
1574
1330
|
xori: string;
|
1575
1331
|
newStoragePerByte: string;
|
1576
|
-
version: {
|
1577
|
-
__typename: 'Version';
|
1578
|
-
value: any;
|
1579
|
-
};
|
1580
1332
|
call: {
|
1581
1333
|
__typename: 'HeavyOperation';
|
1582
1334
|
base: string;
|
@@ -1595,15 +1347,6 @@ export type GqlGasCostsFragmentFragment = {
|
|
1595
1347
|
base: string;
|
1596
1348
|
unitsPerGas: string;
|
1597
1349
|
};
|
1598
|
-
croo: {
|
1599
|
-
__typename: 'HeavyOperation';
|
1600
|
-
base: string;
|
1601
|
-
gasPerUnit: string;
|
1602
|
-
} | {
|
1603
|
-
__typename: 'LightOperation';
|
1604
|
-
base: string;
|
1605
|
-
unitsPerGas: string;
|
1606
|
-
};
|
1607
1350
|
csiz: {
|
1608
1351
|
__typename: 'HeavyOperation';
|
1609
1352
|
base: string;
|
@@ -1771,10 +1514,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1771
1514
|
__typename: 'ConsensusParameters';
|
1772
1515
|
baseAssetId: string;
|
1773
1516
|
chainId: string;
|
1774
|
-
version: {
|
1775
|
-
__typename: 'Version';
|
1776
|
-
value: any;
|
1777
|
-
};
|
1778
1517
|
txParams: {
|
1779
1518
|
__typename: 'TxParameters';
|
1780
1519
|
maxInputs: any;
|
@@ -1819,6 +1558,7 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1819
1558
|
cb: string;
|
1820
1559
|
cfei: string;
|
1821
1560
|
cfsi: string;
|
1561
|
+
croo: string;
|
1822
1562
|
div: string;
|
1823
1563
|
divi: string;
|
1824
1564
|
ecr1: string;
|
@@ -1896,10 +1636,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1896
1636
|
xor: string;
|
1897
1637
|
xori: string;
|
1898
1638
|
newStoragePerByte: string;
|
1899
|
-
version: {
|
1900
|
-
__typename: 'Version';
|
1901
|
-
value: any;
|
1902
|
-
};
|
1903
1639
|
call: {
|
1904
1640
|
__typename: 'HeavyOperation';
|
1905
1641
|
base: string;
|
@@ -1918,15 +1654,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1918
1654
|
base: string;
|
1919
1655
|
unitsPerGas: string;
|
1920
1656
|
};
|
1921
|
-
croo: {
|
1922
|
-
__typename: 'HeavyOperation';
|
1923
|
-
base: string;
|
1924
|
-
gasPerUnit: string;
|
1925
|
-
} | {
|
1926
|
-
__typename: 'LightOperation';
|
1927
|
-
base: string;
|
1928
|
-
unitsPerGas: string;
|
1929
|
-
};
|
1930
1657
|
csiz: {
|
1931
1658
|
__typename: 'HeavyOperation';
|
1932
1659
|
base: string;
|
@@ -2098,9 +1825,9 @@ export type GqlChainInfoFragmentFragment = {
|
|
2098
1825
|
latestBlock: {
|
2099
1826
|
__typename: 'Block';
|
2100
1827
|
id: string;
|
2101
|
-
height: any;
|
2102
1828
|
header: {
|
2103
1829
|
__typename: 'Header';
|
1830
|
+
height: any;
|
2104
1831
|
time: string;
|
2105
1832
|
};
|
2106
1833
|
transactions: Array<{
|
@@ -2112,10 +1839,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2112
1839
|
__typename: 'ConsensusParameters';
|
2113
1840
|
baseAssetId: string;
|
2114
1841
|
chainId: string;
|
2115
|
-
version: {
|
2116
|
-
__typename: 'Version';
|
2117
|
-
value: any;
|
2118
|
-
};
|
2119
1842
|
txParams: {
|
2120
1843
|
__typename: 'TxParameters';
|
2121
1844
|
maxInputs: any;
|
@@ -2160,6 +1883,7 @@ export type GqlChainInfoFragmentFragment = {
|
|
2160
1883
|
cb: string;
|
2161
1884
|
cfei: string;
|
2162
1885
|
cfsi: string;
|
1886
|
+
croo: string;
|
2163
1887
|
div: string;
|
2164
1888
|
divi: string;
|
2165
1889
|
ecr1: string;
|
@@ -2237,10 +1961,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2237
1961
|
xor: string;
|
2238
1962
|
xori: string;
|
2239
1963
|
newStoragePerByte: string;
|
2240
|
-
version: {
|
2241
|
-
__typename: 'Version';
|
2242
|
-
value: any;
|
2243
|
-
};
|
2244
1964
|
call: {
|
2245
1965
|
__typename: 'HeavyOperation';
|
2246
1966
|
base: string;
|
@@ -2259,15 +1979,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2259
1979
|
base: string;
|
2260
1980
|
unitsPerGas: string;
|
2261
1981
|
};
|
2262
|
-
croo: {
|
2263
|
-
__typename: 'HeavyOperation';
|
2264
|
-
base: string;
|
2265
|
-
gasPerUnit: string;
|
2266
|
-
} | {
|
2267
|
-
__typename: 'LightOperation';
|
2268
|
-
base: string;
|
2269
|
-
unitsPerGas: string;
|
2270
|
-
};
|
2271
1982
|
csiz: {
|
2272
1983
|
__typename: 'HeavyOperation';
|
2273
1984
|
base: string;
|
@@ -2460,9 +2171,19 @@ export type GqlNodeInfoFragmentFragment = {
|
|
2460
2171
|
__typename: 'NodeInfo';
|
2461
2172
|
utxoValidation: boolean;
|
2462
2173
|
vmBacktrace: boolean;
|
2174
|
+
minGasPrice: string;
|
2463
2175
|
maxTx: string;
|
2464
2176
|
maxDepth: string;
|
2465
2177
|
nodeVersion: string;
|
2178
|
+
peers: Array<{
|
2179
|
+
__typename: 'PeerInfo';
|
2180
|
+
id: string;
|
2181
|
+
addresses: Array<string>;
|
2182
|
+
clientVersion?: string | null;
|
2183
|
+
blockHeight?: any | null;
|
2184
|
+
lastHeartbeatMs: string;
|
2185
|
+
appScore: number;
|
2186
|
+
}>;
|
2466
2187
|
};
|
2467
2188
|
export type GqlGetNodeInfoQueryVariables = Exact<{
|
2468
2189
|
[key: string]: never;
|
@@ -2473,9 +2194,19 @@ export type GqlGetNodeInfoQuery = {
|
|
2473
2194
|
__typename: 'NodeInfo';
|
2474
2195
|
utxoValidation: boolean;
|
2475
2196
|
vmBacktrace: boolean;
|
2197
|
+
minGasPrice: string;
|
2476
2198
|
maxTx: string;
|
2477
2199
|
maxDepth: string;
|
2478
2200
|
nodeVersion: string;
|
2201
|
+
peers: Array<{
|
2202
|
+
__typename: 'PeerInfo';
|
2203
|
+
id: string;
|
2204
|
+
addresses: Array<string>;
|
2205
|
+
clientVersion?: string | null;
|
2206
|
+
blockHeight?: any | null;
|
2207
|
+
lastHeartbeatMs: string;
|
2208
|
+
appScore: number;
|
2209
|
+
}>;
|
2479
2210
|
};
|
2480
2211
|
};
|
2481
2212
|
export type GqlGetChainQueryVariables = Exact<{
|
@@ -2490,9 +2221,9 @@ export type GqlGetChainQuery = {
|
|
2490
2221
|
latestBlock: {
|
2491
2222
|
__typename: 'Block';
|
2492
2223
|
id: string;
|
2493
|
-
height: any;
|
2494
2224
|
header: {
|
2495
2225
|
__typename: 'Header';
|
2226
|
+
height: any;
|
2496
2227
|
time: string;
|
2497
2228
|
};
|
2498
2229
|
transactions: Array<{
|
@@ -2504,10 +2235,6 @@ export type GqlGetChainQuery = {
|
|
2504
2235
|
__typename: 'ConsensusParameters';
|
2505
2236
|
baseAssetId: string;
|
2506
2237
|
chainId: string;
|
2507
|
-
version: {
|
2508
|
-
__typename: 'Version';
|
2509
|
-
value: any;
|
2510
|
-
};
|
2511
2238
|
txParams: {
|
2512
2239
|
__typename: 'TxParameters';
|
2513
2240
|
maxInputs: any;
|
@@ -2552,6 +2279,7 @@ export type GqlGetChainQuery = {
|
|
2552
2279
|
cb: string;
|
2553
2280
|
cfei: string;
|
2554
2281
|
cfsi: string;
|
2282
|
+
croo: string;
|
2555
2283
|
div: string;
|
2556
2284
|
divi: string;
|
2557
2285
|
ecr1: string;
|
@@ -2629,10 +2357,6 @@ export type GqlGetChainQuery = {
|
|
2629
2357
|
xor: string;
|
2630
2358
|
xori: string;
|
2631
2359
|
newStoragePerByte: string;
|
2632
|
-
version: {
|
2633
|
-
__typename: 'Version';
|
2634
|
-
value: any;
|
2635
|
-
};
|
2636
2360
|
call: {
|
2637
2361
|
__typename: 'HeavyOperation';
|
2638
2362
|
base: string;
|
@@ -2651,16 +2375,7 @@ export type GqlGetChainQuery = {
|
|
2651
2375
|
base: string;
|
2652
2376
|
unitsPerGas: string;
|
2653
2377
|
};
|
2654
|
-
|
2655
|
-
__typename: 'HeavyOperation';
|
2656
|
-
base: string;
|
2657
|
-
gasPerUnit: string;
|
2658
|
-
} | {
|
2659
|
-
__typename: 'LightOperation';
|
2660
|
-
base: string;
|
2661
|
-
unitsPerGas: string;
|
2662
|
-
};
|
2663
|
-
csiz: {
|
2378
|
+
csiz: {
|
2664
2379
|
__typename: 'HeavyOperation';
|
2665
2380
|
base: string;
|
2666
2381
|
gasPerUnit: string;
|
@@ -2835,6 +2550,44 @@ export type GqlGetTransactionQuery = {
|
|
2835
2550
|
__typename: 'Transaction';
|
2836
2551
|
id: string;
|
2837
2552
|
rawPayload: string;
|
2553
|
+
gasPrice?: string | null;
|
2554
|
+
receipts?: Array<{
|
2555
|
+
__typename: 'Receipt';
|
2556
|
+
pc?: string | null;
|
2557
|
+
is?: string | null;
|
2558
|
+
toAddress?: string | null;
|
2559
|
+
amount?: string | null;
|
2560
|
+
assetId?: string | null;
|
2561
|
+
gas?: string | null;
|
2562
|
+
param1?: string | null;
|
2563
|
+
param2?: string | null;
|
2564
|
+
val?: string | null;
|
2565
|
+
ptr?: string | null;
|
2566
|
+
digest?: string | null;
|
2567
|
+
reason?: string | null;
|
2568
|
+
ra?: string | null;
|
2569
|
+
rb?: string | null;
|
2570
|
+
rc?: string | null;
|
2571
|
+
rd?: string | null;
|
2572
|
+
len?: string | null;
|
2573
|
+
receiptType: GqlReceiptType;
|
2574
|
+
result?: string | null;
|
2575
|
+
gasUsed?: string | null;
|
2576
|
+
data?: string | null;
|
2577
|
+
sender?: string | null;
|
2578
|
+
recipient?: string | null;
|
2579
|
+
nonce?: string | null;
|
2580
|
+
contractId?: string | null;
|
2581
|
+
subId?: string | null;
|
2582
|
+
contract?: {
|
2583
|
+
__typename: 'Contract';
|
2584
|
+
id: string;
|
2585
|
+
} | null;
|
2586
|
+
to?: {
|
2587
|
+
__typename: 'Contract';
|
2588
|
+
id: string;
|
2589
|
+
} | null;
|
2590
|
+
}> | null;
|
2838
2591
|
status?: {
|
2839
2592
|
__typename: 'FailureStatus';
|
2840
2593
|
time: string;
|
@@ -2844,37 +2597,6 @@ export type GqlGetTransactionQuery = {
|
|
2844
2597
|
__typename: 'Block';
|
2845
2598
|
id: string;
|
2846
2599
|
};
|
2847
|
-
receipts: Array<{
|
2848
|
-
__typename: 'Receipt';
|
2849
|
-
id?: string | null;
|
2850
|
-
pc?: string | null;
|
2851
|
-
is?: string | null;
|
2852
|
-
to?: string | null;
|
2853
|
-
toAddress?: string | null;
|
2854
|
-
amount?: string | null;
|
2855
|
-
assetId?: string | null;
|
2856
|
-
gas?: string | null;
|
2857
|
-
param1?: string | null;
|
2858
|
-
param2?: string | null;
|
2859
|
-
val?: string | null;
|
2860
|
-
ptr?: string | null;
|
2861
|
-
digest?: string | null;
|
2862
|
-
reason?: string | null;
|
2863
|
-
ra?: string | null;
|
2864
|
-
rb?: string | null;
|
2865
|
-
rc?: string | null;
|
2866
|
-
rd?: string | null;
|
2867
|
-
len?: string | null;
|
2868
|
-
receiptType: GqlReceiptType;
|
2869
|
-
result?: string | null;
|
2870
|
-
gasUsed?: string | null;
|
2871
|
-
data?: string | null;
|
2872
|
-
sender?: string | null;
|
2873
|
-
recipient?: string | null;
|
2874
|
-
nonce?: string | null;
|
2875
|
-
contractId?: string | null;
|
2876
|
-
subId?: string | null;
|
2877
|
-
}>;
|
2878
2600
|
} | {
|
2879
2601
|
__typename: 'SqueezedOutStatus';
|
2880
2602
|
reason: string;
|
@@ -2891,37 +2613,6 @@ export type GqlGetTransactionQuery = {
|
|
2891
2613
|
__typename: 'Block';
|
2892
2614
|
id: string;
|
2893
2615
|
};
|
2894
|
-
receipts: Array<{
|
2895
|
-
__typename: 'Receipt';
|
2896
|
-
id?: string | null;
|
2897
|
-
pc?: string | null;
|
2898
|
-
is?: string | null;
|
2899
|
-
to?: string | null;
|
2900
|
-
toAddress?: string | null;
|
2901
|
-
amount?: string | null;
|
2902
|
-
assetId?: string | null;
|
2903
|
-
gas?: string | null;
|
2904
|
-
param1?: string | null;
|
2905
|
-
param2?: string | null;
|
2906
|
-
val?: string | null;
|
2907
|
-
ptr?: string | null;
|
2908
|
-
digest?: string | null;
|
2909
|
-
reason?: string | null;
|
2910
|
-
ra?: string | null;
|
2911
|
-
rb?: string | null;
|
2912
|
-
rc?: string | null;
|
2913
|
-
rd?: string | null;
|
2914
|
-
len?: string | null;
|
2915
|
-
receiptType: GqlReceiptType;
|
2916
|
-
result?: string | null;
|
2917
|
-
gasUsed?: string | null;
|
2918
|
-
data?: string | null;
|
2919
|
-
sender?: string | null;
|
2920
|
-
recipient?: string | null;
|
2921
|
-
nonce?: string | null;
|
2922
|
-
contractId?: string | null;
|
2923
|
-
subId?: string | null;
|
2924
|
-
}>;
|
2925
2616
|
programState?: {
|
2926
2617
|
__typename: 'ProgramState';
|
2927
2618
|
returnType: GqlReturnType;
|
@@ -2939,6 +2630,44 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
2939
2630
|
__typename: 'Transaction';
|
2940
2631
|
id: string;
|
2941
2632
|
rawPayload: string;
|
2633
|
+
gasPrice?: string | null;
|
2634
|
+
receipts?: Array<{
|
2635
|
+
__typename: 'Receipt';
|
2636
|
+
pc?: string | null;
|
2637
|
+
is?: string | null;
|
2638
|
+
toAddress?: string | null;
|
2639
|
+
amount?: string | null;
|
2640
|
+
assetId?: string | null;
|
2641
|
+
gas?: string | null;
|
2642
|
+
param1?: string | null;
|
2643
|
+
param2?: string | null;
|
2644
|
+
val?: string | null;
|
2645
|
+
ptr?: string | null;
|
2646
|
+
digest?: string | null;
|
2647
|
+
reason?: string | null;
|
2648
|
+
ra?: string | null;
|
2649
|
+
rb?: string | null;
|
2650
|
+
rc?: string | null;
|
2651
|
+
rd?: string | null;
|
2652
|
+
len?: string | null;
|
2653
|
+
receiptType: GqlReceiptType;
|
2654
|
+
result?: string | null;
|
2655
|
+
gasUsed?: string | null;
|
2656
|
+
data?: string | null;
|
2657
|
+
sender?: string | null;
|
2658
|
+
recipient?: string | null;
|
2659
|
+
nonce?: string | null;
|
2660
|
+
contractId?: string | null;
|
2661
|
+
subId?: string | null;
|
2662
|
+
contract?: {
|
2663
|
+
__typename: 'Contract';
|
2664
|
+
id: string;
|
2665
|
+
} | null;
|
2666
|
+
to?: {
|
2667
|
+
__typename: 'Contract';
|
2668
|
+
id: string;
|
2669
|
+
} | null;
|
2670
|
+
}> | null;
|
2942
2671
|
status?: {
|
2943
2672
|
__typename: 'FailureStatus';
|
2944
2673
|
time: string;
|
@@ -2948,37 +2677,6 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
2948
2677
|
__typename: 'Block';
|
2949
2678
|
id: string;
|
2950
2679
|
};
|
2951
|
-
receipts: Array<{
|
2952
|
-
__typename: 'Receipt';
|
2953
|
-
id?: string | null;
|
2954
|
-
pc?: string | null;
|
2955
|
-
is?: string | null;
|
2956
|
-
to?: string | null;
|
2957
|
-
toAddress?: string | null;
|
2958
|
-
amount?: string | null;
|
2959
|
-
assetId?: string | null;
|
2960
|
-
gas?: string | null;
|
2961
|
-
param1?: string | null;
|
2962
|
-
param2?: string | null;
|
2963
|
-
val?: string | null;
|
2964
|
-
ptr?: string | null;
|
2965
|
-
digest?: string | null;
|
2966
|
-
reason?: string | null;
|
2967
|
-
ra?: string | null;
|
2968
|
-
rb?: string | null;
|
2969
|
-
rc?: string | null;
|
2970
|
-
rd?: string | null;
|
2971
|
-
len?: string | null;
|
2972
|
-
receiptType: GqlReceiptType;
|
2973
|
-
result?: string | null;
|
2974
|
-
gasUsed?: string | null;
|
2975
|
-
data?: string | null;
|
2976
|
-
sender?: string | null;
|
2977
|
-
recipient?: string | null;
|
2978
|
-
nonce?: string | null;
|
2979
|
-
contractId?: string | null;
|
2980
|
-
subId?: string | null;
|
2981
|
-
}>;
|
2982
2680
|
} | {
|
2983
2681
|
__typename: 'SqueezedOutStatus';
|
2984
2682
|
reason: string;
|
@@ -2995,37 +2693,6 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
2995
2693
|
__typename: 'Block';
|
2996
2694
|
id: string;
|
2997
2695
|
};
|
2998
|
-
receipts: Array<{
|
2999
|
-
__typename: 'Receipt';
|
3000
|
-
id?: string | null;
|
3001
|
-
pc?: string | null;
|
3002
|
-
is?: string | null;
|
3003
|
-
to?: string | null;
|
3004
|
-
toAddress?: string | null;
|
3005
|
-
amount?: string | null;
|
3006
|
-
assetId?: string | null;
|
3007
|
-
gas?: string | null;
|
3008
|
-
param1?: string | null;
|
3009
|
-
param2?: string | null;
|
3010
|
-
val?: string | null;
|
3011
|
-
ptr?: string | null;
|
3012
|
-
digest?: string | null;
|
3013
|
-
reason?: string | null;
|
3014
|
-
ra?: string | null;
|
3015
|
-
rb?: string | null;
|
3016
|
-
rc?: string | null;
|
3017
|
-
rd?: string | null;
|
3018
|
-
len?: string | null;
|
3019
|
-
receiptType: GqlReceiptType;
|
3020
|
-
result?: string | null;
|
3021
|
-
gasUsed?: string | null;
|
3022
|
-
data?: string | null;
|
3023
|
-
sender?: string | null;
|
3024
|
-
recipient?: string | null;
|
3025
|
-
nonce?: string | null;
|
3026
|
-
contractId?: string | null;
|
3027
|
-
subId?: string | null;
|
3028
|
-
}>;
|
3029
2696
|
programState?: {
|
3030
2697
|
__typename: 'ProgramState';
|
3031
2698
|
returnType: GqlReturnType;
|
@@ -3050,6 +2717,44 @@ export type GqlGetTransactionsQuery = {
|
|
3050
2717
|
__typename: 'Transaction';
|
3051
2718
|
id: string;
|
3052
2719
|
rawPayload: string;
|
2720
|
+
gasPrice?: string | null;
|
2721
|
+
receipts?: Array<{
|
2722
|
+
__typename: 'Receipt';
|
2723
|
+
pc?: string | null;
|
2724
|
+
is?: string | null;
|
2725
|
+
toAddress?: string | null;
|
2726
|
+
amount?: string | null;
|
2727
|
+
assetId?: string | null;
|
2728
|
+
gas?: string | null;
|
2729
|
+
param1?: string | null;
|
2730
|
+
param2?: string | null;
|
2731
|
+
val?: string | null;
|
2732
|
+
ptr?: string | null;
|
2733
|
+
digest?: string | null;
|
2734
|
+
reason?: string | null;
|
2735
|
+
ra?: string | null;
|
2736
|
+
rb?: string | null;
|
2737
|
+
rc?: string | null;
|
2738
|
+
rd?: string | null;
|
2739
|
+
len?: string | null;
|
2740
|
+
receiptType: GqlReceiptType;
|
2741
|
+
result?: string | null;
|
2742
|
+
gasUsed?: string | null;
|
2743
|
+
data?: string | null;
|
2744
|
+
sender?: string | null;
|
2745
|
+
recipient?: string | null;
|
2746
|
+
nonce?: string | null;
|
2747
|
+
contractId?: string | null;
|
2748
|
+
subId?: string | null;
|
2749
|
+
contract?: {
|
2750
|
+
__typename: 'Contract';
|
2751
|
+
id: string;
|
2752
|
+
} | null;
|
2753
|
+
to?: {
|
2754
|
+
__typename: 'Contract';
|
2755
|
+
id: string;
|
2756
|
+
} | null;
|
2757
|
+
}> | null;
|
3053
2758
|
status?: {
|
3054
2759
|
__typename: 'FailureStatus';
|
3055
2760
|
time: string;
|
@@ -3059,37 +2764,6 @@ export type GqlGetTransactionsQuery = {
|
|
3059
2764
|
__typename: 'Block';
|
3060
2765
|
id: string;
|
3061
2766
|
};
|
3062
|
-
receipts: Array<{
|
3063
|
-
__typename: 'Receipt';
|
3064
|
-
id?: string | null;
|
3065
|
-
pc?: string | null;
|
3066
|
-
is?: string | null;
|
3067
|
-
to?: string | null;
|
3068
|
-
toAddress?: string | null;
|
3069
|
-
amount?: string | null;
|
3070
|
-
assetId?: string | null;
|
3071
|
-
gas?: string | null;
|
3072
|
-
param1?: string | null;
|
3073
|
-
param2?: string | null;
|
3074
|
-
val?: string | null;
|
3075
|
-
ptr?: string | null;
|
3076
|
-
digest?: string | null;
|
3077
|
-
reason?: string | null;
|
3078
|
-
ra?: string | null;
|
3079
|
-
rb?: string | null;
|
3080
|
-
rc?: string | null;
|
3081
|
-
rd?: string | null;
|
3082
|
-
len?: string | null;
|
3083
|
-
receiptType: GqlReceiptType;
|
3084
|
-
result?: string | null;
|
3085
|
-
gasUsed?: string | null;
|
3086
|
-
data?: string | null;
|
3087
|
-
sender?: string | null;
|
3088
|
-
recipient?: string | null;
|
3089
|
-
nonce?: string | null;
|
3090
|
-
contractId?: string | null;
|
3091
|
-
subId?: string | null;
|
3092
|
-
}>;
|
3093
2767
|
} | {
|
3094
2768
|
__typename: 'SqueezedOutStatus';
|
3095
2769
|
reason: string;
|
@@ -3106,37 +2780,6 @@ export type GqlGetTransactionsQuery = {
|
|
3106
2780
|
__typename: 'Block';
|
3107
2781
|
id: string;
|
3108
2782
|
};
|
3109
|
-
receipts: Array<{
|
3110
|
-
__typename: 'Receipt';
|
3111
|
-
id?: string | null;
|
3112
|
-
pc?: string | null;
|
3113
|
-
is?: string | null;
|
3114
|
-
to?: string | null;
|
3115
|
-
toAddress?: string | null;
|
3116
|
-
amount?: string | null;
|
3117
|
-
assetId?: string | null;
|
3118
|
-
gas?: string | null;
|
3119
|
-
param1?: string | null;
|
3120
|
-
param2?: string | null;
|
3121
|
-
val?: string | null;
|
3122
|
-
ptr?: string | null;
|
3123
|
-
digest?: string | null;
|
3124
|
-
reason?: string | null;
|
3125
|
-
ra?: string | null;
|
3126
|
-
rb?: string | null;
|
3127
|
-
rc?: string | null;
|
3128
|
-
rd?: string | null;
|
3129
|
-
len?: string | null;
|
3130
|
-
receiptType: GqlReceiptType;
|
3131
|
-
result?: string | null;
|
3132
|
-
gasUsed?: string | null;
|
3133
|
-
data?: string | null;
|
3134
|
-
sender?: string | null;
|
3135
|
-
recipient?: string | null;
|
3136
|
-
nonce?: string | null;
|
3137
|
-
contractId?: string | null;
|
3138
|
-
subId?: string | null;
|
3139
|
-
}>;
|
3140
2783
|
programState?: {
|
3141
2784
|
__typename: 'ProgramState';
|
3142
2785
|
returnType: GqlReturnType;
|
@@ -3171,6 +2814,44 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3171
2814
|
__typename: 'Transaction';
|
3172
2815
|
id: string;
|
3173
2816
|
rawPayload: string;
|
2817
|
+
gasPrice?: string | null;
|
2818
|
+
receipts?: Array<{
|
2819
|
+
__typename: 'Receipt';
|
2820
|
+
pc?: string | null;
|
2821
|
+
is?: string | null;
|
2822
|
+
toAddress?: string | null;
|
2823
|
+
amount?: string | null;
|
2824
|
+
assetId?: string | null;
|
2825
|
+
gas?: string | null;
|
2826
|
+
param1?: string | null;
|
2827
|
+
param2?: string | null;
|
2828
|
+
val?: string | null;
|
2829
|
+
ptr?: string | null;
|
2830
|
+
digest?: string | null;
|
2831
|
+
reason?: string | null;
|
2832
|
+
ra?: string | null;
|
2833
|
+
rb?: string | null;
|
2834
|
+
rc?: string | null;
|
2835
|
+
rd?: string | null;
|
2836
|
+
len?: string | null;
|
2837
|
+
receiptType: GqlReceiptType;
|
2838
|
+
result?: string | null;
|
2839
|
+
gasUsed?: string | null;
|
2840
|
+
data?: string | null;
|
2841
|
+
sender?: string | null;
|
2842
|
+
recipient?: string | null;
|
2843
|
+
nonce?: string | null;
|
2844
|
+
contractId?: string | null;
|
2845
|
+
subId?: string | null;
|
2846
|
+
contract?: {
|
2847
|
+
__typename: 'Contract';
|
2848
|
+
id: string;
|
2849
|
+
} | null;
|
2850
|
+
to?: {
|
2851
|
+
__typename: 'Contract';
|
2852
|
+
id: string;
|
2853
|
+
} | null;
|
2854
|
+
}> | null;
|
3174
2855
|
status?: {
|
3175
2856
|
__typename: 'FailureStatus';
|
3176
2857
|
time: string;
|
@@ -3180,37 +2861,6 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3180
2861
|
__typename: 'Block';
|
3181
2862
|
id: string;
|
3182
2863
|
};
|
3183
|
-
receipts: Array<{
|
3184
|
-
__typename: 'Receipt';
|
3185
|
-
id?: string | null;
|
3186
|
-
pc?: string | null;
|
3187
|
-
is?: string | null;
|
3188
|
-
to?: string | null;
|
3189
|
-
toAddress?: string | null;
|
3190
|
-
amount?: string | null;
|
3191
|
-
assetId?: string | null;
|
3192
|
-
gas?: string | null;
|
3193
|
-
param1?: string | null;
|
3194
|
-
param2?: string | null;
|
3195
|
-
val?: string | null;
|
3196
|
-
ptr?: string | null;
|
3197
|
-
digest?: string | null;
|
3198
|
-
reason?: string | null;
|
3199
|
-
ra?: string | null;
|
3200
|
-
rb?: string | null;
|
3201
|
-
rc?: string | null;
|
3202
|
-
rd?: string | null;
|
3203
|
-
len?: string | null;
|
3204
|
-
receiptType: GqlReceiptType;
|
3205
|
-
result?: string | null;
|
3206
|
-
gasUsed?: string | null;
|
3207
|
-
data?: string | null;
|
3208
|
-
sender?: string | null;
|
3209
|
-
recipient?: string | null;
|
3210
|
-
nonce?: string | null;
|
3211
|
-
contractId?: string | null;
|
3212
|
-
subId?: string | null;
|
3213
|
-
}>;
|
3214
2864
|
} | {
|
3215
2865
|
__typename: 'SqueezedOutStatus';
|
3216
2866
|
reason: string;
|
@@ -3227,37 +2877,6 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3227
2877
|
__typename: 'Block';
|
3228
2878
|
id: string;
|
3229
2879
|
};
|
3230
|
-
receipts: Array<{
|
3231
|
-
__typename: 'Receipt';
|
3232
|
-
id?: string | null;
|
3233
|
-
pc?: string | null;
|
3234
|
-
is?: string | null;
|
3235
|
-
to?: string | null;
|
3236
|
-
toAddress?: string | null;
|
3237
|
-
amount?: string | null;
|
3238
|
-
assetId?: string | null;
|
3239
|
-
gas?: string | null;
|
3240
|
-
param1?: string | null;
|
3241
|
-
param2?: string | null;
|
3242
|
-
val?: string | null;
|
3243
|
-
ptr?: string | null;
|
3244
|
-
digest?: string | null;
|
3245
|
-
reason?: string | null;
|
3246
|
-
ra?: string | null;
|
3247
|
-
rb?: string | null;
|
3248
|
-
rc?: string | null;
|
3249
|
-
rd?: string | null;
|
3250
|
-
len?: string | null;
|
3251
|
-
receiptType: GqlReceiptType;
|
3252
|
-
result?: string | null;
|
3253
|
-
gasUsed?: string | null;
|
3254
|
-
data?: string | null;
|
3255
|
-
sender?: string | null;
|
3256
|
-
recipient?: string | null;
|
3257
|
-
nonce?: string | null;
|
3258
|
-
contractId?: string | null;
|
3259
|
-
subId?: string | null;
|
3260
|
-
}>;
|
3261
2880
|
programState?: {
|
3262
2881
|
__typename: 'ProgramState';
|
3263
2882
|
returnType: GqlReturnType;
|
@@ -3295,9 +2914,9 @@ export type GqlGetBlockQuery = {
|
|
3295
2914
|
block?: {
|
3296
2915
|
__typename: 'Block';
|
3297
2916
|
id: string;
|
3298
|
-
height: any;
|
3299
2917
|
header: {
|
3300
2918
|
__typename: 'Header';
|
2919
|
+
height: any;
|
3301
2920
|
time: string;
|
3302
2921
|
};
|
3303
2922
|
transactions: Array<{
|
@@ -3315,51 +2934,57 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3315
2934
|
block?: {
|
3316
2935
|
__typename: 'Block';
|
3317
2936
|
id: string;
|
3318
|
-
height: any;
|
3319
2937
|
transactions: Array<{
|
3320
2938
|
__typename: 'Transaction';
|
3321
2939
|
id: string;
|
3322
2940
|
rawPayload: string;
|
3323
|
-
|
3324
|
-
|
3325
|
-
|
3326
|
-
|
3327
|
-
|
3328
|
-
|
3329
|
-
|
2941
|
+
gasPrice?: string | null;
|
2942
|
+
receipts?: Array<{
|
2943
|
+
__typename: 'Receipt';
|
2944
|
+
pc?: string | null;
|
2945
|
+
is?: string | null;
|
2946
|
+
toAddress?: string | null;
|
2947
|
+
amount?: string | null;
|
2948
|
+
assetId?: string | null;
|
2949
|
+
gas?: string | null;
|
2950
|
+
param1?: string | null;
|
2951
|
+
param2?: string | null;
|
2952
|
+
val?: string | null;
|
2953
|
+
ptr?: string | null;
|
2954
|
+
digest?: string | null;
|
2955
|
+
reason?: string | null;
|
2956
|
+
ra?: string | null;
|
2957
|
+
rb?: string | null;
|
2958
|
+
rc?: string | null;
|
2959
|
+
rd?: string | null;
|
2960
|
+
len?: string | null;
|
2961
|
+
receiptType: GqlReceiptType;
|
2962
|
+
result?: string | null;
|
2963
|
+
gasUsed?: string | null;
|
2964
|
+
data?: string | null;
|
2965
|
+
sender?: string | null;
|
2966
|
+
recipient?: string | null;
|
2967
|
+
nonce?: string | null;
|
2968
|
+
contractId?: string | null;
|
2969
|
+
subId?: string | null;
|
2970
|
+
contract?: {
|
2971
|
+
__typename: 'Contract';
|
2972
|
+
id: string;
|
2973
|
+
} | null;
|
2974
|
+
to?: {
|
2975
|
+
__typename: 'Contract';
|
2976
|
+
id: string;
|
2977
|
+
} | null;
|
2978
|
+
}> | null;
|
2979
|
+
status?: {
|
2980
|
+
__typename: 'FailureStatus';
|
2981
|
+
time: string;
|
2982
|
+
reason: string;
|
2983
|
+
type: 'FailureStatus';
|
2984
|
+
block: {
|
2985
|
+
__typename: 'Block';
|
3330
2986
|
id: string;
|
3331
2987
|
};
|
3332
|
-
receipts: Array<{
|
3333
|
-
__typename: 'Receipt';
|
3334
|
-
id?: string | null;
|
3335
|
-
pc?: string | null;
|
3336
|
-
is?: string | null;
|
3337
|
-
to?: string | null;
|
3338
|
-
toAddress?: string | null;
|
3339
|
-
amount?: string | null;
|
3340
|
-
assetId?: string | null;
|
3341
|
-
gas?: string | null;
|
3342
|
-
param1?: string | null;
|
3343
|
-
param2?: string | null;
|
3344
|
-
val?: string | null;
|
3345
|
-
ptr?: string | null;
|
3346
|
-
digest?: string | null;
|
3347
|
-
reason?: string | null;
|
3348
|
-
ra?: string | null;
|
3349
|
-
rb?: string | null;
|
3350
|
-
rc?: string | null;
|
3351
|
-
rd?: string | null;
|
3352
|
-
len?: string | null;
|
3353
|
-
receiptType: GqlReceiptType;
|
3354
|
-
result?: string | null;
|
3355
|
-
gasUsed?: string | null;
|
3356
|
-
data?: string | null;
|
3357
|
-
sender?: string | null;
|
3358
|
-
recipient?: string | null;
|
3359
|
-
nonce?: string | null;
|
3360
|
-
contractId?: string | null;
|
3361
|
-
subId?: string | null;
|
3362
|
-
}>;
|
3363
2988
|
} | {
|
3364
2989
|
__typename: 'SqueezedOutStatus';
|
3365
2990
|
reason: string;
|
@@ -3376,37 +3001,6 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3376
3001
|
__typename: 'Block';
|
3377
3002
|
id: string;
|
3378
3003
|
};
|
3379
|
-
receipts: Array<{
|
3380
|
-
__typename: 'Receipt';
|
3381
|
-
id?: string | null;
|
3382
|
-
pc?: string | null;
|
3383
|
-
is?: string | null;
|
3384
|
-
to?: string | null;
|
3385
|
-
toAddress?: string | null;
|
3386
|
-
amount?: string | null;
|
3387
|
-
assetId?: string | null;
|
3388
|
-
gas?: string | null;
|
3389
|
-
param1?: string | null;
|
3390
|
-
param2?: string | null;
|
3391
|
-
val?: string | null;
|
3392
|
-
ptr?: string | null;
|
3393
|
-
digest?: string | null;
|
3394
|
-
reason?: string | null;
|
3395
|
-
ra?: string | null;
|
3396
|
-
rb?: string | null;
|
3397
|
-
rc?: string | null;
|
3398
|
-
rd?: string | null;
|
3399
|
-
len?: string | null;
|
3400
|
-
receiptType: GqlReceiptType;
|
3401
|
-
result?: string | null;
|
3402
|
-
gasUsed?: string | null;
|
3403
|
-
data?: string | null;
|
3404
|
-
sender?: string | null;
|
3405
|
-
recipient?: string | null;
|
3406
|
-
nonce?: string | null;
|
3407
|
-
contractId?: string | null;
|
3408
|
-
subId?: string | null;
|
3409
|
-
}>;
|
3410
3004
|
programState?: {
|
3411
3005
|
__typename: 'ProgramState';
|
3412
3006
|
returnType: GqlReturnType;
|
@@ -3416,6 +3010,7 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3416
3010
|
}>;
|
3417
3011
|
header: {
|
3418
3012
|
__typename: 'Header';
|
3013
|
+
height: any;
|
3419
3014
|
time: string;
|
3420
3015
|
};
|
3421
3016
|
} | null;
|
@@ -3435,9 +3030,9 @@ export type GqlGetBlocksQuery = {
|
|
3435
3030
|
node: {
|
3436
3031
|
__typename: 'Block';
|
3437
3032
|
id: string;
|
3438
|
-
height: any;
|
3439
3033
|
header: {
|
3440
3034
|
__typename: 'Header';
|
3035
|
+
height: any;
|
3441
3036
|
time: string;
|
3442
3037
|
};
|
3443
3038
|
transactions: Array<{
|
@@ -3459,8 +3054,9 @@ export type GqlGetCoinQuery = {
|
|
3459
3054
|
owner: string;
|
3460
3055
|
amount: string;
|
3461
3056
|
assetId: string;
|
3057
|
+
maturity: any;
|
3462
3058
|
blockCreated: any;
|
3463
|
-
txCreatedIdx:
|
3059
|
+
txCreatedIdx: string;
|
3464
3060
|
} | null;
|
3465
3061
|
};
|
3466
3062
|
export type GqlGetCoinsQueryVariables = Exact<{
|
@@ -3482,8 +3078,9 @@ export type GqlGetCoinsQuery = {
|
|
3482
3078
|
owner: string;
|
3483
3079
|
amount: string;
|
3484
3080
|
assetId: string;
|
3081
|
+
maturity: any;
|
3485
3082
|
blockCreated: any;
|
3486
|
-
txCreatedIdx:
|
3083
|
+
txCreatedIdx: string;
|
3487
3084
|
};
|
3488
3085
|
}>;
|
3489
3086
|
};
|
@@ -3501,8 +3098,9 @@ export type GqlGetCoinsToSpendQuery = {
|
|
3501
3098
|
owner: string;
|
3502
3099
|
amount: string;
|
3503
3100
|
assetId: string;
|
3101
|
+
maturity: any;
|
3504
3102
|
blockCreated: any;
|
3505
|
-
txCreatedIdx:
|
3103
|
+
txCreatedIdx: string;
|
3506
3104
|
} | {
|
3507
3105
|
__typename: 'MessageCoin';
|
3508
3106
|
sender: string;
|
@@ -3550,26 +3148,6 @@ export type GqlGetBalanceQuery = {
|
|
3550
3148
|
assetId: string;
|
3551
3149
|
};
|
3552
3150
|
};
|
3553
|
-
export type GqlGetLatestGasPriceQueryVariables = Exact<{
|
3554
|
-
[key: string]: never;
|
3555
|
-
}>;
|
3556
|
-
export type GqlGetLatestGasPriceQuery = {
|
3557
|
-
__typename: 'Query';
|
3558
|
-
latestGasPrice: {
|
3559
|
-
__typename: 'LatestGasPrice';
|
3560
|
-
gasPrice: string;
|
3561
|
-
};
|
3562
|
-
};
|
3563
|
-
export type GqlEstimateGasPriceQueryVariables = Exact<{
|
3564
|
-
blockHorizon: Scalars['U32'];
|
3565
|
-
}>;
|
3566
|
-
export type GqlEstimateGasPriceQuery = {
|
3567
|
-
__typename: 'Query';
|
3568
|
-
estimateGasPrice: {
|
3569
|
-
__typename: 'EstimateGasPrice';
|
3570
|
-
gasPrice: string;
|
3571
|
-
};
|
3572
|
-
};
|
3573
3151
|
export type GqlGetBalancesQueryVariables = Exact<{
|
3574
3152
|
filter: GqlBalanceFilterInput;
|
3575
3153
|
after?: InputMaybe<Scalars['String']>;
|
@@ -3652,6 +3230,7 @@ export type GqlGetMessageProofQuery = {
|
|
3652
3230
|
prevRoot: string;
|
3653
3231
|
time: string;
|
3654
3232
|
applicationHash: string;
|
3233
|
+
messageReceiptRoot: string;
|
3655
3234
|
messageReceiptCount: string;
|
3656
3235
|
};
|
3657
3236
|
commitBlockHeader: {
|
@@ -3664,6 +3243,7 @@ export type GqlGetMessageProofQuery = {
|
|
3664
3243
|
prevRoot: string;
|
3665
3244
|
time: string;
|
3666
3245
|
applicationHash: string;
|
3246
|
+
messageReceiptRoot: string;
|
3667
3247
|
messageReceiptCount: string;
|
3668
3248
|
};
|
3669
3249
|
} | null;
|
@@ -3679,61 +3259,47 @@ export type GqlGetMessageStatusQuery = {
|
|
3679
3259
|
};
|
3680
3260
|
};
|
3681
3261
|
export type GqlDryRunMutationVariables = Exact<{
|
3682
|
-
|
3262
|
+
encodedTransaction: Scalars['HexString'];
|
3683
3263
|
utxoValidation?: InputMaybe<Scalars['Boolean']>;
|
3684
3264
|
}>;
|
3685
3265
|
export type GqlDryRunMutation = {
|
3686
3266
|
__typename: 'Mutation';
|
3687
3267
|
dryRun: Array<{
|
3688
|
-
__typename: '
|
3689
|
-
|
3690
|
-
|
3691
|
-
|
3692
|
-
|
3693
|
-
|
3694
|
-
|
3695
|
-
|
3696
|
-
|
3697
|
-
|
3698
|
-
|
3699
|
-
|
3700
|
-
|
3701
|
-
|
3702
|
-
|
3703
|
-
|
3704
|
-
|
3705
|
-
|
3706
|
-
|
3707
|
-
|
3708
|
-
|
3709
|
-
|
3710
|
-
|
3711
|
-
|
3712
|
-
|
3713
|
-
|
3714
|
-
|
3715
|
-
|
3716
|
-
|
3717
|
-
|
3718
|
-
|
3719
|
-
|
3720
|
-
|
3721
|
-
|
3722
|
-
|
3723
|
-
rb?: string | null;
|
3724
|
-
rc?: string | null;
|
3725
|
-
rd?: string | null;
|
3726
|
-
len?: string | null;
|
3727
|
-
receiptType: GqlReceiptType;
|
3728
|
-
result?: string | null;
|
3729
|
-
gasUsed?: string | null;
|
3730
|
-
data?: string | null;
|
3731
|
-
sender?: string | null;
|
3732
|
-
recipient?: string | null;
|
3733
|
-
nonce?: string | null;
|
3734
|
-
contractId?: string | null;
|
3735
|
-
subId?: string | null;
|
3736
|
-
}>;
|
3268
|
+
__typename: 'Receipt';
|
3269
|
+
pc?: string | null;
|
3270
|
+
is?: string | null;
|
3271
|
+
toAddress?: string | null;
|
3272
|
+
amount?: string | null;
|
3273
|
+
assetId?: string | null;
|
3274
|
+
gas?: string | null;
|
3275
|
+
param1?: string | null;
|
3276
|
+
param2?: string | null;
|
3277
|
+
val?: string | null;
|
3278
|
+
ptr?: string | null;
|
3279
|
+
digest?: string | null;
|
3280
|
+
reason?: string | null;
|
3281
|
+
ra?: string | null;
|
3282
|
+
rb?: string | null;
|
3283
|
+
rc?: string | null;
|
3284
|
+
rd?: string | null;
|
3285
|
+
len?: string | null;
|
3286
|
+
receiptType: GqlReceiptType;
|
3287
|
+
result?: string | null;
|
3288
|
+
gasUsed?: string | null;
|
3289
|
+
data?: string | null;
|
3290
|
+
sender?: string | null;
|
3291
|
+
recipient?: string | null;
|
3292
|
+
nonce?: string | null;
|
3293
|
+
contractId?: string | null;
|
3294
|
+
subId?: string | null;
|
3295
|
+
contract?: {
|
3296
|
+
__typename: 'Contract';
|
3297
|
+
id: string;
|
3298
|
+
} | null;
|
3299
|
+
to?: {
|
3300
|
+
__typename: 'Contract';
|
3301
|
+
id: string;
|
3302
|
+
} | null;
|
3737
3303
|
}>;
|
3738
3304
|
};
|
3739
3305
|
export type GqlSubmitMutationVariables = Exact<{
|
@@ -3768,37 +3334,6 @@ export type GqlSubmitAndAwaitSubscription = {
|
|
3768
3334
|
__typename: 'Block';
|
3769
3335
|
id: string;
|
3770
3336
|
};
|
3771
|
-
receipts: Array<{
|
3772
|
-
__typename: 'Receipt';
|
3773
|
-
id?: string | null;
|
3774
|
-
pc?: string | null;
|
3775
|
-
is?: string | null;
|
3776
|
-
to?: string | null;
|
3777
|
-
toAddress?: string | null;
|
3778
|
-
amount?: string | null;
|
3779
|
-
assetId?: string | null;
|
3780
|
-
gas?: string | null;
|
3781
|
-
param1?: string | null;
|
3782
|
-
param2?: string | null;
|
3783
|
-
val?: string | null;
|
3784
|
-
ptr?: string | null;
|
3785
|
-
digest?: string | null;
|
3786
|
-
reason?: string | null;
|
3787
|
-
ra?: string | null;
|
3788
|
-
rb?: string | null;
|
3789
|
-
rc?: string | null;
|
3790
|
-
rd?: string | null;
|
3791
|
-
len?: string | null;
|
3792
|
-
receiptType: GqlReceiptType;
|
3793
|
-
result?: string | null;
|
3794
|
-
gasUsed?: string | null;
|
3795
|
-
data?: string | null;
|
3796
|
-
sender?: string | null;
|
3797
|
-
recipient?: string | null;
|
3798
|
-
nonce?: string | null;
|
3799
|
-
contractId?: string | null;
|
3800
|
-
subId?: string | null;
|
3801
|
-
}>;
|
3802
3337
|
} | {
|
3803
3338
|
__typename: 'SqueezedOutStatus';
|
3804
3339
|
reason: string;
|
@@ -3815,37 +3350,6 @@ export type GqlSubmitAndAwaitSubscription = {
|
|
3815
3350
|
__typename: 'Block';
|
3816
3351
|
id: string;
|
3817
3352
|
};
|
3818
|
-
receipts: Array<{
|
3819
|
-
__typename: 'Receipt';
|
3820
|
-
id?: string | null;
|
3821
|
-
pc?: string | null;
|
3822
|
-
is?: string | null;
|
3823
|
-
to?: string | null;
|
3824
|
-
toAddress?: string | null;
|
3825
|
-
amount?: string | null;
|
3826
|
-
assetId?: string | null;
|
3827
|
-
gas?: string | null;
|
3828
|
-
param1?: string | null;
|
3829
|
-
param2?: string | null;
|
3830
|
-
val?: string | null;
|
3831
|
-
ptr?: string | null;
|
3832
|
-
digest?: string | null;
|
3833
|
-
reason?: string | null;
|
3834
|
-
ra?: string | null;
|
3835
|
-
rb?: string | null;
|
3836
|
-
rc?: string | null;
|
3837
|
-
rd?: string | null;
|
3838
|
-
len?: string | null;
|
3839
|
-
receiptType: GqlReceiptType;
|
3840
|
-
result?: string | null;
|
3841
|
-
gasUsed?: string | null;
|
3842
|
-
data?: string | null;
|
3843
|
-
sender?: string | null;
|
3844
|
-
recipient?: string | null;
|
3845
|
-
nonce?: string | null;
|
3846
|
-
contractId?: string | null;
|
3847
|
-
subId?: string | null;
|
3848
|
-
}>;
|
3849
3353
|
programState?: {
|
3850
3354
|
__typename: 'ProgramState';
|
3851
3355
|
returnType: GqlReturnType;
|
@@ -3867,37 +3371,6 @@ export type GqlStatusChangeSubscription = {
|
|
3867
3371
|
__typename: 'Block';
|
3868
3372
|
id: string;
|
3869
3373
|
};
|
3870
|
-
receipts: Array<{
|
3871
|
-
__typename: 'Receipt';
|
3872
|
-
id?: string | null;
|
3873
|
-
pc?: string | null;
|
3874
|
-
is?: string | null;
|
3875
|
-
to?: string | null;
|
3876
|
-
toAddress?: string | null;
|
3877
|
-
amount?: string | null;
|
3878
|
-
assetId?: string | null;
|
3879
|
-
gas?: string | null;
|
3880
|
-
param1?: string | null;
|
3881
|
-
param2?: string | null;
|
3882
|
-
val?: string | null;
|
3883
|
-
ptr?: string | null;
|
3884
|
-
digest?: string | null;
|
3885
|
-
reason?: string | null;
|
3886
|
-
ra?: string | null;
|
3887
|
-
rb?: string | null;
|
3888
|
-
rc?: string | null;
|
3889
|
-
rd?: string | null;
|
3890
|
-
len?: string | null;
|
3891
|
-
receiptType: GqlReceiptType;
|
3892
|
-
result?: string | null;
|
3893
|
-
gasUsed?: string | null;
|
3894
|
-
data?: string | null;
|
3895
|
-
sender?: string | null;
|
3896
|
-
recipient?: string | null;
|
3897
|
-
nonce?: string | null;
|
3898
|
-
contractId?: string | null;
|
3899
|
-
subId?: string | null;
|
3900
|
-
}>;
|
3901
3374
|
} | {
|
3902
3375
|
__typename: 'SqueezedOutStatus';
|
3903
3376
|
reason: string;
|
@@ -3914,37 +3387,6 @@ export type GqlStatusChangeSubscription = {
|
|
3914
3387
|
__typename: 'Block';
|
3915
3388
|
id: string;
|
3916
3389
|
};
|
3917
|
-
receipts: Array<{
|
3918
|
-
__typename: 'Receipt';
|
3919
|
-
id?: string | null;
|
3920
|
-
pc?: string | null;
|
3921
|
-
is?: string | null;
|
3922
|
-
to?: string | null;
|
3923
|
-
toAddress?: string | null;
|
3924
|
-
amount?: string | null;
|
3925
|
-
assetId?: string | null;
|
3926
|
-
gas?: string | null;
|
3927
|
-
param1?: string | null;
|
3928
|
-
param2?: string | null;
|
3929
|
-
val?: string | null;
|
3930
|
-
ptr?: string | null;
|
3931
|
-
digest?: string | null;
|
3932
|
-
reason?: string | null;
|
3933
|
-
ra?: string | null;
|
3934
|
-
rb?: string | null;
|
3935
|
-
rc?: string | null;
|
3936
|
-
rd?: string | null;
|
3937
|
-
len?: string | null;
|
3938
|
-
receiptType: GqlReceiptType;
|
3939
|
-
result?: string | null;
|
3940
|
-
gasUsed?: string | null;
|
3941
|
-
data?: string | null;
|
3942
|
-
sender?: string | null;
|
3943
|
-
recipient?: string | null;
|
3944
|
-
nonce?: string | null;
|
3945
|
-
contractId?: string | null;
|
3946
|
-
subId?: string | null;
|
3947
|
-
}>;
|
3948
3390
|
programState?: {
|
3949
3391
|
__typename: 'ProgramState';
|
3950
3392
|
returnType: GqlReturnType;
|
@@ -3957,10 +3399,6 @@ export declare const TransactionStatusFragmentFragmentDoc: DocumentNode;
|
|
3957
3399
|
export declare const TransactionFragmentFragmentDoc: DocumentNode;
|
3958
3400
|
export declare const InputEstimatePredicatesFragmentFragmentDoc: DocumentNode;
|
3959
3401
|
export declare const TransactionEstimatePredicatesFragmentFragmentDoc: DocumentNode;
|
3960
|
-
export declare const DryRunFailureStatusFragmentFragmentDoc: DocumentNode;
|
3961
|
-
export declare const DryRunSuccessStatusFragmentFragmentDoc: DocumentNode;
|
3962
|
-
export declare const DryRunTransactionStatusFragmentFragmentDoc: DocumentNode;
|
3963
|
-
export declare const DryRunTransactionExecutionStatusFragmentFragmentDoc: DocumentNode;
|
3964
3402
|
export declare const CoinFragmentFragmentDoc: DocumentNode;
|
3965
3403
|
export declare const MessageCoinFragmentFragmentDoc: DocumentNode;
|
3966
3404
|
export declare const MessageFragmentFragmentDoc: DocumentNode;
|
@@ -3996,8 +3434,6 @@ export declare const GetCoinsToSpendDocument: DocumentNode;
|
|
3996
3434
|
export declare const GetContractDocument: DocumentNode;
|
3997
3435
|
export declare const GetContractBalanceDocument: DocumentNode;
|
3998
3436
|
export declare const GetBalanceDocument: DocumentNode;
|
3999
|
-
export declare const GetLatestGasPriceDocument: DocumentNode;
|
4000
|
-
export declare const EstimateGasPriceDocument: DocumentNode;
|
4001
3437
|
export declare const GetBalancesDocument: DocumentNode;
|
4002
3438
|
export declare const GetMessagesDocument: DocumentNode;
|
4003
3439
|
export declare const GetMessageProofDocument: DocumentNode;
|
@@ -4026,8 +3462,6 @@ export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
4026
3462
|
getContract(variables: GqlGetContractQueryVariables, options?: C): Promise<GqlGetContractQuery>;
|
4027
3463
|
getContractBalance(variables: GqlGetContractBalanceQueryVariables, options?: C): Promise<GqlGetContractBalanceQuery>;
|
4028
3464
|
getBalance(variables: GqlGetBalanceQueryVariables, options?: C): Promise<GqlGetBalanceQuery>;
|
4029
|
-
getLatestGasPrice(variables?: GqlGetLatestGasPriceQueryVariables, options?: C): Promise<GqlGetLatestGasPriceQuery>;
|
4030
|
-
estimateGasPrice(variables: GqlEstimateGasPriceQueryVariables, options?: C): Promise<GqlEstimateGasPriceQuery>;
|
4031
3465
|
getBalances(variables: GqlGetBalancesQueryVariables, options?: C): Promise<GqlGetBalancesQuery>;
|
4032
3466
|
getMessages(variables: GqlGetMessagesQueryVariables, options?: C): Promise<GqlGetMessagesQuery>;
|
4033
3467
|
getMessageProof(variables: GqlGetMessageProofQueryVariables, options?: C): Promise<GqlGetMessageProofQuery>;
|