@ocap/client 1.18.11 → 1.18.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.d.ts +41 -35
- package/dist/report.html +1 -1
- package/lib/node.d.ts +41 -35
- package/package.json +12 -12
package/dist/browser.d.ts
CHANGED
|
@@ -426,93 +426,99 @@ declare class GraphQLClient {
|
|
|
426
426
|
): Promise<GraphQLClient.Transaction>;
|
|
427
427
|
getAccountState(
|
|
428
428
|
params: PartialDeep<GraphQLClient.GetAccountStateParams>
|
|
429
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountState
|
|
429
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountState>>;
|
|
430
430
|
getAssetState(
|
|
431
431
|
params: PartialDeep<GraphQLClient.GetAssetStateParams>
|
|
432
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAssetState
|
|
432
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAssetState>>;
|
|
433
433
|
getFactoryState(
|
|
434
434
|
params: PartialDeep<GraphQLClient.GetFactoryStateParams>
|
|
435
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetFactoryState
|
|
435
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetFactoryState>>;
|
|
436
436
|
getDelegateState(
|
|
437
437
|
params: PartialDeep<GraphQLClient.GetDelegateStateParams>
|
|
438
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetDelegateState
|
|
438
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetDelegateState>>;
|
|
439
439
|
getTokenState(
|
|
440
440
|
params: PartialDeep<GraphQLClient.GetTokenStateParams>
|
|
441
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetTokenState
|
|
441
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetTokenState>>;
|
|
442
442
|
getEvidenceState(
|
|
443
443
|
params: PartialDeep<GraphQLClient.GetEvidenceStateParams>
|
|
444
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetEvidenceState
|
|
444
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetEvidenceState>>;
|
|
445
445
|
getForgeState(
|
|
446
446
|
params: PartialDeep<GraphQLClient.GetForgeStateParams>
|
|
447
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeState
|
|
448
|
-
getTx(
|
|
447
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeState>>;
|
|
448
|
+
getTx(
|
|
449
|
+
params: PartialDeep<GraphQLClient.GetTxParams>
|
|
450
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetTx>>;
|
|
449
451
|
getBlock(
|
|
450
452
|
params: PartialDeep<GraphQLClient.GetBlockParams>
|
|
451
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlock
|
|
453
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlock>>;
|
|
452
454
|
getBlocks(
|
|
453
455
|
params: PartialDeep<GraphQLClient.GetBlocksParams>
|
|
454
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlocks
|
|
456
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlocks>>;
|
|
455
457
|
getUnconfirmedTxs(
|
|
456
458
|
params: PartialDeep<GraphQLClient.GetUnconfirmedTxsParams>
|
|
457
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetUnconfirmedTxs
|
|
458
|
-
getChainInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetChainInfo
|
|
459
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetUnconfirmedTxs>>;
|
|
460
|
+
getChainInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetChainInfo>>;
|
|
459
461
|
getConfig(
|
|
460
462
|
params: PartialDeep<GraphQLClient.GetConfigParams>
|
|
461
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetConfig
|
|
462
|
-
getNetInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetNetInfo
|
|
463
|
-
getNodeInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetNodeInfo
|
|
464
|
-
getValidatorsInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetValidatorsInfo
|
|
465
|
-
getForgeStats(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeStats
|
|
463
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetConfig>>;
|
|
464
|
+
getNetInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetNetInfo>>;
|
|
465
|
+
getNodeInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetNodeInfo>>;
|
|
466
|
+
getValidatorsInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetValidatorsInfo>>;
|
|
467
|
+
getForgeStats(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeStats>>;
|
|
466
468
|
listAssetTransactions(
|
|
467
469
|
params: PartialDeep<GraphQLClient.ListAssetTransactionsParams>
|
|
468
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListAssetTransactions
|
|
470
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListAssetTransactions>>;
|
|
469
471
|
listAssets(
|
|
470
472
|
params: PartialDeep<GraphQLClient.ListAssetsParams>
|
|
471
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListAssets
|
|
473
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListAssets>>;
|
|
472
474
|
listBlocks(
|
|
473
475
|
params: PartialDeep<GraphQLClient.ListBlocksParams>
|
|
474
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListBlocks
|
|
476
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListBlocks>>;
|
|
475
477
|
listTopAccounts(
|
|
476
478
|
params: PartialDeep<GraphQLClient.ListTopAccountsParams>
|
|
477
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTopAccounts
|
|
479
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTopAccounts>>;
|
|
478
480
|
listTransactions(
|
|
479
481
|
params: PartialDeep<GraphQLClient.ListTransactionsParams>
|
|
480
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTransactions
|
|
482
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTransactions>>;
|
|
481
483
|
listTokens(
|
|
482
484
|
params: PartialDeep<GraphQLClient.ListTokensParams>
|
|
483
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTokens
|
|
485
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTokens>>;
|
|
484
486
|
listFactories(
|
|
485
487
|
params: PartialDeep<GraphQLClient.ListFactoriesParams>
|
|
486
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListFactories
|
|
488
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListFactories>>;
|
|
487
489
|
getAccountTokens(
|
|
488
490
|
params: PartialDeep<GraphQLClient.GetAccountTokensParams>
|
|
489
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountTokens
|
|
491
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountTokens>>;
|
|
490
492
|
getStakeState(
|
|
491
493
|
params: PartialDeep<GraphQLClient.GetStakeStateParams>
|
|
492
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetStakeState
|
|
494
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetStakeState>>;
|
|
493
495
|
listStakes(
|
|
494
496
|
params: PartialDeep<GraphQLClient.ListStakesParams>
|
|
495
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListStakes
|
|
497
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListStakes>>;
|
|
496
498
|
getRollupState(
|
|
497
499
|
params: PartialDeep<GraphQLClient.GetRollupStateParams>
|
|
498
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupState
|
|
500
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupState>>;
|
|
499
501
|
listRollups(
|
|
500
502
|
params: PartialDeep<GraphQLClient.ListRollupsParams>
|
|
501
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollups
|
|
503
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollups>>;
|
|
502
504
|
getRollupBlock(
|
|
503
505
|
params: PartialDeep<GraphQLClient.GetRollupBlockParams>
|
|
504
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupBlock
|
|
506
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupBlock>>;
|
|
505
507
|
listRollupBlocks(
|
|
506
508
|
params: PartialDeep<GraphQLClient.ListRollupBlocksParams>
|
|
507
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupBlocks
|
|
509
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupBlocks>>;
|
|
508
510
|
listRollupValidators(
|
|
509
511
|
params: PartialDeep<GraphQLClient.ListRollupValidatorsParams>
|
|
510
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupValidators
|
|
511
|
-
search(
|
|
512
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupValidators>>;
|
|
513
|
+
search(
|
|
514
|
+
params: PartialDeep<GraphQLClient.SearchParams>
|
|
515
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseSearch>>;
|
|
512
516
|
estimateGas(
|
|
513
517
|
params: PartialDeep<GraphQLClient.EstimateGasParams>
|
|
514
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseEstimateGas
|
|
515
|
-
sendTx(
|
|
518
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseEstimateGas>>;
|
|
519
|
+
sendTx(
|
|
520
|
+
params: PartialDeep<GraphQLClient.SendTxParams>
|
|
521
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseSendTx>>;
|
|
516
522
|
}
|
|
517
523
|
|
|
518
524
|
declare namespace GraphQLClient {
|
package/dist/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@ocap/client [
|
|
6
|
+
<title>@ocap/client [4 Nov 2022 at 08:00]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
package/lib/node.d.ts
CHANGED
|
@@ -426,93 +426,99 @@ declare class GraphQLClient {
|
|
|
426
426
|
): Promise<GraphQLClient.Transaction>;
|
|
427
427
|
getAccountState(
|
|
428
428
|
params: PartialDeep<GraphQLClient.GetAccountStateParams>
|
|
429
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountState
|
|
429
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountState>>;
|
|
430
430
|
getAssetState(
|
|
431
431
|
params: PartialDeep<GraphQLClient.GetAssetStateParams>
|
|
432
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAssetState
|
|
432
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAssetState>>;
|
|
433
433
|
getFactoryState(
|
|
434
434
|
params: PartialDeep<GraphQLClient.GetFactoryStateParams>
|
|
435
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetFactoryState
|
|
435
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetFactoryState>>;
|
|
436
436
|
getDelegateState(
|
|
437
437
|
params: PartialDeep<GraphQLClient.GetDelegateStateParams>
|
|
438
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetDelegateState
|
|
438
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetDelegateState>>;
|
|
439
439
|
getTokenState(
|
|
440
440
|
params: PartialDeep<GraphQLClient.GetTokenStateParams>
|
|
441
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetTokenState
|
|
441
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetTokenState>>;
|
|
442
442
|
getEvidenceState(
|
|
443
443
|
params: PartialDeep<GraphQLClient.GetEvidenceStateParams>
|
|
444
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetEvidenceState
|
|
444
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetEvidenceState>>;
|
|
445
445
|
getForgeState(
|
|
446
446
|
params: PartialDeep<GraphQLClient.GetForgeStateParams>
|
|
447
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeState
|
|
448
|
-
getTx(
|
|
447
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeState>>;
|
|
448
|
+
getTx(
|
|
449
|
+
params: PartialDeep<GraphQLClient.GetTxParams>
|
|
450
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetTx>>;
|
|
449
451
|
getBlock(
|
|
450
452
|
params: PartialDeep<GraphQLClient.GetBlockParams>
|
|
451
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlock
|
|
453
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlock>>;
|
|
452
454
|
getBlocks(
|
|
453
455
|
params: PartialDeep<GraphQLClient.GetBlocksParams>
|
|
454
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlocks
|
|
456
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetBlocks>>;
|
|
455
457
|
getUnconfirmedTxs(
|
|
456
458
|
params: PartialDeep<GraphQLClient.GetUnconfirmedTxsParams>
|
|
457
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetUnconfirmedTxs
|
|
458
|
-
getChainInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetChainInfo
|
|
459
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetUnconfirmedTxs>>;
|
|
460
|
+
getChainInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetChainInfo>>;
|
|
459
461
|
getConfig(
|
|
460
462
|
params: PartialDeep<GraphQLClient.GetConfigParams>
|
|
461
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetConfig
|
|
462
|
-
getNetInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetNetInfo
|
|
463
|
-
getNodeInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetNodeInfo
|
|
464
|
-
getValidatorsInfo(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetValidatorsInfo
|
|
465
|
-
getForgeStats(): GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeStats
|
|
463
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetConfig>>;
|
|
464
|
+
getNetInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetNetInfo>>;
|
|
465
|
+
getNodeInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetNodeInfo>>;
|
|
466
|
+
getValidatorsInfo(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetValidatorsInfo>>;
|
|
467
|
+
getForgeStats(): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetForgeStats>>;
|
|
466
468
|
listAssetTransactions(
|
|
467
469
|
params: PartialDeep<GraphQLClient.ListAssetTransactionsParams>
|
|
468
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListAssetTransactions
|
|
470
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListAssetTransactions>>;
|
|
469
471
|
listAssets(
|
|
470
472
|
params: PartialDeep<GraphQLClient.ListAssetsParams>
|
|
471
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListAssets
|
|
473
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListAssets>>;
|
|
472
474
|
listBlocks(
|
|
473
475
|
params: PartialDeep<GraphQLClient.ListBlocksParams>
|
|
474
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListBlocks
|
|
476
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListBlocks>>;
|
|
475
477
|
listTopAccounts(
|
|
476
478
|
params: PartialDeep<GraphQLClient.ListTopAccountsParams>
|
|
477
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTopAccounts
|
|
479
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTopAccounts>>;
|
|
478
480
|
listTransactions(
|
|
479
481
|
params: PartialDeep<GraphQLClient.ListTransactionsParams>
|
|
480
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTransactions
|
|
482
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTransactions>>;
|
|
481
483
|
listTokens(
|
|
482
484
|
params: PartialDeep<GraphQLClient.ListTokensParams>
|
|
483
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListTokens
|
|
485
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListTokens>>;
|
|
484
486
|
listFactories(
|
|
485
487
|
params: PartialDeep<GraphQLClient.ListFactoriesParams>
|
|
486
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListFactories
|
|
488
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListFactories>>;
|
|
487
489
|
getAccountTokens(
|
|
488
490
|
params: PartialDeep<GraphQLClient.GetAccountTokensParams>
|
|
489
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountTokens
|
|
491
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetAccountTokens>>;
|
|
490
492
|
getStakeState(
|
|
491
493
|
params: PartialDeep<GraphQLClient.GetStakeStateParams>
|
|
492
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetStakeState
|
|
494
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetStakeState>>;
|
|
493
495
|
listStakes(
|
|
494
496
|
params: PartialDeep<GraphQLClient.ListStakesParams>
|
|
495
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListStakes
|
|
497
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListStakes>>;
|
|
496
498
|
getRollupState(
|
|
497
499
|
params: PartialDeep<GraphQLClient.GetRollupStateParams>
|
|
498
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupState
|
|
500
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupState>>;
|
|
499
501
|
listRollups(
|
|
500
502
|
params: PartialDeep<GraphQLClient.ListRollupsParams>
|
|
501
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollups
|
|
503
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollups>>;
|
|
502
504
|
getRollupBlock(
|
|
503
505
|
params: PartialDeep<GraphQLClient.GetRollupBlockParams>
|
|
504
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupBlock
|
|
506
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseGetRollupBlock>>;
|
|
505
507
|
listRollupBlocks(
|
|
506
508
|
params: PartialDeep<GraphQLClient.ListRollupBlocksParams>
|
|
507
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupBlocks
|
|
509
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupBlocks>>;
|
|
508
510
|
listRollupValidators(
|
|
509
511
|
params: PartialDeep<GraphQLClient.ListRollupValidatorsParams>
|
|
510
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupValidators
|
|
511
|
-
search(
|
|
512
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseListRollupValidators>>;
|
|
513
|
+
search(
|
|
514
|
+
params: PartialDeep<GraphQLClient.SearchParams>
|
|
515
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseSearch>>;
|
|
512
516
|
estimateGas(
|
|
513
517
|
params: PartialDeep<GraphQLClient.EstimateGasParams>
|
|
514
|
-
): GraphQLClient.QueryResult<GraphQLClient.ResponseEstimateGas
|
|
515
|
-
sendTx(
|
|
518
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseEstimateGas>>;
|
|
519
|
+
sendTx(
|
|
520
|
+
params: PartialDeep<GraphQLClient.SendTxParams>
|
|
521
|
+
): Promise<GraphQLClient.QueryResult<GraphQLClient.ResponseSendTx>>;
|
|
516
522
|
}
|
|
517
523
|
|
|
518
524
|
declare namespace GraphQLClient {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/client",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.13",
|
|
4
4
|
"description": "graphql client to read/write data on arcblock blockchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"lib"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@arcblock/did": "1.18.
|
|
34
|
-
"@arcblock/did-util": "1.18.
|
|
35
|
-
"@arcblock/jwt": "1.18.
|
|
33
|
+
"@arcblock/did": "1.18.13",
|
|
34
|
+
"@arcblock/did-util": "1.18.13",
|
|
35
|
+
"@arcblock/jwt": "1.18.13",
|
|
36
36
|
"@arcblock/sdk-util": "^0.33.0",
|
|
37
|
-
"@arcblock/ws": "1.18.
|
|
38
|
-
"@ocap/asset": "1.18.
|
|
39
|
-
"@ocap/mcrypto": "1.18.
|
|
40
|
-
"@ocap/message": "1.18.
|
|
41
|
-
"@ocap/proto": "1.18.
|
|
42
|
-
"@ocap/util": "1.18.
|
|
43
|
-
"@ocap/wallet": "1.18.
|
|
37
|
+
"@arcblock/ws": "1.18.13",
|
|
38
|
+
"@ocap/asset": "1.18.13",
|
|
39
|
+
"@ocap/mcrypto": "1.18.13",
|
|
40
|
+
"@ocap/message": "1.18.13",
|
|
41
|
+
"@ocap/proto": "1.18.13",
|
|
42
|
+
"@ocap/util": "1.18.13",
|
|
43
|
+
"@ocap/wallet": "1.18.13",
|
|
44
44
|
"blueimp-md5": "^2.19.0",
|
|
45
45
|
"buffer": "6.0.3",
|
|
46
46
|
"debug": "^4.3.4",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"bugs": {
|
|
110
110
|
"url": "https://github.com/ArcBlock/asset-chain/issues"
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "026028a4fe8d3178f0484980ceb9417809dce150"
|
|
113
113
|
}
|