@towns-protocol/generated 0.0.335 → 0.0.337
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/config/deployments.json +3 -0
- package/deployments/alpha/.env +13 -0
- package/deployments/alpha/base/addresses/subscriptionModule.json +3 -0
- package/deployments/delta/.env +12 -0
- package/deployments/gamma/.env +18 -0
- package/deployments/omega/.env +21 -0
- package/dev/.contracts-hash +1 -1
- package/dev/abis/SubscriptionModuleFacet.abi.json +885 -0
- package/dev/abis/SubscriptionModuleFacet.abi.ts +885 -0
- package/dev/typings/SubscriptionModuleFacet.ts +1180 -0
- package/dev/typings/factories/SubscriptionModuleFacet__factory.ts +950 -0
- package/dev/typings/factories/index.ts +1 -0
- package/dev/typings/index.ts +2 -0
- package/package.json +2 -2
- package/scripts/copy-addresses.sh +3 -0
|
@@ -60,6 +60,7 @@ export { Roles__factory } from "./Roles__factory";
|
|
|
60
60
|
export { SimpleApp__factory } from "./SimpleApp__factory";
|
|
61
61
|
export { SpaceOwner__factory } from "./SpaceOwner__factory";
|
|
62
62
|
export { StreamRegistry__factory } from "./StreamRegistry__factory";
|
|
63
|
+
export { SubscriptionModuleFacet__factory } from "./SubscriptionModuleFacet__factory";
|
|
63
64
|
export { TokenPausableFacet__factory } from "./TokenPausableFacet__factory";
|
|
64
65
|
export { Towns__factory } from "./Towns__factory";
|
|
65
66
|
export { UserEntitlement__factory } from "./UserEntitlement__factory";
|
package/dev/typings/index.ts
CHANGED
|
@@ -64,6 +64,7 @@ export type { Roles } from "./Roles";
|
|
|
64
64
|
export type { SimpleApp } from "./SimpleApp";
|
|
65
65
|
export type { SpaceOwner } from "./SpaceOwner";
|
|
66
66
|
export type { StreamRegistry } from "./StreamRegistry";
|
|
67
|
+
export type { SubscriptionModuleFacet } from "./SubscriptionModuleFacet";
|
|
67
68
|
export type { TokenPausableFacet } from "./TokenPausableFacet";
|
|
68
69
|
export type { Towns } from "./Towns";
|
|
69
70
|
export type { UserEntitlement } from "./UserEntitlement";
|
|
@@ -132,6 +133,7 @@ export { Roles__factory } from "./factories/Roles__factory";
|
|
|
132
133
|
export { SimpleApp__factory } from "./factories/SimpleApp__factory";
|
|
133
134
|
export { SpaceOwner__factory } from "./factories/SpaceOwner__factory";
|
|
134
135
|
export { StreamRegistry__factory } from "./factories/StreamRegistry__factory";
|
|
136
|
+
export { SubscriptionModuleFacet__factory } from "./factories/SubscriptionModuleFacet__factory";
|
|
135
137
|
export { TokenPausableFacet__factory } from "./factories/TokenPausableFacet__factory";
|
|
136
138
|
export { UserEntitlement__factory } from "./factories/UserEntitlement__factory";
|
|
137
139
|
export { WalletLink__factory } from "./factories/WalletLink__factory";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@towns-protocol/generated",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.337",
|
|
4
4
|
"packageManager": "yarn@3.8.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "a8dae6ecef2c3bc7713acf56e6738fd47d608482"
|
|
30
30
|
}
|