@towns-protocol/generated 0.0.388 → 0.0.390
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 +2 -0
- package/deployments/omega/.env +2 -0
- package/deployments/omega/.env.vite +2 -0
- package/deployments/omega/base/addresses/entryPoint.json +3 -0
- package/deployments/omega/base/addresses/simpleAppBeacon.json +3 -0
- package/dev/.contracts-hash +1 -1
- package/dev/abis/IAppFactory.abi.json +6 -0
- package/dev/abis/IAppFactory.abi.ts +6 -0
- package/dev/abis/IAppFactoryBase.abi.json +6 -0
- package/dev/abis/IAppFactoryBase.abi.ts +6 -0
- package/dev/typings/IAppFactory.ts +8 -5
- package/dev/typings/factories/IAppFactory__factory.ts +6 -0
- package/package.json +3 -3
package/config/deployments.json
CHANGED
|
@@ -121,7 +121,9 @@
|
|
|
121
121
|
"addresses": {
|
|
122
122
|
"appRegistry": "0xB3173F2a02855F07A0C4BfB26D3D87c323fe42BE",
|
|
123
123
|
"baseRegistry": "0x7c0422b31401C936172C897802CF0373B35B7698",
|
|
124
|
+
"entryPoint": "0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108",
|
|
124
125
|
"riverAirdrop": "0xe55fEE191604cdBeb874F87A28Ca89aED401C303",
|
|
126
|
+
"simpleAppBeacon": "0xb803E8B1F563B02a29bA0469e410DfFbdcB1c216",
|
|
125
127
|
"space": "0x34f35E1ECA9C00791bF8121A01c20977d8bEB11C",
|
|
126
128
|
"spaceFactory": "0x9978c826d93883701522d2CA645d5436e5654252",
|
|
127
129
|
"spaceOwner": "0x2824D1235d1CbcA6d61C00C3ceeCB9155cd33a42",
|
package/deployments/omega/.env
CHANGED
|
@@ -2,7 +2,9 @@ RIVER_ENV=omega
|
|
|
2
2
|
BASE_CHAIN_ID=8453
|
|
3
3
|
BASE_ADDRESSES_APP_REGISTRY=0xB3173F2a02855F07A0C4BfB26D3D87c323fe42BE
|
|
4
4
|
BASE_ADDRESSES_BASE_REGISTRY=0x7c0422b31401C936172C897802CF0373B35B7698
|
|
5
|
+
BASE_ADDRESSES_ENTRY_POINT=0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108
|
|
5
6
|
BASE_ADDRESSES_RIVER_AIRDROP=0xe55fEE191604cdBeb874F87A28Ca89aED401C303
|
|
7
|
+
BASE_ADDRESSES_SIMPLE_APP_BEACON=0xb803E8B1F563B02a29bA0469e410DfFbdcB1c216
|
|
6
8
|
BASE_ADDRESSES_SPACE=0x34f35E1ECA9C00791bF8121A01c20977d8bEB11C
|
|
7
9
|
BASE_ADDRESSES_SPACE_FACTORY=0x9978c826d93883701522d2CA645d5436e5654252
|
|
8
10
|
BASE_ADDRESSES_SPACE_OWNER=0x2824D1235d1CbcA6d61C00C3ceeCB9155cd33a42
|
|
@@ -2,7 +2,9 @@ VITE_RIVER_ENV=omega
|
|
|
2
2
|
VITE_BASE_CHAIN_ID=8453
|
|
3
3
|
VITE_BASE_ADDRESSES_APP_REGISTRY=0xB3173F2a02855F07A0C4BfB26D3D87c323fe42BE
|
|
4
4
|
VITE_BASE_ADDRESSES_BASE_REGISTRY=0x7c0422b31401C936172C897802CF0373B35B7698
|
|
5
|
+
VITE_BASE_ADDRESSES_ENTRY_POINT=0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108
|
|
5
6
|
VITE_BASE_ADDRESSES_RIVER_AIRDROP=0xe55fEE191604cdBeb874F87A28Ca89aED401C303
|
|
7
|
+
VITE_BASE_ADDRESSES_SIMPLE_APP_BEACON=0xb803E8B1F563B02a29bA0469e410DfFbdcB1c216
|
|
6
8
|
VITE_BASE_ADDRESSES_SPACE=0x34f35E1ECA9C00791bF8121A01c20977d8bEB11C
|
|
7
9
|
VITE_BASE_ADDRESSES_SPACE_FACTORY=0x9978c826d93883701522d2CA645d5436e5654252
|
|
8
10
|
VITE_BASE_ADDRESSES_SPACE_OWNER=0x2824D1235d1CbcA6d61C00C3ceeCB9155cd33a42
|
package/dev/.contracts-hash
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
43888d6544579134c36e862734c17cae4342cbe6:f939332b550842988507b6c0bc2087844acc1043
|
|
@@ -137,7 +137,7 @@ export interface IAppFactoryInterface extends utils.Interface {
|
|
|
137
137
|
): Result;
|
|
138
138
|
|
|
139
139
|
events: {
|
|
140
|
-
"AppCreated(address,bytes32)": EventFragment;
|
|
140
|
+
"AppCreated(address,bytes32,address)": EventFragment;
|
|
141
141
|
"BeaconAdded(bytes32,address)": EventFragment;
|
|
142
142
|
"BeaconRemoved(bytes32,address)": EventFragment;
|
|
143
143
|
"EntryPointSet(address,address)": EventFragment;
|
|
@@ -152,9 +152,10 @@ export interface IAppFactoryInterface extends utils.Interface {
|
|
|
152
152
|
export interface AppCreatedEventObject {
|
|
153
153
|
app: string;
|
|
154
154
|
uid: string;
|
|
155
|
+
owner: string;
|
|
155
156
|
}
|
|
156
157
|
export type AppCreatedEvent = TypedEvent<
|
|
157
|
-
[string, string],
|
|
158
|
+
[string, string, string],
|
|
158
159
|
AppCreatedEventObject
|
|
159
160
|
>;
|
|
160
161
|
|
|
@@ -324,13 +325,15 @@ export interface IAppFactory extends BaseContract {
|
|
|
324
325
|
};
|
|
325
326
|
|
|
326
327
|
filters: {
|
|
327
|
-
"AppCreated(address,bytes32)"(
|
|
328
|
+
"AppCreated(address,bytes32,address)"(
|
|
328
329
|
app?: string | null,
|
|
329
|
-
uid?: BytesLike | null
|
|
330
|
+
uid?: BytesLike | null,
|
|
331
|
+
owner?: string | null
|
|
330
332
|
): AppCreatedEventFilter;
|
|
331
333
|
AppCreated(
|
|
332
334
|
app?: string | null,
|
|
333
|
-
uid?: BytesLike | null
|
|
335
|
+
uid?: BytesLike | null,
|
|
336
|
+
owner?: string | null
|
|
334
337
|
): AppCreatedEventFilter;
|
|
335
338
|
|
|
336
339
|
"BeaconAdded(bytes32,address)"(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@towns-protocol/generated",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.390",
|
|
4
4
|
"packageManager": "yarn@3.8.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"ethers": "^5.8.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@towns-protocol/contracts": "^0.0.
|
|
17
|
+
"@towns-protocol/contracts": "^0.0.390",
|
|
18
18
|
"@typechain/ethers-v5": "^11.1.2",
|
|
19
19
|
"typechain": "^8.3.2"
|
|
20
20
|
},
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "df4194a154e2d6a548e8c127a9f760a2e08ef9f3"
|
|
39
39
|
}
|