@iota/graphql-transport 0.6.0 → 0.8.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @iota/graphql-transport
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ecea738: Improved logic around `fallbackMethods` in graphql-transport Introduced
8
+ `unsupportedMethods` in graphql-transport Improved IotaClient compatibility with
9
+ graphql-transport
10
+
11
+ ### Patch Changes
12
+
13
+ - ecea738: Added missing GraphQL query option fields.
14
+ - 59342b2: Renamed all instances of 'domain' to 'name' for IOTA-Names.
15
+ - Updated dependencies [f04033d]
16
+ - Updated dependencies [f04033d]
17
+ - Updated dependencies [59342b2]
18
+ - Updated dependencies [f04033d]
19
+ - Updated dependencies [f04033d]
20
+ - Updated dependencies [ecea738]
21
+ - @iota/iota-sdk@1.4.0
22
+ - @iota/bcs@1.1.0
23
+
24
+ ## 0.7.0
25
+
26
+ ### Minor Changes
27
+
28
+ - c837b79: Removed support for iota-bridge
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [6051799]
33
+ - Updated dependencies [5db9797]
34
+ - Updated dependencies [c4c6d9a]
35
+ - Updated dependencies [c837b79]
36
+ - @iota/iota-sdk@1.3.0
37
+
3
38
  ## 0.6.0
4
39
 
5
40
  ### Minor Changes
@@ -233,13 +233,13 @@ export type Address = IOwner & {
233
233
  */
234
234
  coins: CoinConnection;
235
235
  /**
236
- * The domain explicitly configured as the default domain pointing to this
236
+ * The name explicitly configured as the default name pointing to this
237
237
  * address.
238
238
  */
239
239
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
240
240
  /**
241
241
  * The IotaNamesRegistration NFTs owned by this address. These grant the
242
- * owner the capability to manage the associated domain.
242
+ * owner the capability to manage the associated name.
243
243
  */
244
244
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
245
245
  /** Objects owned by this address, optionally `filter`-ed. */
@@ -310,7 +310,7 @@ export type AddressCoinsArgs = {
310
310
  * key).
311
311
  */
312
312
  export type AddressIotaNamesDefaultNameArgs = {
313
- format?: InputMaybe<DomainFormat>;
313
+ format?: InputMaybe<NameFormat>;
314
314
  };
315
315
  /**
316
316
  * The 32-byte address that is an account address (corresponding to a public
@@ -494,14 +494,6 @@ export type BalanceEdge = {
494
494
  /** The item at the end of the edge */
495
495
  node: Balance;
496
496
  };
497
- export type BridgeCommitteeInitTransaction = {
498
- __typename?: 'BridgeCommitteeInitTransaction';
499
- bridgeObjInitialSharedVersion: Scalars['UInt53']['output'];
500
- };
501
- export type BridgeStateCreateTransaction = {
502
- __typename?: 'BridgeStateCreateTransaction';
503
- chainId: Scalars['String']['output'];
504
- };
505
497
  /**
506
498
  * A system transaction that updates epoch information on-chain (increments the
507
499
  * current epoch). Executed by the system once per epoch, without using gas.
@@ -789,13 +781,13 @@ export type Coin = IMoveObject & IObject & IOwner & {
789
781
  */
790
782
  dynamicObjectField?: Maybe<DynamicField>;
791
783
  /**
792
- * The domain explicitly configured as the default domain pointing to this
784
+ * The name explicitly configured as the default name pointing to this
793
785
  * object.
794
786
  */
795
787
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
796
788
  /**
797
789
  * The IotaNamesRegistration NFTs owned by this object. These grant the
798
- * owner the capability to manage the associated domain.
790
+ * owner the capability to manage the associated name.
799
791
  */
800
792
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
801
793
  /** Objects owned by this object, optionally `filter`-ed. */
@@ -890,7 +882,7 @@ export type CoinDynamicObjectFieldArgs = {
890
882
  };
891
883
  /** Some 0x2::coin::Coin Move object. */
892
884
  export type CoinIotaNamesDefaultNameArgs = {
893
- format?: InputMaybe<DomainFormat>;
885
+ format?: InputMaybe<NameFormat>;
894
886
  };
895
887
  /** Some 0x2::coin::Coin Move object. */
896
888
  export type CoinIotaNamesRegistrationsArgs = {
@@ -1010,13 +1002,13 @@ export type CoinMetadata = IMoveObject & IObject & IOwner & {
1010
1002
  dynamicObjectField?: Maybe<DynamicField>;
1011
1003
  iconUrl?: Maybe<Scalars['String']['output']>;
1012
1004
  /**
1013
- * The domain explicitly configured as the default domain pointing to this
1005
+ * The name explicitly configured as the default name pointing to this
1014
1006
  * object.
1015
1007
  */
1016
1008
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
1017
1009
  /**
1018
1010
  * The IotaNamesRegistration NFTs owned by this object. These grant the
1019
- * owner the capability to manage the associated domain.
1011
+ * owner the capability to manage the associated name.
1020
1012
  */
1021
1013
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
1022
1014
  /** Full, official name of the token. */
@@ -1117,7 +1109,7 @@ export type CoinMetadataDynamicObjectFieldArgs = {
1117
1109
  };
1118
1110
  /** The metadata for a coin type. */
1119
1111
  export type CoinMetadataIotaNamesDefaultNameArgs = {
1120
- format?: InputMaybe<DomainFormat>;
1112
+ format?: InputMaybe<NameFormat>;
1121
1113
  };
1122
1114
  /** The metadata for a coin type. */
1123
1115
  export type CoinMetadataIotaNamesRegistrationsArgs = {
@@ -1197,10 +1189,6 @@ export type DisplayEntry = {
1197
1189
  /** The template string for the key with placeholder values substituted. */
1198
1190
  value?: Maybe<Scalars['String']['output']>;
1199
1191
  };
1200
- export declare enum DomainFormat {
1201
- At = "AT",
1202
- Dot = "DOT"
1203
- }
1204
1192
  export type DryRunEffect = {
1205
1193
  __typename?: 'DryRunEffect';
1206
1194
  /**
@@ -1317,7 +1305,7 @@ export type EndOfEpochTransactionTransactionsArgs = {
1317
1305
  first?: InputMaybe<Scalars['Int']['input']>;
1318
1306
  last?: InputMaybe<Scalars['Int']['input']>;
1319
1307
  };
1320
- export type EndOfEpochTransactionKind = AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction | ChangeEpochTransactionV2;
1308
+ export type EndOfEpochTransactionKind = AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | ChangeEpochTransaction | ChangeEpochTransactionV2;
1321
1309
  export type EndOfEpochTransactionKindConnection = {
1322
1310
  __typename?: 'EndOfEpochTransactionKindConnection';
1323
1311
  /** A list of edges. */
@@ -1832,9 +1820,9 @@ export type IOwner = {
1832
1820
  * `type` is a filter on the coin's type parameter, defaulting to `0x2::iota::IOTA`.
1833
1821
  */
1834
1822
  coins: CoinConnection;
1835
- /** The domain explicitly configured as the default domain pointing to this object or address. */
1823
+ /** The name explicitly configured as the default name pointing to this object or address. */
1836
1824
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
1837
- /** The IotaNamesRegistration NFTs owned by this object or address. These grant the owner the capability to manage the associated domain. */
1825
+ /** The IotaNamesRegistration NFTs owned by this object or address. These grant the owner the capability to manage the associated name. */
1838
1826
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
1839
1827
  /** Objects owned by this object or address, optionally `filter`-ed. */
1840
1828
  objects: MoveObjectConnection;
@@ -1886,7 +1874,7 @@ export type IOwnerCoinsArgs = {
1886
1874
  * know which up-front.
1887
1875
  */
1888
1876
  export type IOwnerIotaNamesDefaultNameArgs = {
1889
- format?: InputMaybe<DomainFormat>;
1877
+ format?: InputMaybe<NameFormat>;
1890
1878
  };
1891
1879
  /**
1892
1880
  * Interface implemented by GraphQL types representing entities that can own
@@ -1981,8 +1969,6 @@ export type IotaNamesRegistration = IMoveObject & IOwner & {
1981
1969
  * into these templates to generate a display string per template.
1982
1970
  */
1983
1971
  display?: Maybe<Array<DisplayEntry>>;
1984
- /** Domain name of the IotaNamesRegistration object */
1985
- domain: Scalars['String']['output'];
1986
1972
  /**
1987
1973
  * Access a dynamic field on an object using its name. Names are arbitrary
1988
1974
  * Move values whose type have `copy`, `drop`, and `store`, and are
@@ -2018,15 +2004,17 @@ export type IotaNamesRegistration = IMoveObject & IOwner & {
2018
2004
  */
2019
2005
  hasPublicTransfer: Scalars['Boolean']['output'];
2020
2006
  /**
2021
- * The domain explicitly configured as the default domain pointing to this
2007
+ * The name explicitly configured as the default name pointing to this
2022
2008
  * object.
2023
2009
  */
2024
2010
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
2025
2011
  /**
2026
2012
  * The IotaNamesRegistration NFTs owned by this object. These grant the
2027
- * owner the capability to manage the associated domain.
2013
+ * owner the capability to manage the associated name.
2028
2014
  */
2029
2015
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
2016
+ /** Name of the IotaNamesRegistration object */
2017
+ name: Scalars['String']['output'];
2030
2018
  /** Objects owned by this object, optionally `filter`-ed. */
2031
2019
  objects: MoveObjectConnection;
2032
2020
  /** The owner type of this object: Immutable, Shared, Parent, Address */
@@ -2112,7 +2100,7 @@ export type IotaNamesRegistrationDynamicObjectFieldArgs = {
2112
2100
  name: DynamicFieldName;
2113
2101
  };
2114
2102
  export type IotaNamesRegistrationIotaNamesDefaultNameArgs = {
2115
- format?: InputMaybe<DomainFormat>;
2103
+ format?: InputMaybe<NameFormat>;
2116
2104
  };
2117
2105
  export type IotaNamesRegistrationIotaNamesRegistrationsArgs = {
2118
2106
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2579,13 +2567,13 @@ export type MoveObject = IMoveObject & IObject & IOwner & {
2579
2567
  */
2580
2568
  dynamicObjectField?: Maybe<DynamicField>;
2581
2569
  /**
2582
- * The domain explicitly configured as the default domain pointing to this
2570
+ * The name explicitly configured as the default name pointing to this
2583
2571
  * object.
2584
2572
  */
2585
2573
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
2586
2574
  /**
2587
2575
  * The IotaNamesRegistration NFTs owned by this object. These grant the
2588
- * owner the capability to manage the associated domain.
2576
+ * owner the capability to manage the associated name.
2589
2577
  */
2590
2578
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
2591
2579
  /** Objects owned by this object, optionally `filter`-ed. */
@@ -2708,7 +2696,7 @@ export type MoveObjectDynamicObjectFieldArgs = {
2708
2696
  * etc.) about this object.
2709
2697
  */
2710
2698
  export type MoveObjectIotaNamesDefaultNameArgs = {
2711
- format?: InputMaybe<DomainFormat>;
2699
+ format?: InputMaybe<NameFormat>;
2712
2700
  };
2713
2701
  /**
2714
2702
  * The representation of an object as a Move Object, which exposes additional
@@ -2815,13 +2803,13 @@ export type MovePackage = IObject & IOwner & {
2815
2803
  */
2816
2804
  digest?: Maybe<Scalars['String']['output']>;
2817
2805
  /**
2818
- * The domain explicitly configured as the default domain pointing to this
2806
+ * The name explicitly configured as the default name pointing to this
2819
2807
  * object.
2820
2808
  */
2821
2809
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
2822
2810
  /**
2823
2811
  * The IotaNamesRegistration NFTs owned by this package. These grant the
2824
- * owner the capability to manage the associated domain.
2812
+ * owner the capability to manage the associated name.
2825
2813
  *
2826
2814
  * Note that objects owned by a package are inaccessible, because packages
2827
2815
  * are immutable and cannot be owned by an address.
@@ -2971,7 +2959,7 @@ export type MovePackageCoinsArgs = {
2971
2959
  * definitions, functions, and dependencies.
2972
2960
  */
2973
2961
  export type MovePackageIotaNamesDefaultNameArgs = {
2974
- format?: InputMaybe<DomainFormat>;
2962
+ format?: InputMaybe<NameFormat>;
2975
2963
  };
2976
2964
  /**
2977
2965
  * A MovePackage is a kind of Move object that represents code that has been
@@ -3236,6 +3224,10 @@ export type MutationExecuteTransactionBlockArgs = {
3236
3224
  signatures: Array<Scalars['String']['input']>;
3237
3225
  txBytes: Scalars['String']['input'];
3238
3226
  };
3227
+ export declare enum NameFormat {
3228
+ At = "AT",
3229
+ Dot = "DOT"
3230
+ }
3239
3231
  /**
3240
3232
  * An object in IOTA is a package (set of Move bytecode modules) or object
3241
3233
  * (typed data structure with fields) with additional metadata detailing its
@@ -3304,13 +3296,13 @@ export type Object = IObject & IOwner & {
3304
3296
  */
3305
3297
  dynamicObjectField?: Maybe<DynamicField>;
3306
3298
  /**
3307
- * The domain explicitly configured as the default domain pointing to this
3299
+ * The name explicitly configured as the default name pointing to this
3308
3300
  * address.
3309
3301
  */
3310
3302
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
3311
3303
  /**
3312
3304
  * The IotaNamesRegistration NFTs owned by this address. These grant the
3313
- * owner the capability to manage the associated domain.
3305
+ * owner the capability to manage the associated name.
3314
3306
  */
3315
3307
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
3316
3308
  /** Objects owned by this object, optionally `filter`-ed. */
@@ -3443,7 +3435,7 @@ export type ObjectDynamicObjectFieldArgs = {
3443
3435
  * be accessed.
3444
3436
  */
3445
3437
  export type ObjectIotaNamesDefaultNameArgs = {
3446
- format?: InputMaybe<DomainFormat>;
3438
+ format?: InputMaybe<NameFormat>;
3447
3439
  };
3448
3440
  /**
3449
3441
  * An object in IOTA is a package (set of Move bytecode modules) or object
@@ -3684,13 +3676,13 @@ export type Owner = IOwner & {
3684
3676
  */
3685
3677
  dynamicObjectField?: Maybe<DynamicField>;
3686
3678
  /**
3687
- * The domain explicitly configured as the default domain pointing to this
3679
+ * The name explicitly configured as the default name pointing to this
3688
3680
  * object or address.
3689
3681
  */
3690
3682
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
3691
3683
  /**
3692
3684
  * The IotaNamesRegistration NFTs owned by this object or address. These
3693
- * grant the owner the capability to manage the associated domain.
3685
+ * grant the owner the capability to manage the associated name.
3694
3686
  */
3695
3687
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
3696
3688
  /** Objects owned by this object or address, optionally `filter`-ed. */
@@ -3772,7 +3764,7 @@ export type OwnerDynamicObjectFieldArgs = {
3772
3764
  * whether a given Owner is an Address or an Object).
3773
3765
  */
3774
3766
  export type OwnerIotaNamesDefaultNameArgs = {
3775
- format?: InputMaybe<DomainFormat>;
3767
+ format?: InputMaybe<NameFormat>;
3776
3768
  };
3777
3769
  /**
3778
3770
  * An Owner is an entity that can own an object. Each Owner is identified by a
@@ -4100,7 +4092,7 @@ export type Query = {
4100
4092
  */
4101
4093
  protocolConfig: ProtocolConfigs;
4102
4094
  /**
4103
- * Resolves an IOTA-Names `domain` name to an address, if it has been
4095
+ * Resolves an IOTA-Names `name` to an address, if it has been
4104
4096
  * bound.
4105
4097
  */
4106
4098
  resolveIotaNamesAddress?: Maybe<Address>;
@@ -4237,7 +4229,7 @@ export type QueryProtocolConfigArgs = {
4237
4229
  protocolVersion?: InputMaybe<Scalars['UInt53']['input']>;
4238
4230
  };
4239
4231
  export type QueryResolveIotaNamesAddressArgs = {
4240
- domain: Scalars['String']['input'];
4232
+ name: Scalars['String']['input'];
4241
4233
  };
4242
4234
  export type QueryTransactionBlockArgs = {
4243
4235
  digest: Scalars['String']['input'];
@@ -4580,13 +4572,13 @@ export type StakedIota = IMoveObject & IObject & IOwner & {
4580
4572
  */
4581
4573
  estimatedReward?: Maybe<Scalars['BigInt']['output']>;
4582
4574
  /**
4583
- * The domain explicitly configured as the default domain pointing to this
4575
+ * The name explicitly configured as the default name pointing to this
4584
4576
  * object.
4585
4577
  */
4586
4578
  iotaNamesDefaultName?: Maybe<Scalars['String']['output']>;
4587
4579
  /**
4588
4580
  * The IotaNamesRegistration NFTs owned by this object. These grant the
4589
- * owner the capability to manage the associated domain.
4581
+ * owner the capability to manage the associated name.
4590
4582
  */
4591
4583
  iotaNamesRegistrations: IotaNamesRegistrationConnection;
4592
4584
  /** Objects owned by this object, optionally `filter`-ed. */
@@ -4689,7 +4681,7 @@ export type StakedIotaDynamicObjectFieldArgs = {
4689
4681
  };
4690
4682
  /** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */
4691
4683
  export type StakedIotaIotaNamesDefaultNameArgs = {
4692
- format?: InputMaybe<DomainFormat>;
4684
+ format?: InputMaybe<NameFormat>;
4693
4685
  };
4694
4686
  /** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */
4695
4687
  export type StakedIotaIotaNamesRegistrationsArgs = {
@@ -5332,10 +5324,6 @@ export type GetCheckpointQuery = {
5332
5324
  __typename: 'AuthenticatorStateCreateTransaction';
5333
5325
  } | {
5334
5326
  __typename: 'AuthenticatorStateExpireTransaction';
5335
- } | {
5336
- __typename: 'BridgeCommitteeInitTransaction';
5337
- } | {
5338
- __typename: 'BridgeStateCreateTransaction';
5339
5327
  } | {
5340
5328
  __typename: 'ChangeEpochTransaction';
5341
5329
  } | {
@@ -5461,10 +5449,6 @@ export type GetCheckpointsQuery = {
5461
5449
  __typename: 'AuthenticatorStateCreateTransaction';
5462
5450
  } | {
5463
5451
  __typename: 'AuthenticatorStateExpireTransaction';
5464
- } | {
5465
- __typename: 'BridgeCommitteeInitTransaction';
5466
- } | {
5467
- __typename: 'BridgeStateCreateTransaction';
5468
5452
  } | {
5469
5453
  __typename: 'ChangeEpochTransaction';
5470
5454
  } | {
@@ -5596,10 +5580,6 @@ export type Rpc_Checkpoint_FieldsFragment = {
5596
5580
  __typename: 'AuthenticatorStateCreateTransaction';
5597
5581
  } | {
5598
5582
  __typename: 'AuthenticatorStateExpireTransaction';
5599
- } | {
5600
- __typename: 'BridgeCommitteeInitTransaction';
5601
- } | {
5602
- __typename: 'BridgeStateCreateTransaction';
5603
5583
  } | {
5604
5584
  __typename: 'ChangeEpochTransaction';
5605
5585
  } | {
@@ -7548,7 +7528,7 @@ export type GetValidatorsApyQuery = {
7548
7528
  } | null;
7549
7529
  };
7550
7530
  export type ResolveNameServiceAddressQueryVariables = Exact<{
7551
- domain: Scalars['String']['input'];
7531
+ name: Scalars['String']['input'];
7552
7532
  }>;
7553
7533
  export type ResolveNameServiceAddressQuery = {
7554
7534
  __typename?: 'Query';
@@ -7575,7 +7555,7 @@ export type ResolveNameServiceNamesQuery = {
7575
7555
  };
7576
7556
  nodes: Array<{
7577
7557
  __typename?: 'IotaNamesRegistration';
7578
- domain: string;
7558
+ name: string;
7579
7559
  }>;
7580
7560
  };
7581
7561
  } | null;
@@ -20,7 +20,6 @@ var queries_exports = {};
20
20
  __export(queries_exports, {
21
21
  AddressTransactionBlockRelationship: () => AddressTransactionBlockRelationship,
22
22
  DevInspectTransactionBlockDocument: () => DevInspectTransactionBlockDocument,
23
- DomainFormat: () => DomainFormat,
24
23
  DryRunTransactionBlockDocument: () => DryRunTransactionBlockDocument,
25
24
  ExecuteTransactionBlockDocument: () => ExecuteTransactionBlockDocument,
26
25
  ExecutionStatus: () => ExecutionStatus,
@@ -58,6 +57,7 @@ __export(queries_exports, {
58
57
  MoveVisibility: () => MoveVisibility,
59
58
  MultiGetObjectsDocument: () => MultiGetObjectsDocument,
60
59
  MultiGetTransactionBlocksDocument: () => MultiGetTransactionBlocksDocument,
60
+ NameFormat: () => NameFormat,
61
61
  ObjectKind: () => ObjectKind,
62
62
  PaginateCheckpointTransactionBlocksDocument: () => PaginateCheckpointTransactionBlocksDocument,
63
63
  PaginateEpochValidatorsDocument: () => PaginateEpochValidatorsDocument,
@@ -92,11 +92,6 @@ var AddressTransactionBlockRelationship = /* @__PURE__ */ ((AddressTransactionBl
92
92
  AddressTransactionBlockRelationship2["Sign"] = "SIGN";
93
93
  return AddressTransactionBlockRelationship2;
94
94
  })(AddressTransactionBlockRelationship || {});
95
- var DomainFormat = /* @__PURE__ */ ((DomainFormat2) => {
96
- DomainFormat2["At"] = "AT";
97
- DomainFormat2["Dot"] = "DOT";
98
- return DomainFormat2;
99
- })(DomainFormat || {});
100
95
  var ExecutionStatus = /* @__PURE__ */ ((ExecutionStatus2) => {
101
96
  ExecutionStatus2["Failure"] = "FAILURE";
102
97
  ExecutionStatus2["Success"] = "SUCCESS";
@@ -123,6 +118,11 @@ var MoveVisibility = /* @__PURE__ */ ((MoveVisibility2) => {
123
118
  MoveVisibility2["Public"] = "PUBLIC";
124
119
  return MoveVisibility2;
125
120
  })(MoveVisibility || {});
121
+ var NameFormat = /* @__PURE__ */ ((NameFormat2) => {
122
+ NameFormat2["At"] = "AT";
123
+ NameFormat2["Dot"] = "DOT";
124
+ return NameFormat2;
125
+ })(NameFormat || {});
126
126
  var ObjectKind = /* @__PURE__ */ ((ObjectKind2) => {
127
127
  ObjectKind2["Indexed"] = "INDEXED";
128
128
  ObjectKind2["NotIndexed"] = "NOT_INDEXED";
@@ -2140,8 +2140,8 @@ const GetValidatorsApyDocument = new TypedDocumentString(`
2140
2140
  }
2141
2141
  `);
2142
2142
  const ResolveNameServiceAddressDocument = new TypedDocumentString(`
2143
- query resolveNameServiceAddress($domain: String!) {
2144
- resolveIotaNamesAddress(domain: $domain) {
2143
+ query resolveNameServiceAddress($name: String!) {
2144
+ resolveIotaNamesAddress(name: $name) {
2145
2145
  address
2146
2146
  }
2147
2147
  }
@@ -2155,7 +2155,7 @@ const ResolveNameServiceNamesDocument = new TypedDocumentString(`
2155
2155
  endCursor
2156
2156
  }
2157
2157
  nodes {
2158
- domain
2158
+ name
2159
2159
  }
2160
2160
  }
2161
2161
  }