@towns-protocol/generated 0.0.359 → 0.0.360

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.
Files changed (98) hide show
  1. package/dev/.contracts-hash +1 -1
  2. package/dev/abis/SubscriptionModuleFacet.abi.json +24 -0
  3. package/dev/abis/SubscriptionModuleFacet.abi.ts +24 -0
  4. package/dev/typings/Architect.ts +88 -101
  5. package/dev/typings/Channels.ts +161 -176
  6. package/dev/typings/DropFacet.ts +121 -129
  7. package/dev/typings/EntitlementsManager.ts +75 -80
  8. package/dev/typings/GuardianFacet.ts +54 -57
  9. package/dev/typings/IAppAccount.ts +160 -229
  10. package/dev/typings/IAppRegistry.ts +245 -347
  11. package/dev/typings/IArchitect.ts +55 -61
  12. package/dev/typings/IBanning.ts +34 -50
  13. package/dev/typings/IChannel.ts +123 -136
  14. package/dev/typings/ICreateSpace.ts +68 -69
  15. package/dev/typings/ICrossChainEntitlement.ts +14 -15
  16. package/dev/typings/IDiamond.ts +0 -1
  17. package/dev/typings/IDiamondCut.ts +20 -25
  18. package/dev/typings/IDropFacet.ts +99 -105
  19. package/dev/typings/IERC5267.ts +0 -1
  20. package/dev/typings/IERC721A.ts +152 -190
  21. package/dev/typings/IERC721AQueryable.ts +60 -71
  22. package/dev/typings/IEntitlementChecker.ts +98 -134
  23. package/dev/typings/IEntitlementDataQueryable.ts +30 -31
  24. package/dev/typings/IEntitlementsManager.ts +71 -76
  25. package/dev/typings/IMembershipMetadata.ts +10 -17
  26. package/dev/typings/IMockLegacyArchitect.sol/ILegacyArchitect.ts +36 -40
  27. package/dev/typings/IMulticall.ts +10 -14
  28. package/dev/typings/INodeOperator.ts +88 -109
  29. package/dev/typings/INodeRegistry.ts +86 -122
  30. package/dev/typings/IOperatorRegistry.ts +30 -54
  31. package/dev/typings/IPausable.ts +8 -13
  32. package/dev/typings/IPricingModules.ts +35 -44
  33. package/dev/typings/IProxyManager.ts +16 -17
  34. package/dev/typings/IReview.ts +31 -42
  35. package/dev/typings/IRoles.ts +191 -206
  36. package/dev/typings/IRuleEntitlement.sol/IRuleEntitlement.ts +71 -85
  37. package/dev/typings/IRuleEntitlement.sol/IRuleEntitlementV2.ts +71 -85
  38. package/dev/typings/ISpaceDelegation.ts +61 -67
  39. package/dev/typings/IStreamRegistry.ts +160 -182
  40. package/dev/typings/ISwapFacet.ts +58 -62
  41. package/dev/typings/ISwapRouter.ts +82 -90
  42. package/dev/typings/ITipping.ts +37 -38
  43. package/dev/typings/ITownsPoints.ts +54 -72
  44. package/dev/typings/ITreasury.ts +95 -119
  45. package/dev/typings/IWalletLink.ts +169 -186
  46. package/dev/typings/MainnetDelegation.ts +98 -103
  47. package/dev/typings/Member.ts +242 -314
  48. package/dev/typings/MembershipFacet.ts +208 -217
  49. package/dev/typings/MockERC721A.ts +206 -261
  50. package/dev/typings/MockEntitlementGated.ts +159 -186
  51. package/dev/typings/MockLegacyArchitect.ts +44 -50
  52. package/dev/typings/NodeRegistry.ts +86 -122
  53. package/dev/typings/OperatorRegistry.ts +48 -74
  54. package/dev/typings/OwnableFacet.ts +28 -34
  55. package/dev/typings/PlatformRequirementsFacet.ts +148 -151
  56. package/dev/typings/PrepayFacet.ts +28 -31
  57. package/dev/typings/RewardsDistributionV2.ts +393 -423
  58. package/dev/typings/Roles.ts +195 -210
  59. package/dev/typings/SimpleApp.ts +147 -163
  60. package/dev/typings/SpaceOwner.ts +383 -486
  61. package/dev/typings/StreamRegistry.ts +160 -182
  62. package/dev/typings/SubscriptionModuleFacet.ts +318 -375
  63. package/dev/typings/TokenPausableFacet.ts +20 -27
  64. package/dev/typings/Towns.ts +403 -477
  65. package/dev/typings/UserEntitlement.ts +80 -95
  66. package/dev/typings/WalletLink.ts +187 -203
  67. package/dev/typings/common.ts +0 -2
  68. package/dev/typings/factories/Architect__factory.ts +2 -3
  69. package/dev/typings/factories/Channels__factory.ts +2 -3
  70. package/dev/typings/factories/DropFacet__factory.ts +2 -3
  71. package/dev/typings/factories/EntitlementsManager__factory.ts +2 -3
  72. package/dev/typings/factories/GuardianFacet__factory.ts +2 -3
  73. package/dev/typings/factories/MainnetDelegation__factory.ts +2 -3
  74. package/dev/typings/factories/Member__factory.ts +10 -11
  75. package/dev/typings/factories/MembershipFacet__factory.ts +2 -3
  76. package/dev/typings/factories/MockERC721A__factory.ts +2 -3
  77. package/dev/typings/factories/MockEntitlementGated__factory.ts +4 -5
  78. package/dev/typings/factories/MockLegacyArchitect__factory.ts +2 -3
  79. package/dev/typings/factories/NodeRegistry__factory.ts +2 -3
  80. package/dev/typings/factories/OperatorRegistry__factory.ts +2 -3
  81. package/dev/typings/factories/OwnableFacet__factory.ts +2 -3
  82. package/dev/typings/factories/PlatformRequirementsFacet__factory.ts +2 -3
  83. package/dev/typings/factories/PrepayFacet__factory.ts +2 -3
  84. package/dev/typings/factories/RewardsDistributionV2__factory.ts +2 -3
  85. package/dev/typings/factories/Roles__factory.ts +2 -5
  86. package/dev/typings/factories/SimpleApp__factory.ts +2 -3
  87. package/dev/typings/factories/SpaceOwner__factory.ts +2 -3
  88. package/dev/typings/factories/StreamRegistry__factory.ts +2 -3
  89. package/dev/typings/factories/SubscriptionModuleFacet__factory.ts +27 -4
  90. package/dev/typings/factories/TokenPausableFacet__factory.ts +2 -3
  91. package/dev/typings/factories/Towns__factory.ts +2 -5
  92. package/dev/typings/factories/UserEntitlement__factory.ts +2 -3
  93. package/dev/typings/factories/WalletLink__factory.ts +2 -3
  94. package/dev/typings/factories/mainnet/Towns__factory.ts +6 -7
  95. package/dev/typings/factories/multichain/Towns__factory.ts +10 -11
  96. package/dev/typings/mainnet/Towns.ts +427 -506
  97. package/dev/typings/multichain/Towns.ts +318 -378
  98. package/package.json +9 -5
@@ -42,5 +42,3 @@ export type GetContractTypeFromFactory<F> = F extends MinEthersFactory<
42
42
  export type GetARGsTypeFromFactory<F> = F extends MinEthersFactory<any, any>
43
43
  ? Parameters<F["deploy"]>
44
44
  : never;
45
-
46
- export type PromiseOrValue<T> = T | Promise<T>;
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { Architect, ArchitectInterface } from "../Architect";
8
7
 
9
8
  const _abi = [
@@ -376,12 +375,12 @@ export class Architect__factory extends ContractFactory {
376
375
  }
377
376
 
378
377
  override deploy(
379
- overrides?: Overrides & { from?: PromiseOrValue<string> }
378
+ overrides?: Overrides & { from?: string }
380
379
  ): Promise<Architect> {
381
380
  return super.deploy(overrides || {}) as Promise<Architect>;
382
381
  }
383
382
  override getDeployTransaction(
384
- overrides?: Overrides & { from?: PromiseOrValue<string> }
383
+ overrides?: Overrides & { from?: string }
385
384
  ): TransactionRequest {
386
385
  return super.getDeployTransaction(overrides || {});
387
386
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { Channels, ChannelsInterface } from "../Channels";
8
7
 
9
8
  const _abi = [
@@ -689,12 +688,12 @@ export class Channels__factory extends ContractFactory {
689
688
  }
690
689
 
691
690
  override deploy(
692
- overrides?: Overrides & { from?: PromiseOrValue<string> }
691
+ overrides?: Overrides & { from?: string }
693
692
  ): Promise<Channels> {
694
693
  return super.deploy(overrides || {}) as Promise<Channels>;
695
694
  }
696
695
  override getDeployTransaction(
697
- overrides?: Overrides & { from?: PromiseOrValue<string> }
696
+ overrides?: Overrides & { from?: string }
698
697
  ): TransactionRequest {
699
698
  return super.getDeployTransaction(overrides || {});
700
699
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { DropFacet, DropFacetInterface } from "../DropFacet";
8
7
 
9
8
  const _abi = [
@@ -862,12 +861,12 @@ export class DropFacet__factory extends ContractFactory {
862
861
  }
863
862
 
864
863
  override deploy(
865
- overrides?: Overrides & { from?: PromiseOrValue<string> }
864
+ overrides?: Overrides & { from?: string }
866
865
  ): Promise<DropFacet> {
867
866
  return super.deploy(overrides || {}) as Promise<DropFacet>;
868
867
  }
869
868
  override getDeployTransaction(
870
- overrides?: Overrides & { from?: PromiseOrValue<string> }
869
+ overrides?: Overrides & { from?: string }
871
870
  ): TransactionRequest {
872
871
  return super.getDeployTransaction(overrides || {});
873
872
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  EntitlementsManager,
9
8
  EntitlementsManagerInterface,
@@ -324,12 +323,12 @@ export class EntitlementsManager__factory extends ContractFactory {
324
323
  }
325
324
 
326
325
  override deploy(
327
- overrides?: Overrides & { from?: PromiseOrValue<string> }
326
+ overrides?: Overrides & { from?: string }
328
327
  ): Promise<EntitlementsManager> {
329
328
  return super.deploy(overrides || {}) as Promise<EntitlementsManager>;
330
329
  }
331
330
  override getDeployTransaction(
332
- overrides?: Overrides & { from?: PromiseOrValue<string> }
331
+ overrides?: Overrides & { from?: string }
333
332
  ): TransactionRequest {
334
333
  return super.getDeployTransaction(overrides || {});
335
334
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { GuardianFacet, GuardianFacetInterface } from "../GuardianFacet";
8
7
 
9
8
  const _abi = [
@@ -274,12 +273,12 @@ export class GuardianFacet__factory extends ContractFactory {
274
273
  }
275
274
 
276
275
  override deploy(
277
- overrides?: Overrides & { from?: PromiseOrValue<string> }
276
+ overrides?: Overrides & { from?: string }
278
277
  ): Promise<GuardianFacet> {
279
278
  return super.deploy(overrides || {}) as Promise<GuardianFacet>;
280
279
  }
281
280
  override getDeployTransaction(
282
- overrides?: Overrides & { from?: PromiseOrValue<string> }
281
+ overrides?: Overrides & { from?: string }
283
282
  ): TransactionRequest {
284
283
  return super.getDeployTransaction(overrides || {});
285
284
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  MainnetDelegation,
9
8
  MainnetDelegationInterface,
@@ -548,12 +547,12 @@ export class MainnetDelegation__factory extends ContractFactory {
548
547
  }
549
548
 
550
549
  override deploy(
551
- overrides?: Overrides & { from?: PromiseOrValue<string> }
550
+ overrides?: Overrides & { from?: string }
552
551
  ): Promise<MainnetDelegation> {
553
552
  return super.deploy(overrides || {}) as Promise<MainnetDelegation>;
554
553
  }
555
554
  override getDeployTransaction(
556
- overrides?: Overrides & { from?: PromiseOrValue<string> }
555
+ overrides?: Overrides & { from?: string }
557
556
  ): TransactionRequest {
558
557
  return super.getDeployTransaction(overrides || {});
559
558
  }
@@ -10,7 +10,6 @@ import {
10
10
  Overrides,
11
11
  } from "ethers";
12
12
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
13
- import type { PromiseOrValue } from "../common";
14
13
  import type { Member, MemberInterface } from "../Member";
15
14
 
16
15
  const _abi = [
@@ -830,11 +829,11 @@ export class Member__factory extends ContractFactory {
830
829
  }
831
830
 
832
831
  override deploy(
833
- name_: PromiseOrValue<string>,
834
- symbol_: PromiseOrValue<string>,
835
- baseURI_: PromiseOrValue<string>,
836
- merkleRoot_: PromiseOrValue<BytesLike>,
837
- overrides?: Overrides & { from?: PromiseOrValue<string> }
832
+ name_: string,
833
+ symbol_: string,
834
+ baseURI_: string,
835
+ merkleRoot_: BytesLike,
836
+ overrides?: Overrides & { from?: string }
838
837
  ): Promise<Member> {
839
838
  return super.deploy(
840
839
  name_,
@@ -845,11 +844,11 @@ export class Member__factory extends ContractFactory {
845
844
  ) as Promise<Member>;
846
845
  }
847
846
  override getDeployTransaction(
848
- name_: PromiseOrValue<string>,
849
- symbol_: PromiseOrValue<string>,
850
- baseURI_: PromiseOrValue<string>,
851
- merkleRoot_: PromiseOrValue<BytesLike>,
852
- overrides?: Overrides & { from?: PromiseOrValue<string> }
847
+ name_: string,
848
+ symbol_: string,
849
+ baseURI_: string,
850
+ merkleRoot_: BytesLike,
851
+ overrides?: Overrides & { from?: string }
853
852
  ): TransactionRequest {
854
853
  return super.getDeployTransaction(
855
854
  name_,
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  MembershipFacet,
9
8
  MembershipFacetInterface,
@@ -1439,12 +1438,12 @@ export class MembershipFacet__factory extends ContractFactory {
1439
1438
  }
1440
1439
 
1441
1440
  override deploy(
1442
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1441
+ overrides?: Overrides & { from?: string }
1443
1442
  ): Promise<MembershipFacet> {
1444
1443
  return super.deploy(overrides || {}) as Promise<MembershipFacet>;
1445
1444
  }
1446
1445
  override getDeployTransaction(
1447
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1446
+ overrides?: Overrides & { from?: string }
1448
1447
  ): TransactionRequest {
1449
1448
  return super.getDeployTransaction(overrides || {});
1450
1449
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { MockERC721A, MockERC721AInterface } from "../MockERC721A";
8
7
 
9
8
  const _abi = [
@@ -582,12 +581,12 @@ export class MockERC721A__factory extends ContractFactory {
582
581
  }
583
582
 
584
583
  override deploy(
585
- overrides?: Overrides & { from?: PromiseOrValue<string> }
584
+ overrides?: Overrides & { from?: string }
586
585
  ): Promise<MockERC721A> {
587
586
  return super.deploy(overrides || {}) as Promise<MockERC721A>;
588
587
  }
589
588
  override getDeployTransaction(
590
- overrides?: Overrides & { from?: PromiseOrValue<string> }
589
+ overrides?: Overrides & { from?: string }
591
590
  ): TransactionRequest {
592
591
  return super.getDeployTransaction(overrides || {});
593
592
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  MockEntitlementGated,
9
8
  MockEntitlementGatedInterface,
@@ -1003,8 +1002,8 @@ export class MockEntitlementGated__factory extends ContractFactory {
1003
1002
  }
1004
1003
 
1005
1004
  override deploy(
1006
- checker: PromiseOrValue<string>,
1007
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1005
+ checker: string,
1006
+ overrides?: Overrides & { from?: string }
1008
1007
  ): Promise<MockEntitlementGated> {
1009
1008
  return super.deploy(
1010
1009
  checker,
@@ -1012,8 +1011,8 @@ export class MockEntitlementGated__factory extends ContractFactory {
1012
1011
  ) as Promise<MockEntitlementGated>;
1013
1012
  }
1014
1013
  override getDeployTransaction(
1015
- checker: PromiseOrValue<string>,
1016
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1014
+ checker: string,
1015
+ overrides?: Overrides & { from?: string }
1017
1016
  ): TransactionRequest {
1018
1017
  return super.getDeployTransaction(checker, overrides || {});
1019
1018
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  MockLegacyArchitect,
9
8
  MockLegacyArchitectInterface,
@@ -403,12 +402,12 @@ export class MockLegacyArchitect__factory extends ContractFactory {
403
402
  }
404
403
 
405
404
  override deploy(
406
- overrides?: Overrides & { from?: PromiseOrValue<string> }
405
+ overrides?: Overrides & { from?: string }
407
406
  ): Promise<MockLegacyArchitect> {
408
407
  return super.deploy(overrides || {}) as Promise<MockLegacyArchitect>;
409
408
  }
410
409
  override getDeployTransaction(
411
- overrides?: Overrides & { from?: PromiseOrValue<string> }
410
+ overrides?: Overrides & { from?: string }
412
411
  ): TransactionRequest {
413
412
  return super.getDeployTransaction(overrides || {});
414
413
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { NodeRegistry, NodeRegistryInterface } from "../NodeRegistry";
8
7
 
9
8
  const _abi = [
@@ -305,12 +304,12 @@ export class NodeRegistry__factory extends ContractFactory {
305
304
  }
306
305
 
307
306
  override deploy(
308
- overrides?: Overrides & { from?: PromiseOrValue<string> }
307
+ overrides?: Overrides & { from?: string }
309
308
  ): Promise<NodeRegistry> {
310
309
  return super.deploy(overrides || {}) as Promise<NodeRegistry>;
311
310
  }
312
311
  override getDeployTransaction(
313
- overrides?: Overrides & { from?: PromiseOrValue<string> }
312
+ overrides?: Overrides & { from?: string }
314
313
  ): TransactionRequest {
315
314
  return super.getDeployTransaction(overrides || {});
316
315
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  OperatorRegistry,
9
8
  OperatorRegistryInterface,
@@ -224,12 +223,12 @@ export class OperatorRegistry__factory extends ContractFactory {
224
223
  }
225
224
 
226
225
  override deploy(
227
- overrides?: Overrides & { from?: PromiseOrValue<string> }
226
+ overrides?: Overrides & { from?: string }
228
227
  ): Promise<OperatorRegistry> {
229
228
  return super.deploy(overrides || {}) as Promise<OperatorRegistry>;
230
229
  }
231
230
  override getDeployTransaction(
232
- overrides?: Overrides & { from?: PromiseOrValue<string> }
231
+ overrides?: Overrides & { from?: string }
233
232
  ): TransactionRequest {
234
233
  return super.getDeployTransaction(overrides || {});
235
234
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { OwnableFacet, OwnableFacetInterface } from "../OwnableFacet";
8
7
 
9
8
  const _abi = [
@@ -163,12 +162,12 @@ export class OwnableFacet__factory extends ContractFactory {
163
162
  }
164
163
 
165
164
  override deploy(
166
- overrides?: Overrides & { from?: PromiseOrValue<string> }
165
+ overrides?: Overrides & { from?: string }
167
166
  ): Promise<OwnableFacet> {
168
167
  return super.deploy(overrides || {}) as Promise<OwnableFacet>;
169
168
  }
170
169
  override getDeployTransaction(
171
- overrides?: Overrides & { from?: PromiseOrValue<string> }
170
+ overrides?: Overrides & { from?: string }
172
171
  ): TransactionRequest {
173
172
  return super.getDeployTransaction(overrides || {});
174
173
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  PlatformRequirementsFacet,
9
8
  PlatformRequirementsFacetInterface,
@@ -553,12 +552,12 @@ export class PlatformRequirementsFacet__factory extends ContractFactory {
553
552
  }
554
553
 
555
554
  override deploy(
556
- overrides?: Overrides & { from?: PromiseOrValue<string> }
555
+ overrides?: Overrides & { from?: string }
557
556
  ): Promise<PlatformRequirementsFacet> {
558
557
  return super.deploy(overrides || {}) as Promise<PlatformRequirementsFacet>;
559
558
  }
560
559
  override getDeployTransaction(
561
- overrides?: Overrides & { from?: PromiseOrValue<string> }
560
+ overrides?: Overrides & { from?: string }
562
561
  ): TransactionRequest {
563
562
  return super.getDeployTransaction(overrides || {});
564
563
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { PrepayFacet, PrepayFacetInterface } from "../PrepayFacet";
8
7
 
9
8
  const _abi = [
@@ -234,12 +233,12 @@ export class PrepayFacet__factory extends ContractFactory {
234
233
  }
235
234
 
236
235
  override deploy(
237
- overrides?: Overrides & { from?: PromiseOrValue<string> }
236
+ overrides?: Overrides & { from?: string }
238
237
  ): Promise<PrepayFacet> {
239
238
  return super.deploy(overrides || {}) as Promise<PrepayFacet>;
240
239
  }
241
240
  override getDeployTransaction(
242
- overrides?: Overrides & { from?: PromiseOrValue<string> }
241
+ overrides?: Overrides & { from?: string }
243
242
  ): TransactionRequest {
244
243
  return super.getDeployTransaction(overrides || {});
245
244
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  RewardsDistributionV2,
9
8
  RewardsDistributionV2Interface,
@@ -1326,12 +1325,12 @@ export class RewardsDistributionV2__factory extends ContractFactory {
1326
1325
  }
1327
1326
 
1328
1327
  override deploy(
1329
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1328
+ overrides?: Overrides & { from?: string }
1330
1329
  ): Promise<RewardsDistributionV2> {
1331
1330
  return super.deploy(overrides || {}) as Promise<RewardsDistributionV2>;
1332
1331
  }
1333
1332
  override getDeployTransaction(
1334
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1333
+ overrides?: Overrides & { from?: string }
1335
1334
  ): TransactionRequest {
1336
1335
  return super.getDeployTransaction(overrides || {});
1337
1336
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { Roles, RolesInterface } from "../Roles";
8
7
 
9
8
  const _abi = [
@@ -652,13 +651,11 @@ export class Roles__factory extends ContractFactory {
652
651
  }
653
652
  }
654
653
 
655
- override deploy(
656
- overrides?: Overrides & { from?: PromiseOrValue<string> }
657
- ): Promise<Roles> {
654
+ override deploy(overrides?: Overrides & { from?: string }): Promise<Roles> {
658
655
  return super.deploy(overrides || {}) as Promise<Roles>;
659
656
  }
660
657
  override getDeployTransaction(
661
- overrides?: Overrides & { from?: PromiseOrValue<string> }
658
+ overrides?: Overrides & { from?: string }
662
659
  ): TransactionRequest {
663
660
  return super.getDeployTransaction(overrides || {});
664
661
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { SimpleApp, SimpleAppInterface } from "../SimpleApp";
8
7
 
9
8
  const _abi = [
@@ -518,12 +517,12 @@ export class SimpleApp__factory extends ContractFactory {
518
517
  }
519
518
 
520
519
  override deploy(
521
- overrides?: Overrides & { from?: PromiseOrValue<string> }
520
+ overrides?: Overrides & { from?: string }
522
521
  ): Promise<SimpleApp> {
523
522
  return super.deploy(overrides || {}) as Promise<SimpleApp>;
524
523
  }
525
524
  override getDeployTransaction(
526
- overrides?: Overrides & { from?: PromiseOrValue<string> }
525
+ overrides?: Overrides & { from?: string }
527
526
  ): TransactionRequest {
528
527
  return super.getDeployTransaction(overrides || {});
529
528
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type { SpaceOwner, SpaceOwnerInterface } from "../SpaceOwner";
8
7
 
9
8
  const _abi = [
@@ -1164,12 +1163,12 @@ export class SpaceOwner__factory extends ContractFactory {
1164
1163
  }
1165
1164
 
1166
1165
  override deploy(
1167
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1166
+ overrides?: Overrides & { from?: string }
1168
1167
  ): Promise<SpaceOwner> {
1169
1168
  return super.deploy(overrides || {}) as Promise<SpaceOwner>;
1170
1169
  }
1171
1170
  override getDeployTransaction(
1172
- overrides?: Overrides & { from?: PromiseOrValue<string> }
1171
+ overrides?: Overrides & { from?: string }
1173
1172
  ): TransactionRequest {
1174
1173
  return super.getDeployTransaction(overrides || {});
1175
1174
  }
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
  import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
5
5
  import type { Provider, TransactionRequest } from "@ethersproject/providers";
6
- import type { PromiseOrValue } from "../common";
7
6
  import type {
8
7
  StreamRegistry,
9
8
  StreamRegistryInterface,
@@ -574,12 +573,12 @@ export class StreamRegistry__factory extends ContractFactory {
574
573
  }
575
574
 
576
575
  override deploy(
577
- overrides?: Overrides & { from?: PromiseOrValue<string> }
576
+ overrides?: Overrides & { from?: string }
578
577
  ): Promise<StreamRegistry> {
579
578
  return super.deploy(overrides || {}) as Promise<StreamRegistry>;
580
579
  }
581
580
  override getDeployTransaction(
582
- overrides?: Overrides & { from?: PromiseOrValue<string> }
581
+ overrides?: Overrides & { from?: string }
583
582
  ): TransactionRequest {
584
583
  return super.getDeployTransaction(overrides || {});
585
584
  }