@fuel-ts/account 0.0.0-rc-2021-20240415193305 → 0.0.0-rc-1976-20240416161016
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 +600 -829
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +600 -835
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +443 -677
- 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 +329 -911
- 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 -7
- package/dist/providers/message.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +34 -37
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/create-transaction-request.d.ts +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 +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/seedTestWallet.d.ts.map +1 -1
- package/dist/test-utils.global.js +1114 -1578
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +599 -813
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +455 -669
- package/dist/test-utils.mjs.map +1 -1
- package/dist/wallet/base-wallet-unlocked.d.ts.map +1 -1
- package/package.json +22 -27
@@ -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';
|
@@ -1414,33 +1167,27 @@ export type GqlMessageProofFragmentFragment = {
|
|
1414
1167
|
__typename: 'Header';
|
1415
1168
|
id: string;
|
1416
1169
|
daHeight: string;
|
1417
|
-
consensusParametersVersion: any;
|
1418
|
-
stateTransitionBytecodeVersion: any;
|
1419
1170
|
transactionsCount: string;
|
1420
|
-
messageReceiptCount: string;
|
1421
1171
|
transactionsRoot: string;
|
1422
|
-
messageOutboxRoot: string;
|
1423
|
-
eventInboxRoot: string;
|
1424
1172
|
height: any;
|
1425
1173
|
prevRoot: string;
|
1426
1174
|
time: string;
|
1427
1175
|
applicationHash: string;
|
1176
|
+
messageReceiptRoot: string;
|
1177
|
+
messageReceiptCount: string;
|
1428
1178
|
};
|
1429
1179
|
commitBlockHeader: {
|
1430
1180
|
__typename: 'Header';
|
1431
1181
|
id: string;
|
1432
1182
|
daHeight: string;
|
1433
|
-
consensusParametersVersion: any;
|
1434
|
-
stateTransitionBytecodeVersion: any;
|
1435
1183
|
transactionsCount: string;
|
1436
|
-
messageReceiptCount: string;
|
1437
1184
|
transactionsRoot: string;
|
1438
|
-
messageOutboxRoot: string;
|
1439
|
-
eventInboxRoot: string;
|
1440
1185
|
height: any;
|
1441
1186
|
prevRoot: string;
|
1442
1187
|
time: string;
|
1443
1188
|
applicationHash: string;
|
1189
|
+
messageReceiptRoot: string;
|
1190
|
+
messageReceiptCount: string;
|
1444
1191
|
};
|
1445
1192
|
};
|
1446
1193
|
export type GqlBalanceFragmentFragment = {
|
@@ -1504,6 +1251,7 @@ export type GqlGasCostsFragmentFragment = {
|
|
1504
1251
|
cb: string;
|
1505
1252
|
cfei: string;
|
1506
1253
|
cfsi: string;
|
1254
|
+
croo: string;
|
1507
1255
|
div: string;
|
1508
1256
|
divi: string;
|
1509
1257
|
ecr1: string;
|
@@ -1581,10 +1329,6 @@ export type GqlGasCostsFragmentFragment = {
|
|
1581
1329
|
xor: string;
|
1582
1330
|
xori: string;
|
1583
1331
|
newStoragePerByte: string;
|
1584
|
-
version: {
|
1585
|
-
__typename: 'Version';
|
1586
|
-
value: any;
|
1587
|
-
};
|
1588
1332
|
call: {
|
1589
1333
|
__typename: 'HeavyOperation';
|
1590
1334
|
base: string;
|
@@ -1603,15 +1347,6 @@ export type GqlGasCostsFragmentFragment = {
|
|
1603
1347
|
base: string;
|
1604
1348
|
unitsPerGas: string;
|
1605
1349
|
};
|
1606
|
-
croo: {
|
1607
|
-
__typename: 'HeavyOperation';
|
1608
|
-
base: string;
|
1609
|
-
gasPerUnit: string;
|
1610
|
-
} | {
|
1611
|
-
__typename: 'LightOperation';
|
1612
|
-
base: string;
|
1613
|
-
unitsPerGas: string;
|
1614
|
-
};
|
1615
1350
|
csiz: {
|
1616
1351
|
__typename: 'HeavyOperation';
|
1617
1352
|
base: string;
|
@@ -1779,10 +1514,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1779
1514
|
__typename: 'ConsensusParameters';
|
1780
1515
|
baseAssetId: string;
|
1781
1516
|
chainId: string;
|
1782
|
-
version: {
|
1783
|
-
__typename: 'Version';
|
1784
|
-
value: any;
|
1785
|
-
};
|
1786
1517
|
txParams: {
|
1787
1518
|
__typename: 'TxParameters';
|
1788
1519
|
maxInputs: any;
|
@@ -1827,6 +1558,7 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1827
1558
|
cb: string;
|
1828
1559
|
cfei: string;
|
1829
1560
|
cfsi: string;
|
1561
|
+
croo: string;
|
1830
1562
|
div: string;
|
1831
1563
|
divi: string;
|
1832
1564
|
ecr1: string;
|
@@ -1904,10 +1636,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1904
1636
|
xor: string;
|
1905
1637
|
xori: string;
|
1906
1638
|
newStoragePerByte: string;
|
1907
|
-
version: {
|
1908
|
-
__typename: 'Version';
|
1909
|
-
value: any;
|
1910
|
-
};
|
1911
1639
|
call: {
|
1912
1640
|
__typename: 'HeavyOperation';
|
1913
1641
|
base: string;
|
@@ -1926,15 +1654,6 @@ export type GqlConsensusParametersFragmentFragment = {
|
|
1926
1654
|
base: string;
|
1927
1655
|
unitsPerGas: string;
|
1928
1656
|
};
|
1929
|
-
croo: {
|
1930
|
-
__typename: 'HeavyOperation';
|
1931
|
-
base: string;
|
1932
|
-
gasPerUnit: string;
|
1933
|
-
} | {
|
1934
|
-
__typename: 'LightOperation';
|
1935
|
-
base: string;
|
1936
|
-
unitsPerGas: string;
|
1937
|
-
};
|
1938
1657
|
csiz: {
|
1939
1658
|
__typename: 'HeavyOperation';
|
1940
1659
|
base: string;
|
@@ -2106,9 +1825,9 @@ export type GqlChainInfoFragmentFragment = {
|
|
2106
1825
|
latestBlock: {
|
2107
1826
|
__typename: 'Block';
|
2108
1827
|
id: string;
|
2109
|
-
height: any;
|
2110
1828
|
header: {
|
2111
1829
|
__typename: 'Header';
|
1830
|
+
height: any;
|
2112
1831
|
time: string;
|
2113
1832
|
};
|
2114
1833
|
transactions: Array<{
|
@@ -2120,10 +1839,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2120
1839
|
__typename: 'ConsensusParameters';
|
2121
1840
|
baseAssetId: string;
|
2122
1841
|
chainId: string;
|
2123
|
-
version: {
|
2124
|
-
__typename: 'Version';
|
2125
|
-
value: any;
|
2126
|
-
};
|
2127
1842
|
txParams: {
|
2128
1843
|
__typename: 'TxParameters';
|
2129
1844
|
maxInputs: any;
|
@@ -2168,6 +1883,7 @@ export type GqlChainInfoFragmentFragment = {
|
|
2168
1883
|
cb: string;
|
2169
1884
|
cfei: string;
|
2170
1885
|
cfsi: string;
|
1886
|
+
croo: string;
|
2171
1887
|
div: string;
|
2172
1888
|
divi: string;
|
2173
1889
|
ecr1: string;
|
@@ -2245,10 +1961,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2245
1961
|
xor: string;
|
2246
1962
|
xori: string;
|
2247
1963
|
newStoragePerByte: string;
|
2248
|
-
version: {
|
2249
|
-
__typename: 'Version';
|
2250
|
-
value: any;
|
2251
|
-
};
|
2252
1964
|
call: {
|
2253
1965
|
__typename: 'HeavyOperation';
|
2254
1966
|
base: string;
|
@@ -2267,15 +1979,6 @@ export type GqlChainInfoFragmentFragment = {
|
|
2267
1979
|
base: string;
|
2268
1980
|
unitsPerGas: string;
|
2269
1981
|
};
|
2270
|
-
croo: {
|
2271
|
-
__typename: 'HeavyOperation';
|
2272
|
-
base: string;
|
2273
|
-
gasPerUnit: string;
|
2274
|
-
} | {
|
2275
|
-
__typename: 'LightOperation';
|
2276
|
-
base: string;
|
2277
|
-
unitsPerGas: string;
|
2278
|
-
};
|
2279
1982
|
csiz: {
|
2280
1983
|
__typename: 'HeavyOperation';
|
2281
1984
|
base: string;
|
@@ -2468,9 +2171,19 @@ export type GqlNodeInfoFragmentFragment = {
|
|
2468
2171
|
__typename: 'NodeInfo';
|
2469
2172
|
utxoValidation: boolean;
|
2470
2173
|
vmBacktrace: boolean;
|
2174
|
+
minGasPrice: string;
|
2471
2175
|
maxTx: string;
|
2472
2176
|
maxDepth: string;
|
2473
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
|
+
}>;
|
2474
2187
|
};
|
2475
2188
|
export type GqlGetNodeInfoQueryVariables = Exact<{
|
2476
2189
|
[key: string]: never;
|
@@ -2481,9 +2194,19 @@ export type GqlGetNodeInfoQuery = {
|
|
2481
2194
|
__typename: 'NodeInfo';
|
2482
2195
|
utxoValidation: boolean;
|
2483
2196
|
vmBacktrace: boolean;
|
2197
|
+
minGasPrice: string;
|
2484
2198
|
maxTx: string;
|
2485
2199
|
maxDepth: string;
|
2486
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
|
+
}>;
|
2487
2210
|
};
|
2488
2211
|
};
|
2489
2212
|
export type GqlGetChainQueryVariables = Exact<{
|
@@ -2498,9 +2221,9 @@ export type GqlGetChainQuery = {
|
|
2498
2221
|
latestBlock: {
|
2499
2222
|
__typename: 'Block';
|
2500
2223
|
id: string;
|
2501
|
-
height: any;
|
2502
2224
|
header: {
|
2503
2225
|
__typename: 'Header';
|
2226
|
+
height: any;
|
2504
2227
|
time: string;
|
2505
2228
|
};
|
2506
2229
|
transactions: Array<{
|
@@ -2512,10 +2235,6 @@ export type GqlGetChainQuery = {
|
|
2512
2235
|
__typename: 'ConsensusParameters';
|
2513
2236
|
baseAssetId: string;
|
2514
2237
|
chainId: string;
|
2515
|
-
version: {
|
2516
|
-
__typename: 'Version';
|
2517
|
-
value: any;
|
2518
|
-
};
|
2519
2238
|
txParams: {
|
2520
2239
|
__typename: 'TxParameters';
|
2521
2240
|
maxInputs: any;
|
@@ -2560,6 +2279,7 @@ export type GqlGetChainQuery = {
|
|
2560
2279
|
cb: string;
|
2561
2280
|
cfei: string;
|
2562
2281
|
cfsi: string;
|
2282
|
+
croo: string;
|
2563
2283
|
div: string;
|
2564
2284
|
divi: string;
|
2565
2285
|
ecr1: string;
|
@@ -2637,10 +2357,6 @@ export type GqlGetChainQuery = {
|
|
2637
2357
|
xor: string;
|
2638
2358
|
xori: string;
|
2639
2359
|
newStoragePerByte: string;
|
2640
|
-
version: {
|
2641
|
-
__typename: 'Version';
|
2642
|
-
value: any;
|
2643
|
-
};
|
2644
2360
|
call: {
|
2645
2361
|
__typename: 'HeavyOperation';
|
2646
2362
|
base: string;
|
@@ -2659,15 +2375,6 @@ export type GqlGetChainQuery = {
|
|
2659
2375
|
base: string;
|
2660
2376
|
unitsPerGas: string;
|
2661
2377
|
};
|
2662
|
-
croo: {
|
2663
|
-
__typename: 'HeavyOperation';
|
2664
|
-
base: string;
|
2665
|
-
gasPerUnit: string;
|
2666
|
-
} | {
|
2667
|
-
__typename: 'LightOperation';
|
2668
|
-
base: string;
|
2669
|
-
unitsPerGas: string;
|
2670
|
-
};
|
2671
2378
|
csiz: {
|
2672
2379
|
__typename: 'HeavyOperation';
|
2673
2380
|
base: string;
|
@@ -2843,6 +2550,44 @@ export type GqlGetTransactionQuery = {
|
|
2843
2550
|
__typename: 'Transaction';
|
2844
2551
|
id: string;
|
2845
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;
|
2846
2591
|
status?: {
|
2847
2592
|
__typename: 'FailureStatus';
|
2848
2593
|
time: string;
|
@@ -2852,37 +2597,6 @@ export type GqlGetTransactionQuery = {
|
|
2852
2597
|
__typename: 'Block';
|
2853
2598
|
id: string;
|
2854
2599
|
};
|
2855
|
-
receipts: Array<{
|
2856
|
-
__typename: 'Receipt';
|
2857
|
-
id?: string | null;
|
2858
|
-
pc?: string | null;
|
2859
|
-
is?: string | null;
|
2860
|
-
to?: string | null;
|
2861
|
-
toAddress?: string | null;
|
2862
|
-
amount?: string | null;
|
2863
|
-
assetId?: string | null;
|
2864
|
-
gas?: string | null;
|
2865
|
-
param1?: string | null;
|
2866
|
-
param2?: string | null;
|
2867
|
-
val?: string | null;
|
2868
|
-
ptr?: string | null;
|
2869
|
-
digest?: string | null;
|
2870
|
-
reason?: string | null;
|
2871
|
-
ra?: string | null;
|
2872
|
-
rb?: string | null;
|
2873
|
-
rc?: string | null;
|
2874
|
-
rd?: string | null;
|
2875
|
-
len?: string | null;
|
2876
|
-
receiptType: GqlReceiptType;
|
2877
|
-
result?: string | null;
|
2878
|
-
gasUsed?: string | null;
|
2879
|
-
data?: string | null;
|
2880
|
-
sender?: string | null;
|
2881
|
-
recipient?: string | null;
|
2882
|
-
nonce?: string | null;
|
2883
|
-
contractId?: string | null;
|
2884
|
-
subId?: string | null;
|
2885
|
-
}>;
|
2886
2600
|
} | {
|
2887
2601
|
__typename: 'SqueezedOutStatus';
|
2888
2602
|
reason: string;
|
@@ -2899,37 +2613,6 @@ export type GqlGetTransactionQuery = {
|
|
2899
2613
|
__typename: 'Block';
|
2900
2614
|
id: string;
|
2901
2615
|
};
|
2902
|
-
receipts: Array<{
|
2903
|
-
__typename: 'Receipt';
|
2904
|
-
id?: string | null;
|
2905
|
-
pc?: string | null;
|
2906
|
-
is?: string | null;
|
2907
|
-
to?: string | null;
|
2908
|
-
toAddress?: string | null;
|
2909
|
-
amount?: string | null;
|
2910
|
-
assetId?: string | null;
|
2911
|
-
gas?: string | null;
|
2912
|
-
param1?: string | null;
|
2913
|
-
param2?: string | null;
|
2914
|
-
val?: string | null;
|
2915
|
-
ptr?: string | null;
|
2916
|
-
digest?: string | null;
|
2917
|
-
reason?: string | null;
|
2918
|
-
ra?: string | null;
|
2919
|
-
rb?: string | null;
|
2920
|
-
rc?: string | null;
|
2921
|
-
rd?: string | null;
|
2922
|
-
len?: string | null;
|
2923
|
-
receiptType: GqlReceiptType;
|
2924
|
-
result?: string | null;
|
2925
|
-
gasUsed?: string | null;
|
2926
|
-
data?: string | null;
|
2927
|
-
sender?: string | null;
|
2928
|
-
recipient?: string | null;
|
2929
|
-
nonce?: string | null;
|
2930
|
-
contractId?: string | null;
|
2931
|
-
subId?: string | null;
|
2932
|
-
}>;
|
2933
2616
|
programState?: {
|
2934
2617
|
__typename: 'ProgramState';
|
2935
2618
|
returnType: GqlReturnType;
|
@@ -2947,6 +2630,44 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
2947
2630
|
__typename: 'Transaction';
|
2948
2631
|
id: string;
|
2949
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;
|
2950
2671
|
status?: {
|
2951
2672
|
__typename: 'FailureStatus';
|
2952
2673
|
time: string;
|
@@ -2956,37 +2677,6 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
2956
2677
|
__typename: 'Block';
|
2957
2678
|
id: string;
|
2958
2679
|
};
|
2959
|
-
receipts: Array<{
|
2960
|
-
__typename: 'Receipt';
|
2961
|
-
id?: string | null;
|
2962
|
-
pc?: string | null;
|
2963
|
-
is?: string | null;
|
2964
|
-
to?: string | null;
|
2965
|
-
toAddress?: string | null;
|
2966
|
-
amount?: string | null;
|
2967
|
-
assetId?: string | null;
|
2968
|
-
gas?: string | null;
|
2969
|
-
param1?: string | null;
|
2970
|
-
param2?: string | null;
|
2971
|
-
val?: string | null;
|
2972
|
-
ptr?: string | null;
|
2973
|
-
digest?: string | null;
|
2974
|
-
reason?: string | null;
|
2975
|
-
ra?: string | null;
|
2976
|
-
rb?: string | null;
|
2977
|
-
rc?: string | null;
|
2978
|
-
rd?: string | null;
|
2979
|
-
len?: string | null;
|
2980
|
-
receiptType: GqlReceiptType;
|
2981
|
-
result?: string | null;
|
2982
|
-
gasUsed?: string | null;
|
2983
|
-
data?: string | null;
|
2984
|
-
sender?: string | null;
|
2985
|
-
recipient?: string | null;
|
2986
|
-
nonce?: string | null;
|
2987
|
-
contractId?: string | null;
|
2988
|
-
subId?: string | null;
|
2989
|
-
}>;
|
2990
2680
|
} | {
|
2991
2681
|
__typename: 'SqueezedOutStatus';
|
2992
2682
|
reason: string;
|
@@ -3003,37 +2693,6 @@ export type GqlGetTransactionWithReceiptsQuery = {
|
|
3003
2693
|
__typename: 'Block';
|
3004
2694
|
id: string;
|
3005
2695
|
};
|
3006
|
-
receipts: Array<{
|
3007
|
-
__typename: 'Receipt';
|
3008
|
-
id?: string | null;
|
3009
|
-
pc?: string | null;
|
3010
|
-
is?: string | null;
|
3011
|
-
to?: string | null;
|
3012
|
-
toAddress?: string | null;
|
3013
|
-
amount?: string | null;
|
3014
|
-
assetId?: string | null;
|
3015
|
-
gas?: string | null;
|
3016
|
-
param1?: string | null;
|
3017
|
-
param2?: string | null;
|
3018
|
-
val?: string | null;
|
3019
|
-
ptr?: string | null;
|
3020
|
-
digest?: string | null;
|
3021
|
-
reason?: string | null;
|
3022
|
-
ra?: string | null;
|
3023
|
-
rb?: string | null;
|
3024
|
-
rc?: string | null;
|
3025
|
-
rd?: string | null;
|
3026
|
-
len?: string | null;
|
3027
|
-
receiptType: GqlReceiptType;
|
3028
|
-
result?: string | null;
|
3029
|
-
gasUsed?: string | null;
|
3030
|
-
data?: string | null;
|
3031
|
-
sender?: string | null;
|
3032
|
-
recipient?: string | null;
|
3033
|
-
nonce?: string | null;
|
3034
|
-
contractId?: string | null;
|
3035
|
-
subId?: string | null;
|
3036
|
-
}>;
|
3037
2696
|
programState?: {
|
3038
2697
|
__typename: 'ProgramState';
|
3039
2698
|
returnType: GqlReturnType;
|
@@ -3058,6 +2717,44 @@ export type GqlGetTransactionsQuery = {
|
|
3058
2717
|
__typename: 'Transaction';
|
3059
2718
|
id: string;
|
3060
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;
|
3061
2758
|
status?: {
|
3062
2759
|
__typename: 'FailureStatus';
|
3063
2760
|
time: string;
|
@@ -3067,37 +2764,6 @@ export type GqlGetTransactionsQuery = {
|
|
3067
2764
|
__typename: 'Block';
|
3068
2765
|
id: string;
|
3069
2766
|
};
|
3070
|
-
receipts: Array<{
|
3071
|
-
__typename: 'Receipt';
|
3072
|
-
id?: string | null;
|
3073
|
-
pc?: string | null;
|
3074
|
-
is?: string | null;
|
3075
|
-
to?: string | null;
|
3076
|
-
toAddress?: string | null;
|
3077
|
-
amount?: string | null;
|
3078
|
-
assetId?: string | null;
|
3079
|
-
gas?: string | null;
|
3080
|
-
param1?: string | null;
|
3081
|
-
param2?: string | null;
|
3082
|
-
val?: string | null;
|
3083
|
-
ptr?: string | null;
|
3084
|
-
digest?: string | null;
|
3085
|
-
reason?: string | null;
|
3086
|
-
ra?: string | null;
|
3087
|
-
rb?: string | null;
|
3088
|
-
rc?: string | null;
|
3089
|
-
rd?: string | null;
|
3090
|
-
len?: string | null;
|
3091
|
-
receiptType: GqlReceiptType;
|
3092
|
-
result?: string | null;
|
3093
|
-
gasUsed?: string | null;
|
3094
|
-
data?: string | null;
|
3095
|
-
sender?: string | null;
|
3096
|
-
recipient?: string | null;
|
3097
|
-
nonce?: string | null;
|
3098
|
-
contractId?: string | null;
|
3099
|
-
subId?: string | null;
|
3100
|
-
}>;
|
3101
2767
|
} | {
|
3102
2768
|
__typename: 'SqueezedOutStatus';
|
3103
2769
|
reason: string;
|
@@ -3114,37 +2780,6 @@ export type GqlGetTransactionsQuery = {
|
|
3114
2780
|
__typename: 'Block';
|
3115
2781
|
id: string;
|
3116
2782
|
};
|
3117
|
-
receipts: Array<{
|
3118
|
-
__typename: 'Receipt';
|
3119
|
-
id?: string | null;
|
3120
|
-
pc?: string | null;
|
3121
|
-
is?: string | null;
|
3122
|
-
to?: string | null;
|
3123
|
-
toAddress?: string | null;
|
3124
|
-
amount?: string | null;
|
3125
|
-
assetId?: string | null;
|
3126
|
-
gas?: string | null;
|
3127
|
-
param1?: string | null;
|
3128
|
-
param2?: string | null;
|
3129
|
-
val?: string | null;
|
3130
|
-
ptr?: string | null;
|
3131
|
-
digest?: string | null;
|
3132
|
-
reason?: string | null;
|
3133
|
-
ra?: string | null;
|
3134
|
-
rb?: string | null;
|
3135
|
-
rc?: string | null;
|
3136
|
-
rd?: string | null;
|
3137
|
-
len?: string | null;
|
3138
|
-
receiptType: GqlReceiptType;
|
3139
|
-
result?: string | null;
|
3140
|
-
gasUsed?: string | null;
|
3141
|
-
data?: string | null;
|
3142
|
-
sender?: string | null;
|
3143
|
-
recipient?: string | null;
|
3144
|
-
nonce?: string | null;
|
3145
|
-
contractId?: string | null;
|
3146
|
-
subId?: string | null;
|
3147
|
-
}>;
|
3148
2783
|
programState?: {
|
3149
2784
|
__typename: 'ProgramState';
|
3150
2785
|
returnType: GqlReturnType;
|
@@ -3179,6 +2814,44 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3179
2814
|
__typename: 'Transaction';
|
3180
2815
|
id: string;
|
3181
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;
|
3182
2855
|
status?: {
|
3183
2856
|
__typename: 'FailureStatus';
|
3184
2857
|
time: string;
|
@@ -3188,37 +2861,6 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3188
2861
|
__typename: 'Block';
|
3189
2862
|
id: string;
|
3190
2863
|
};
|
3191
|
-
receipts: Array<{
|
3192
|
-
__typename: 'Receipt';
|
3193
|
-
id?: string | null;
|
3194
|
-
pc?: string | null;
|
3195
|
-
is?: string | null;
|
3196
|
-
to?: string | null;
|
3197
|
-
toAddress?: string | null;
|
3198
|
-
amount?: string | null;
|
3199
|
-
assetId?: string | null;
|
3200
|
-
gas?: string | null;
|
3201
|
-
param1?: string | null;
|
3202
|
-
param2?: string | null;
|
3203
|
-
val?: string | null;
|
3204
|
-
ptr?: string | null;
|
3205
|
-
digest?: string | null;
|
3206
|
-
reason?: string | null;
|
3207
|
-
ra?: string | null;
|
3208
|
-
rb?: string | null;
|
3209
|
-
rc?: string | null;
|
3210
|
-
rd?: string | null;
|
3211
|
-
len?: string | null;
|
3212
|
-
receiptType: GqlReceiptType;
|
3213
|
-
result?: string | null;
|
3214
|
-
gasUsed?: string | null;
|
3215
|
-
data?: string | null;
|
3216
|
-
sender?: string | null;
|
3217
|
-
recipient?: string | null;
|
3218
|
-
nonce?: string | null;
|
3219
|
-
contractId?: string | null;
|
3220
|
-
subId?: string | null;
|
3221
|
-
}>;
|
3222
2864
|
} | {
|
3223
2865
|
__typename: 'SqueezedOutStatus';
|
3224
2866
|
reason: string;
|
@@ -3235,37 +2877,6 @@ export type GqlGetTransactionsByOwnerQuery = {
|
|
3235
2877
|
__typename: 'Block';
|
3236
2878
|
id: string;
|
3237
2879
|
};
|
3238
|
-
receipts: Array<{
|
3239
|
-
__typename: 'Receipt';
|
3240
|
-
id?: string | null;
|
3241
|
-
pc?: string | null;
|
3242
|
-
is?: string | null;
|
3243
|
-
to?: string | null;
|
3244
|
-
toAddress?: string | null;
|
3245
|
-
amount?: string | null;
|
3246
|
-
assetId?: string | null;
|
3247
|
-
gas?: string | null;
|
3248
|
-
param1?: string | null;
|
3249
|
-
param2?: string | null;
|
3250
|
-
val?: string | null;
|
3251
|
-
ptr?: string | null;
|
3252
|
-
digest?: string | null;
|
3253
|
-
reason?: string | null;
|
3254
|
-
ra?: string | null;
|
3255
|
-
rb?: string | null;
|
3256
|
-
rc?: string | null;
|
3257
|
-
rd?: string | null;
|
3258
|
-
len?: string | null;
|
3259
|
-
receiptType: GqlReceiptType;
|
3260
|
-
result?: string | null;
|
3261
|
-
gasUsed?: string | null;
|
3262
|
-
data?: string | null;
|
3263
|
-
sender?: string | null;
|
3264
|
-
recipient?: string | null;
|
3265
|
-
nonce?: string | null;
|
3266
|
-
contractId?: string | null;
|
3267
|
-
subId?: string | null;
|
3268
|
-
}>;
|
3269
2880
|
programState?: {
|
3270
2881
|
__typename: 'ProgramState';
|
3271
2882
|
returnType: GqlReturnType;
|
@@ -3303,9 +2914,9 @@ export type GqlGetBlockQuery = {
|
|
3303
2914
|
block?: {
|
3304
2915
|
__typename: 'Block';
|
3305
2916
|
id: string;
|
3306
|
-
height: any;
|
3307
2917
|
header: {
|
3308
2918
|
__typename: 'Header';
|
2919
|
+
height: any;
|
3309
2920
|
time: string;
|
3310
2921
|
};
|
3311
2922
|
transactions: Array<{
|
@@ -3323,51 +2934,57 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3323
2934
|
block?: {
|
3324
2935
|
__typename: 'Block';
|
3325
2936
|
id: string;
|
3326
|
-
height: any;
|
3327
2937
|
transactions: Array<{
|
3328
2938
|
__typename: 'Transaction';
|
3329
2939
|
id: string;
|
3330
2940
|
rawPayload: string;
|
3331
|
-
|
3332
|
-
|
3333
|
-
|
3334
|
-
|
3335
|
-
|
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';
|
3336
2984
|
block: {
|
3337
2985
|
__typename: 'Block';
|
3338
2986
|
id: string;
|
3339
2987
|
};
|
3340
|
-
receipts: Array<{
|
3341
|
-
__typename: 'Receipt';
|
3342
|
-
id?: string | null;
|
3343
|
-
pc?: string | null;
|
3344
|
-
is?: string | null;
|
3345
|
-
to?: string | null;
|
3346
|
-
toAddress?: string | null;
|
3347
|
-
amount?: string | null;
|
3348
|
-
assetId?: string | null;
|
3349
|
-
gas?: string | null;
|
3350
|
-
param1?: string | null;
|
3351
|
-
param2?: string | null;
|
3352
|
-
val?: string | null;
|
3353
|
-
ptr?: string | null;
|
3354
|
-
digest?: string | null;
|
3355
|
-
reason?: string | null;
|
3356
|
-
ra?: string | null;
|
3357
|
-
rb?: string | null;
|
3358
|
-
rc?: string | null;
|
3359
|
-
rd?: string | null;
|
3360
|
-
len?: string | null;
|
3361
|
-
receiptType: GqlReceiptType;
|
3362
|
-
result?: string | null;
|
3363
|
-
gasUsed?: string | null;
|
3364
|
-
data?: string | null;
|
3365
|
-
sender?: string | null;
|
3366
|
-
recipient?: string | null;
|
3367
|
-
nonce?: string | null;
|
3368
|
-
contractId?: string | null;
|
3369
|
-
subId?: string | null;
|
3370
|
-
}>;
|
3371
2988
|
} | {
|
3372
2989
|
__typename: 'SqueezedOutStatus';
|
3373
2990
|
reason: string;
|
@@ -3384,37 +3001,6 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3384
3001
|
__typename: 'Block';
|
3385
3002
|
id: string;
|
3386
3003
|
};
|
3387
|
-
receipts: Array<{
|
3388
|
-
__typename: 'Receipt';
|
3389
|
-
id?: string | null;
|
3390
|
-
pc?: string | null;
|
3391
|
-
is?: string | null;
|
3392
|
-
to?: string | null;
|
3393
|
-
toAddress?: string | null;
|
3394
|
-
amount?: string | null;
|
3395
|
-
assetId?: string | null;
|
3396
|
-
gas?: string | null;
|
3397
|
-
param1?: string | null;
|
3398
|
-
param2?: string | null;
|
3399
|
-
val?: string | null;
|
3400
|
-
ptr?: string | null;
|
3401
|
-
digest?: string | null;
|
3402
|
-
reason?: string | null;
|
3403
|
-
ra?: string | null;
|
3404
|
-
rb?: string | null;
|
3405
|
-
rc?: string | null;
|
3406
|
-
rd?: string | null;
|
3407
|
-
len?: string | null;
|
3408
|
-
receiptType: GqlReceiptType;
|
3409
|
-
result?: string | null;
|
3410
|
-
gasUsed?: string | null;
|
3411
|
-
data?: string | null;
|
3412
|
-
sender?: string | null;
|
3413
|
-
recipient?: string | null;
|
3414
|
-
nonce?: string | null;
|
3415
|
-
contractId?: string | null;
|
3416
|
-
subId?: string | null;
|
3417
|
-
}>;
|
3418
3004
|
programState?: {
|
3419
3005
|
__typename: 'ProgramState';
|
3420
3006
|
returnType: GqlReturnType;
|
@@ -3424,6 +3010,7 @@ export type GqlGetBlockWithTransactionsQuery = {
|
|
3424
3010
|
}>;
|
3425
3011
|
header: {
|
3426
3012
|
__typename: 'Header';
|
3013
|
+
height: any;
|
3427
3014
|
time: string;
|
3428
3015
|
};
|
3429
3016
|
} | null;
|
@@ -3443,9 +3030,9 @@ export type GqlGetBlocksQuery = {
|
|
3443
3030
|
node: {
|
3444
3031
|
__typename: 'Block';
|
3445
3032
|
id: string;
|
3446
|
-
height: any;
|
3447
3033
|
header: {
|
3448
3034
|
__typename: 'Header';
|
3035
|
+
height: any;
|
3449
3036
|
time: string;
|
3450
3037
|
};
|
3451
3038
|
transactions: Array<{
|
@@ -3467,8 +3054,9 @@ export type GqlGetCoinQuery = {
|
|
3467
3054
|
owner: string;
|
3468
3055
|
amount: string;
|
3469
3056
|
assetId: string;
|
3057
|
+
maturity: any;
|
3470
3058
|
blockCreated: any;
|
3471
|
-
txCreatedIdx:
|
3059
|
+
txCreatedIdx: string;
|
3472
3060
|
} | null;
|
3473
3061
|
};
|
3474
3062
|
export type GqlGetCoinsQueryVariables = Exact<{
|
@@ -3490,8 +3078,9 @@ export type GqlGetCoinsQuery = {
|
|
3490
3078
|
owner: string;
|
3491
3079
|
amount: string;
|
3492
3080
|
assetId: string;
|
3081
|
+
maturity: any;
|
3493
3082
|
blockCreated: any;
|
3494
|
-
txCreatedIdx:
|
3083
|
+
txCreatedIdx: string;
|
3495
3084
|
};
|
3496
3085
|
}>;
|
3497
3086
|
};
|
@@ -3509,8 +3098,9 @@ export type GqlGetCoinsToSpendQuery = {
|
|
3509
3098
|
owner: string;
|
3510
3099
|
amount: string;
|
3511
3100
|
assetId: string;
|
3101
|
+
maturity: any;
|
3512
3102
|
blockCreated: any;
|
3513
|
-
txCreatedIdx:
|
3103
|
+
txCreatedIdx: string;
|
3514
3104
|
} | {
|
3515
3105
|
__typename: 'MessageCoin';
|
3516
3106
|
sender: string;
|
@@ -3558,26 +3148,6 @@ export type GqlGetBalanceQuery = {
|
|
3558
3148
|
assetId: string;
|
3559
3149
|
};
|
3560
3150
|
};
|
3561
|
-
export type GqlGetLatestGasPriceQueryVariables = Exact<{
|
3562
|
-
[key: string]: never;
|
3563
|
-
}>;
|
3564
|
-
export type GqlGetLatestGasPriceQuery = {
|
3565
|
-
__typename: 'Query';
|
3566
|
-
latestGasPrice: {
|
3567
|
-
__typename: 'LatestGasPrice';
|
3568
|
-
gasPrice: string;
|
3569
|
-
};
|
3570
|
-
};
|
3571
|
-
export type GqlEstimateGasPriceQueryVariables = Exact<{
|
3572
|
-
blockHorizon: Scalars['U32'];
|
3573
|
-
}>;
|
3574
|
-
export type GqlEstimateGasPriceQuery = {
|
3575
|
-
__typename: 'Query';
|
3576
|
-
estimateGasPrice: {
|
3577
|
-
__typename: 'EstimateGasPrice';
|
3578
|
-
gasPrice: string;
|
3579
|
-
};
|
3580
|
-
};
|
3581
3151
|
export type GqlGetBalancesQueryVariables = Exact<{
|
3582
3152
|
filter: GqlBalanceFilterInput;
|
3583
3153
|
after?: InputMaybe<Scalars['String']>;
|
@@ -3654,33 +3224,27 @@ export type GqlGetMessageProofQuery = {
|
|
3654
3224
|
__typename: 'Header';
|
3655
3225
|
id: string;
|
3656
3226
|
daHeight: string;
|
3657
|
-
consensusParametersVersion: any;
|
3658
|
-
stateTransitionBytecodeVersion: any;
|
3659
3227
|
transactionsCount: string;
|
3660
|
-
messageReceiptCount: string;
|
3661
3228
|
transactionsRoot: string;
|
3662
|
-
messageOutboxRoot: string;
|
3663
|
-
eventInboxRoot: string;
|
3664
3229
|
height: any;
|
3665
3230
|
prevRoot: string;
|
3666
3231
|
time: string;
|
3667
3232
|
applicationHash: string;
|
3233
|
+
messageReceiptRoot: string;
|
3234
|
+
messageReceiptCount: string;
|
3668
3235
|
};
|
3669
3236
|
commitBlockHeader: {
|
3670
3237
|
__typename: 'Header';
|
3671
3238
|
id: string;
|
3672
3239
|
daHeight: string;
|
3673
|
-
consensusParametersVersion: any;
|
3674
|
-
stateTransitionBytecodeVersion: any;
|
3675
3240
|
transactionsCount: string;
|
3676
|
-
messageReceiptCount: string;
|
3677
3241
|
transactionsRoot: string;
|
3678
|
-
messageOutboxRoot: string;
|
3679
|
-
eventInboxRoot: string;
|
3680
3242
|
height: any;
|
3681
3243
|
prevRoot: string;
|
3682
3244
|
time: string;
|
3683
3245
|
applicationHash: string;
|
3246
|
+
messageReceiptRoot: string;
|
3247
|
+
messageReceiptCount: string;
|
3684
3248
|
};
|
3685
3249
|
} | null;
|
3686
3250
|
};
|
@@ -3695,61 +3259,47 @@ export type GqlGetMessageStatusQuery = {
|
|
3695
3259
|
};
|
3696
3260
|
};
|
3697
3261
|
export type GqlDryRunMutationVariables = Exact<{
|
3698
|
-
|
3262
|
+
encodedTransaction: Scalars['HexString'];
|
3699
3263
|
utxoValidation?: InputMaybe<Scalars['Boolean']>;
|
3700
3264
|
}>;
|
3701
3265
|
export type GqlDryRunMutation = {
|
3702
3266
|
__typename: 'Mutation';
|
3703
3267
|
dryRun: Array<{
|
3704
|
-
__typename: '
|
3705
|
-
|
3706
|
-
|
3707
|
-
|
3708
|
-
|
3709
|
-
|
3710
|
-
|
3711
|
-
|
3712
|
-
|
3713
|
-
|
3714
|
-
|
3715
|
-
|
3716
|
-
|
3717
|
-
|
3718
|
-
|
3719
|
-
|
3720
|
-
|
3721
|
-
|
3722
|
-
|
3723
|
-
|
3724
|
-
|
3725
|
-
|
3726
|
-
|
3727
|
-
|
3728
|
-
|
3729
|
-
|
3730
|
-
|
3731
|
-
|
3732
|
-
|
3733
|
-
|
3734
|
-
|
3735
|
-
|
3736
|
-
|
3737
|
-
|
3738
|
-
|
3739
|
-
rb?: string | null;
|
3740
|
-
rc?: string | null;
|
3741
|
-
rd?: string | null;
|
3742
|
-
len?: string | null;
|
3743
|
-
receiptType: GqlReceiptType;
|
3744
|
-
result?: string | null;
|
3745
|
-
gasUsed?: string | null;
|
3746
|
-
data?: string | null;
|
3747
|
-
sender?: string | null;
|
3748
|
-
recipient?: string | null;
|
3749
|
-
nonce?: string | null;
|
3750
|
-
contractId?: string | null;
|
3751
|
-
subId?: string | null;
|
3752
|
-
}>;
|
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;
|
3753
3303
|
}>;
|
3754
3304
|
};
|
3755
3305
|
export type GqlSubmitMutationVariables = Exact<{
|
@@ -3784,37 +3334,6 @@ export type GqlSubmitAndAwaitSubscription = {
|
|
3784
3334
|
__typename: 'Block';
|
3785
3335
|
id: string;
|
3786
3336
|
};
|
3787
|
-
receipts: Array<{
|
3788
|
-
__typename: 'Receipt';
|
3789
|
-
id?: string | null;
|
3790
|
-
pc?: string | null;
|
3791
|
-
is?: string | null;
|
3792
|
-
to?: string | null;
|
3793
|
-
toAddress?: string | null;
|
3794
|
-
amount?: string | null;
|
3795
|
-
assetId?: string | null;
|
3796
|
-
gas?: string | null;
|
3797
|
-
param1?: string | null;
|
3798
|
-
param2?: string | null;
|
3799
|
-
val?: string | null;
|
3800
|
-
ptr?: string | null;
|
3801
|
-
digest?: string | null;
|
3802
|
-
reason?: string | null;
|
3803
|
-
ra?: string | null;
|
3804
|
-
rb?: string | null;
|
3805
|
-
rc?: string | null;
|
3806
|
-
rd?: string | null;
|
3807
|
-
len?: string | null;
|
3808
|
-
receiptType: GqlReceiptType;
|
3809
|
-
result?: string | null;
|
3810
|
-
gasUsed?: string | null;
|
3811
|
-
data?: string | null;
|
3812
|
-
sender?: string | null;
|
3813
|
-
recipient?: string | null;
|
3814
|
-
nonce?: string | null;
|
3815
|
-
contractId?: string | null;
|
3816
|
-
subId?: string | null;
|
3817
|
-
}>;
|
3818
3337
|
} | {
|
3819
3338
|
__typename: 'SqueezedOutStatus';
|
3820
3339
|
reason: string;
|
@@ -3831,37 +3350,6 @@ export type GqlSubmitAndAwaitSubscription = {
|
|
3831
3350
|
__typename: 'Block';
|
3832
3351
|
id: string;
|
3833
3352
|
};
|
3834
|
-
receipts: Array<{
|
3835
|
-
__typename: 'Receipt';
|
3836
|
-
id?: string | null;
|
3837
|
-
pc?: string | null;
|
3838
|
-
is?: string | null;
|
3839
|
-
to?: string | null;
|
3840
|
-
toAddress?: string | null;
|
3841
|
-
amount?: string | null;
|
3842
|
-
assetId?: string | null;
|
3843
|
-
gas?: string | null;
|
3844
|
-
param1?: string | null;
|
3845
|
-
param2?: string | null;
|
3846
|
-
val?: string | null;
|
3847
|
-
ptr?: string | null;
|
3848
|
-
digest?: string | null;
|
3849
|
-
reason?: string | null;
|
3850
|
-
ra?: string | null;
|
3851
|
-
rb?: string | null;
|
3852
|
-
rc?: string | null;
|
3853
|
-
rd?: string | null;
|
3854
|
-
len?: string | null;
|
3855
|
-
receiptType: GqlReceiptType;
|
3856
|
-
result?: string | null;
|
3857
|
-
gasUsed?: string | null;
|
3858
|
-
data?: string | null;
|
3859
|
-
sender?: string | null;
|
3860
|
-
recipient?: string | null;
|
3861
|
-
nonce?: string | null;
|
3862
|
-
contractId?: string | null;
|
3863
|
-
subId?: string | null;
|
3864
|
-
}>;
|
3865
3353
|
programState?: {
|
3866
3354
|
__typename: 'ProgramState';
|
3867
3355
|
returnType: GqlReturnType;
|
@@ -3883,37 +3371,6 @@ export type GqlStatusChangeSubscription = {
|
|
3883
3371
|
__typename: 'Block';
|
3884
3372
|
id: string;
|
3885
3373
|
};
|
3886
|
-
receipts: Array<{
|
3887
|
-
__typename: 'Receipt';
|
3888
|
-
id?: string | null;
|
3889
|
-
pc?: string | null;
|
3890
|
-
is?: string | null;
|
3891
|
-
to?: string | null;
|
3892
|
-
toAddress?: string | null;
|
3893
|
-
amount?: string | null;
|
3894
|
-
assetId?: string | null;
|
3895
|
-
gas?: string | null;
|
3896
|
-
param1?: string | null;
|
3897
|
-
param2?: string | null;
|
3898
|
-
val?: string | null;
|
3899
|
-
ptr?: string | null;
|
3900
|
-
digest?: string | null;
|
3901
|
-
reason?: string | null;
|
3902
|
-
ra?: string | null;
|
3903
|
-
rb?: string | null;
|
3904
|
-
rc?: string | null;
|
3905
|
-
rd?: string | null;
|
3906
|
-
len?: string | null;
|
3907
|
-
receiptType: GqlReceiptType;
|
3908
|
-
result?: string | null;
|
3909
|
-
gasUsed?: string | null;
|
3910
|
-
data?: string | null;
|
3911
|
-
sender?: string | null;
|
3912
|
-
recipient?: string | null;
|
3913
|
-
nonce?: string | null;
|
3914
|
-
contractId?: string | null;
|
3915
|
-
subId?: string | null;
|
3916
|
-
}>;
|
3917
3374
|
} | {
|
3918
3375
|
__typename: 'SqueezedOutStatus';
|
3919
3376
|
reason: string;
|
@@ -3930,37 +3387,6 @@ export type GqlStatusChangeSubscription = {
|
|
3930
3387
|
__typename: 'Block';
|
3931
3388
|
id: string;
|
3932
3389
|
};
|
3933
|
-
receipts: Array<{
|
3934
|
-
__typename: 'Receipt';
|
3935
|
-
id?: string | null;
|
3936
|
-
pc?: string | null;
|
3937
|
-
is?: string | null;
|
3938
|
-
to?: string | null;
|
3939
|
-
toAddress?: string | null;
|
3940
|
-
amount?: string | null;
|
3941
|
-
assetId?: string | null;
|
3942
|
-
gas?: string | null;
|
3943
|
-
param1?: string | null;
|
3944
|
-
param2?: string | null;
|
3945
|
-
val?: string | null;
|
3946
|
-
ptr?: string | null;
|
3947
|
-
digest?: string | null;
|
3948
|
-
reason?: string | null;
|
3949
|
-
ra?: string | null;
|
3950
|
-
rb?: string | null;
|
3951
|
-
rc?: string | null;
|
3952
|
-
rd?: string | null;
|
3953
|
-
len?: string | null;
|
3954
|
-
receiptType: GqlReceiptType;
|
3955
|
-
result?: string | null;
|
3956
|
-
gasUsed?: string | null;
|
3957
|
-
data?: string | null;
|
3958
|
-
sender?: string | null;
|
3959
|
-
recipient?: string | null;
|
3960
|
-
nonce?: string | null;
|
3961
|
-
contractId?: string | null;
|
3962
|
-
subId?: string | null;
|
3963
|
-
}>;
|
3964
3390
|
programState?: {
|
3965
3391
|
__typename: 'ProgramState';
|
3966
3392
|
returnType: GqlReturnType;
|
@@ -3973,10 +3399,6 @@ export declare const TransactionStatusFragmentFragmentDoc: DocumentNode;
|
|
3973
3399
|
export declare const TransactionFragmentFragmentDoc: DocumentNode;
|
3974
3400
|
export declare const InputEstimatePredicatesFragmentFragmentDoc: DocumentNode;
|
3975
3401
|
export declare const TransactionEstimatePredicatesFragmentFragmentDoc: DocumentNode;
|
3976
|
-
export declare const DryRunFailureStatusFragmentFragmentDoc: DocumentNode;
|
3977
|
-
export declare const DryRunSuccessStatusFragmentFragmentDoc: DocumentNode;
|
3978
|
-
export declare const DryRunTransactionStatusFragmentFragmentDoc: DocumentNode;
|
3979
|
-
export declare const DryRunTransactionExecutionStatusFragmentFragmentDoc: DocumentNode;
|
3980
3402
|
export declare const CoinFragmentFragmentDoc: DocumentNode;
|
3981
3403
|
export declare const MessageCoinFragmentFragmentDoc: DocumentNode;
|
3982
3404
|
export declare const MessageFragmentFragmentDoc: DocumentNode;
|
@@ -4012,8 +3434,6 @@ export declare const GetCoinsToSpendDocument: DocumentNode;
|
|
4012
3434
|
export declare const GetContractDocument: DocumentNode;
|
4013
3435
|
export declare const GetContractBalanceDocument: DocumentNode;
|
4014
3436
|
export declare const GetBalanceDocument: DocumentNode;
|
4015
|
-
export declare const GetLatestGasPriceDocument: DocumentNode;
|
4016
|
-
export declare const EstimateGasPriceDocument: DocumentNode;
|
4017
3437
|
export declare const GetBalancesDocument: DocumentNode;
|
4018
3438
|
export declare const GetMessagesDocument: DocumentNode;
|
4019
3439
|
export declare const GetMessageProofDocument: DocumentNode;
|
@@ -4042,8 +3462,6 @@ export declare function getSdk<C, E>(requester: Requester<C, E>): {
|
|
4042
3462
|
getContract(variables: GqlGetContractQueryVariables, options?: C): Promise<GqlGetContractQuery>;
|
4043
3463
|
getContractBalance(variables: GqlGetContractBalanceQueryVariables, options?: C): Promise<GqlGetContractBalanceQuery>;
|
4044
3464
|
getBalance(variables: GqlGetBalanceQueryVariables, options?: C): Promise<GqlGetBalanceQuery>;
|
4045
|
-
getLatestGasPrice(variables?: GqlGetLatestGasPriceQueryVariables, options?: C): Promise<GqlGetLatestGasPriceQuery>;
|
4046
|
-
estimateGasPrice(variables: GqlEstimateGasPriceQueryVariables, options?: C): Promise<GqlEstimateGasPriceQuery>;
|
4047
3465
|
getBalances(variables: GqlGetBalancesQueryVariables, options?: C): Promise<GqlGetBalancesQuery>;
|
4048
3466
|
getMessages(variables: GqlGetMessagesQueryVariables, options?: C): Promise<GqlGetMessagesQuery>;
|
4049
3467
|
getMessageProof(variables: GqlGetMessageProofQueryVariables, options?: C): Promise<GqlGetMessageProofQuery>;
|