@fuel-ts/account 0.91.0 → 0.92.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/dist/account.d.ts +4 -4
- package/dist/account.d.ts.map +1 -1
- package/dist/connectors/fuel-connector.d.ts +2 -2
- package/dist/index.global.js +307 -263
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +152 -108
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +150 -108
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +27 -0
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +27 -6
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts +13 -0
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts +1 -11
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +347 -396
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +188 -137
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +188 -136
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +19 -20
@@ -140,6 +140,7 @@ export type GqlBlock = {
|
|
140
140
|
header: GqlHeader;
|
141
141
|
height: Scalars['U32']['output'];
|
142
142
|
id: Scalars['BlockId']['output'];
|
143
|
+
transactionIds: Array<Scalars['TransactionId']['output']>;
|
143
144
|
transactions: Array<GqlTransaction>;
|
144
145
|
version: GqlBlockVersion;
|
145
146
|
};
|
@@ -314,6 +315,7 @@ export type GqlExcludeInput = {
|
|
314
315
|
};
|
315
316
|
export type GqlFailureStatus = {
|
316
317
|
block: GqlBlock;
|
318
|
+
blockHeight: Scalars['U32']['output'];
|
317
319
|
programState?: Maybe<GqlProgramState>;
|
318
320
|
reason: Scalars['String']['output'];
|
319
321
|
receipts: Array<GqlReceipt>;
|
@@ -1008,6 +1010,7 @@ export type GqlSubscriptionSubmitAndAwaitArgs = {
|
|
1008
1010
|
};
|
1009
1011
|
export type GqlSuccessStatus = {
|
1010
1012
|
block: GqlBlock;
|
1013
|
+
blockHeight: Scalars['U32']['output'];
|
1011
1014
|
programState?: Maybe<GqlProgramState>;
|
1012
1015
|
receipts: Array<GqlReceipt>;
|
1013
1016
|
time: Scalars['Tai64Timestamp']['output'];
|
@@ -3610,6 +3613,12 @@ export type GqlGetBlocksQueryVariables = Exact<{
|
|
3610
3613
|
}>;
|
3611
3614
|
export type GqlGetBlocksQuery = {
|
3612
3615
|
blocks: {
|
3616
|
+
pageInfo: {
|
3617
|
+
hasPreviousPage: boolean;
|
3618
|
+
hasNextPage: boolean;
|
3619
|
+
startCursor?: string | null;
|
3620
|
+
endCursor?: string | null;
|
3621
|
+
};
|
3613
3622
|
edges: Array<{
|
3614
3623
|
node: {
|
3615
3624
|
id: string;
|
@@ -3647,6 +3656,12 @@ export type GqlGetCoinsQueryVariables = Exact<{
|
|
3647
3656
|
}>;
|
3648
3657
|
export type GqlGetCoinsQuery = {
|
3649
3658
|
coins: {
|
3659
|
+
pageInfo: {
|
3660
|
+
hasPreviousPage: boolean;
|
3661
|
+
hasNextPage: boolean;
|
3662
|
+
startCursor?: string | null;
|
3663
|
+
endCursor?: string | null;
|
3664
|
+
};
|
3650
3665
|
edges: Array<{
|
3651
3666
|
node: {
|
3652
3667
|
utxoId: string;
|
@@ -3740,6 +3755,12 @@ export type GqlGetBalancesQueryVariables = Exact<{
|
|
3740
3755
|
}>;
|
3741
3756
|
export type GqlGetBalancesQuery = {
|
3742
3757
|
balances: {
|
3758
|
+
pageInfo: {
|
3759
|
+
hasPreviousPage: boolean;
|
3760
|
+
hasNextPage: boolean;
|
3761
|
+
startCursor?: string | null;
|
3762
|
+
endCursor?: string | null;
|
3763
|
+
};
|
3743
3764
|
edges: Array<{
|
3744
3765
|
node: {
|
3745
3766
|
owner: string;
|
@@ -3758,6 +3779,12 @@ export type GqlGetMessagesQueryVariables = Exact<{
|
|
3758
3779
|
}>;
|
3759
3780
|
export type GqlGetMessagesQuery = {
|
3760
3781
|
messages: {
|
3782
|
+
pageInfo: {
|
3783
|
+
hasPreviousPage: boolean;
|
3784
|
+
hasNextPage: boolean;
|
3785
|
+
startCursor?: string | null;
|
3786
|
+
endCursor?: string | null;
|
3787
|
+
};
|
3761
3788
|
edges: Array<{
|
3762
3789
|
node: {
|
3763
3790
|
amount: string;
|