@towns-protocol/generated 0.0.229 → 0.0.231
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/dev/abis/IAppRegistry.abi.json +92 -27
- package/dev/abis/IAppRegistry.abi.ts +92 -27
- package/dev/abis/IAppRegistryBase.abi.json +24 -0
- package/dev/abis/IAppRegistryBase.abi.ts +24 -0
- package/dev/abis/RewardsDistributionV2.abi.json +1279 -0
- package/dev/abis/RewardsDistributionV2.abi.ts +1279 -0
- package/dev/abis/Towns.abi.json +1202 -0
- package/dev/abis/Towns.abi.ts +1202 -0
- package/dev/typings/IAppRegistry.ts +93 -22
- package/dev/typings/RewardsDistributionV2.ts +1727 -0
- package/dev/typings/Towns.ts +1783 -0
- package/dev/typings/factories/IAppRegistry__factory.ts +92 -27
- package/dev/typings/factories/MembershipFacet__factory.ts +1 -1
- package/dev/typings/factories/RewardsDistributionV2__factory.ts +1344 -0
- package/dev/typings/factories/Towns__factory.ts +1257 -0
- package/dev/typings/factories/index.ts +3 -0
- package/dev/typings/factories/mainnet/Towns__factory.ts +1351 -0
- package/dev/typings/factories/mainnet/index.ts +4 -0
- package/dev/typings/index.ts +7 -0
- package/dev/typings/mainnet/Towns.ts +1997 -0
- package/dev/typings/mainnet/index.ts +4 -0
- package/package.json +2 -2
package/dev/typings/index.ts
CHANGED
|
@@ -5,6 +5,8 @@ import type * as iMockLegacyArchitectSol from "./IMockLegacyArchitect.sol";
|
|
|
5
5
|
export type { iMockLegacyArchitectSol };
|
|
6
6
|
import type * as iRuleEntitlementSol from "./IRuleEntitlement.sol";
|
|
7
7
|
export type { iRuleEntitlementSol };
|
|
8
|
+
import type * as mainnet from "./mainnet";
|
|
9
|
+
export type { mainnet };
|
|
8
10
|
export type { Architect } from "./Architect";
|
|
9
11
|
export type { Channels } from "./Channels";
|
|
10
12
|
export type { DropFacet } from "./DropFacet";
|
|
@@ -52,10 +54,12 @@ export type { OperatorRegistry } from "./OperatorRegistry";
|
|
|
52
54
|
export type { OwnableFacet } from "./OwnableFacet";
|
|
53
55
|
export type { PlatformRequirementsFacet } from "./PlatformRequirementsFacet";
|
|
54
56
|
export type { PrepayFacet } from "./PrepayFacet";
|
|
57
|
+
export type { RewardsDistributionV2 } from "./RewardsDistributionV2";
|
|
55
58
|
export type { Roles } from "./Roles";
|
|
56
59
|
export type { SpaceOwner } from "./SpaceOwner";
|
|
57
60
|
export type { StreamRegistry } from "./StreamRegistry";
|
|
58
61
|
export type { TokenPausableFacet } from "./TokenPausableFacet";
|
|
62
|
+
export type { Towns } from "./Towns";
|
|
59
63
|
export type { UserEntitlement } from "./UserEntitlement";
|
|
60
64
|
export type { WalletLink } from "./WalletLink";
|
|
61
65
|
export * as factories from "./factories";
|
|
@@ -102,6 +106,8 @@ export { ITipping__factory } from "./factories/ITipping__factory";
|
|
|
102
106
|
export { ITownsPoints__factory } from "./factories/ITownsPoints__factory";
|
|
103
107
|
export { ITreasury__factory } from "./factories/ITreasury__factory";
|
|
104
108
|
export { IWalletLink__factory } from "./factories/IWalletLink__factory";
|
|
109
|
+
export type { Towns } from "./mainnet/Towns";
|
|
110
|
+
export { Towns__factory } from "./factories/mainnet/Towns__factory";
|
|
105
111
|
export { Member__factory } from "./factories/Member__factory";
|
|
106
112
|
export { MembershipFacet__factory } from "./factories/MembershipFacet__factory";
|
|
107
113
|
export { MockEntitlementGated__factory } from "./factories/MockEntitlementGated__factory";
|
|
@@ -112,6 +118,7 @@ export { OperatorRegistry__factory } from "./factories/OperatorRegistry__factory
|
|
|
112
118
|
export { OwnableFacet__factory } from "./factories/OwnableFacet__factory";
|
|
113
119
|
export { PlatformRequirementsFacet__factory } from "./factories/PlatformRequirementsFacet__factory";
|
|
114
120
|
export { PrepayFacet__factory } from "./factories/PrepayFacet__factory";
|
|
121
|
+
export { RewardsDistributionV2__factory } from "./factories/RewardsDistributionV2__factory";
|
|
115
122
|
export { Roles__factory } from "./factories/Roles__factory";
|
|
116
123
|
export { SpaceOwner__factory } from "./factories/SpaceOwner__factory";
|
|
117
124
|
export { StreamRegistry__factory } from "./factories/StreamRegistry__factory";
|