@fuel-ts/account 0.94.0 → 0.94.2

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.
@@ -139,6 +139,10 @@ export type GqlBalanceFilterInput = {
139
139
  /** Filter coins based on the `owner` field */
140
140
  owner: Scalars['Address']['input'];
141
141
  };
142
+ export type GqlBlob = {
143
+ bytecode: Scalars['HexString']['output'];
144
+ id: Scalars['BlobId']['output'];
145
+ };
142
146
  export type GqlBlock = {
143
147
  consensus: GqlConsensus;
144
148
  header: GqlHeader;
@@ -753,6 +757,7 @@ export type GqlProgramState = {
753
757
  export type GqlQuery = {
754
758
  balance: GqlBalance;
755
759
  balances: GqlBalanceConnection;
760
+ blob?: Maybe<GqlBlob>;
756
761
  block?: Maybe<GqlBlock>;
757
762
  blocks: GqlBlockConnection;
758
763
  chain: GqlChainInfo;
@@ -807,6 +812,9 @@ export type GqlQueryBalancesArgs = {
807
812
  first?: InputMaybe<Scalars['Int']['input']>;
808
813
  last?: InputMaybe<Scalars['Int']['input']>;
809
814
  };
815
+ export type GqlQueryBlobArgs = {
816
+ id: Scalars['BlobId']['input'];
817
+ };
810
818
  export type GqlQueryBlockArgs = {
811
819
  height?: InputMaybe<Scalars['U32']['input']>;
812
820
  id?: InputMaybe<Scalars['BlockId']['input']>;