@latticexyz/world-modules 2.2.18-8d0ce55e964e646a1c804c401df01c4deb866f30 → 2.2.18-9fa07c8489f1fbf167d0db01cd9aaa645a29c8e2
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/dist/mud.config.cjs +299 -0
- package/dist/mud.config.cjs.map +1 -0
- package/dist/mud.config.d.cts +1223 -0
- package/dist/mud.config.js +277 -1
- package/dist/mud.config.js.map +1 -1
- package/package.json +19 -10
@@ -0,0 +1,299 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __defProp = Object.defineProperty;
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
+
var __export = (target, all) => {
|
7
|
+
for (var name in all)
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
9
|
+
};
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
12
|
+
for (let key of __getOwnPropNames(from))
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
15
|
+
}
|
16
|
+
return to;
|
17
|
+
};
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
19
|
+
|
20
|
+
// mud.config.ts
|
21
|
+
var mud_config_exports = {};
|
22
|
+
__export(mud_config_exports, {
|
23
|
+
default: () => mud_config_default
|
24
|
+
});
|
25
|
+
module.exports = __toCommonJS(mud_config_exports);
|
26
|
+
var import_world = require("@latticexyz/world");
|
27
|
+
var mud_config_default = (0, import_world.defineWorld)({
|
28
|
+
userTypes: {
|
29
|
+
ResourceId: { filePath: "@latticexyz/store/src/ResourceId.sol", type: "bytes32" }
|
30
|
+
},
|
31
|
+
tables: {
|
32
|
+
/************************************************************************
|
33
|
+
*
|
34
|
+
* KEYS WITH VALUE MODULE
|
35
|
+
*
|
36
|
+
************************************************************************/
|
37
|
+
KeysWithValue: {
|
38
|
+
schema: {
|
39
|
+
valueHash: "bytes32",
|
40
|
+
keysWithValue: "bytes32[]"
|
41
|
+
// For now only supports 1 key per value
|
42
|
+
},
|
43
|
+
key: ["valueHash"],
|
44
|
+
codegen: {
|
45
|
+
outputDirectory: "../modules/keyswithvalue/tables",
|
46
|
+
tableIdArgument: true,
|
47
|
+
storeArgument: true
|
48
|
+
}
|
49
|
+
},
|
50
|
+
/************************************************************************
|
51
|
+
*
|
52
|
+
* KEYS IN TABLE MODULE
|
53
|
+
*
|
54
|
+
************************************************************************/
|
55
|
+
KeysInTable: {
|
56
|
+
schema: {
|
57
|
+
sourceTableId: "ResourceId",
|
58
|
+
keys0: "bytes32[]",
|
59
|
+
keys1: "bytes32[]",
|
60
|
+
keys2: "bytes32[]",
|
61
|
+
keys3: "bytes32[]",
|
62
|
+
keys4: "bytes32[]"
|
63
|
+
},
|
64
|
+
key: ["sourceTableId"],
|
65
|
+
codegen: {
|
66
|
+
outputDirectory: "../modules/keysintable/tables",
|
67
|
+
storeArgument: true
|
68
|
+
}
|
69
|
+
},
|
70
|
+
UsedKeysIndex: {
|
71
|
+
schema: {
|
72
|
+
sourceTableId: "ResourceId",
|
73
|
+
keysHash: "bytes32",
|
74
|
+
has: "bool",
|
75
|
+
index: "uint40"
|
76
|
+
},
|
77
|
+
key: ["sourceTableId", "keysHash"],
|
78
|
+
codegen: {
|
79
|
+
outputDirectory: "../modules/keysintable/tables",
|
80
|
+
dataStruct: false,
|
81
|
+
storeArgument: true
|
82
|
+
}
|
83
|
+
},
|
84
|
+
/************************************************************************
|
85
|
+
*
|
86
|
+
* UNIQUE ENTITY MODULE
|
87
|
+
*
|
88
|
+
************************************************************************/
|
89
|
+
UniqueEntity: {
|
90
|
+
schema: {
|
91
|
+
value: "uint256"
|
92
|
+
},
|
93
|
+
key: [],
|
94
|
+
codegen: {
|
95
|
+
outputDirectory: "../modules/uniqueentity/tables",
|
96
|
+
tableIdArgument: true,
|
97
|
+
storeArgument: true
|
98
|
+
}
|
99
|
+
},
|
100
|
+
/************************************************************************
|
101
|
+
*
|
102
|
+
* STD DELEGATIONS MODULE
|
103
|
+
*
|
104
|
+
************************************************************************/
|
105
|
+
CallboundDelegations: {
|
106
|
+
schema: {
|
107
|
+
delegator: "address",
|
108
|
+
delegatee: "address",
|
109
|
+
systemId: "ResourceId",
|
110
|
+
callDataHash: "bytes32",
|
111
|
+
availableCalls: "uint256"
|
112
|
+
},
|
113
|
+
key: ["delegator", "delegatee", "systemId", "callDataHash"],
|
114
|
+
codegen: {
|
115
|
+
outputDirectory: "../modules/std-delegations/tables"
|
116
|
+
}
|
117
|
+
},
|
118
|
+
SystemboundDelegations: {
|
119
|
+
schema: {
|
120
|
+
delegator: "address",
|
121
|
+
delegatee: "address",
|
122
|
+
systemId: "ResourceId",
|
123
|
+
availableCalls: "uint256"
|
124
|
+
},
|
125
|
+
key: ["delegator", "delegatee", "systemId"],
|
126
|
+
codegen: {
|
127
|
+
outputDirectory: "../modules/std-delegations/tables"
|
128
|
+
}
|
129
|
+
},
|
130
|
+
TimeboundDelegations: {
|
131
|
+
schema: {
|
132
|
+
delegator: "address",
|
133
|
+
delegatee: "address",
|
134
|
+
maxTimestamp: "uint256"
|
135
|
+
},
|
136
|
+
key: ["delegator", "delegatee"],
|
137
|
+
codegen: {
|
138
|
+
outputDirectory: "../modules/std-delegations/tables"
|
139
|
+
}
|
140
|
+
},
|
141
|
+
/************************************************************************
|
142
|
+
*
|
143
|
+
* PUPPET MODULE
|
144
|
+
*
|
145
|
+
************************************************************************/
|
146
|
+
PuppetRegistry: {
|
147
|
+
schema: {
|
148
|
+
systemId: "ResourceId",
|
149
|
+
puppet: "address"
|
150
|
+
},
|
151
|
+
key: ["systemId"],
|
152
|
+
codegen: {
|
153
|
+
outputDirectory: "../modules/puppet/tables",
|
154
|
+
tableIdArgument: true
|
155
|
+
}
|
156
|
+
},
|
157
|
+
/************************************************************************
|
158
|
+
*
|
159
|
+
* TOKEN TABLES (SHARED BY ERC20, ERC721)
|
160
|
+
*
|
161
|
+
************************************************************************/
|
162
|
+
Balances: {
|
163
|
+
schema: {
|
164
|
+
account: "address",
|
165
|
+
value: "uint256"
|
166
|
+
},
|
167
|
+
key: ["account"],
|
168
|
+
codegen: {
|
169
|
+
outputDirectory: "../modules/tokens/tables",
|
170
|
+
tableIdArgument: true
|
171
|
+
}
|
172
|
+
},
|
173
|
+
/************************************************************************
|
174
|
+
*
|
175
|
+
* ERC20 MODULE
|
176
|
+
*
|
177
|
+
************************************************************************/
|
178
|
+
ERC20Metadata: {
|
179
|
+
schema: {
|
180
|
+
decimals: "uint8",
|
181
|
+
name: "string",
|
182
|
+
symbol: "string"
|
183
|
+
},
|
184
|
+
key: [],
|
185
|
+
codegen: {
|
186
|
+
outputDirectory: "../modules/erc20-puppet/tables",
|
187
|
+
tableIdArgument: true
|
188
|
+
}
|
189
|
+
},
|
190
|
+
Allowances: {
|
191
|
+
schema: {
|
192
|
+
account: "address",
|
193
|
+
spender: "address",
|
194
|
+
value: "uint256"
|
195
|
+
},
|
196
|
+
key: ["account", "spender"],
|
197
|
+
codegen: {
|
198
|
+
outputDirectory: "../modules/erc20-puppet/tables",
|
199
|
+
tableIdArgument: true
|
200
|
+
}
|
201
|
+
},
|
202
|
+
TotalSupply: {
|
203
|
+
schema: {
|
204
|
+
totalSupply: "uint256"
|
205
|
+
},
|
206
|
+
key: [],
|
207
|
+
codegen: {
|
208
|
+
outputDirectory: "../modules/erc20-puppet/tables",
|
209
|
+
tableIdArgument: true
|
210
|
+
}
|
211
|
+
},
|
212
|
+
ERC20Registry: {
|
213
|
+
schema: {
|
214
|
+
namespaceId: "ResourceId",
|
215
|
+
tokenAddress: "address"
|
216
|
+
},
|
217
|
+
key: ["namespaceId"],
|
218
|
+
codegen: {
|
219
|
+
outputDirectory: "../modules/erc20-puppet/tables",
|
220
|
+
tableIdArgument: true
|
221
|
+
}
|
222
|
+
},
|
223
|
+
/************************************************************************
|
224
|
+
*
|
225
|
+
* ERC721 MODULE
|
226
|
+
*
|
227
|
+
************************************************************************/
|
228
|
+
ERC721Metadata: {
|
229
|
+
schema: {
|
230
|
+
name: "string",
|
231
|
+
symbol: "string",
|
232
|
+
baseURI: "string"
|
233
|
+
},
|
234
|
+
key: [],
|
235
|
+
codegen: {
|
236
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
237
|
+
tableIdArgument: true
|
238
|
+
}
|
239
|
+
},
|
240
|
+
TokenURI: {
|
241
|
+
schema: {
|
242
|
+
tokenId: "uint256",
|
243
|
+
tokenURI: "string"
|
244
|
+
},
|
245
|
+
key: ["tokenId"],
|
246
|
+
codegen: {
|
247
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
248
|
+
tableIdArgument: true
|
249
|
+
}
|
250
|
+
},
|
251
|
+
Owners: {
|
252
|
+
schema: {
|
253
|
+
tokenId: "uint256",
|
254
|
+
owner: "address"
|
255
|
+
},
|
256
|
+
key: ["tokenId"],
|
257
|
+
codegen: {
|
258
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
259
|
+
tableIdArgument: true
|
260
|
+
}
|
261
|
+
},
|
262
|
+
TokenApproval: {
|
263
|
+
schema: {
|
264
|
+
tokenId: "uint256",
|
265
|
+
account: "address"
|
266
|
+
},
|
267
|
+
key: ["tokenId"],
|
268
|
+
codegen: {
|
269
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
270
|
+
tableIdArgument: true
|
271
|
+
}
|
272
|
+
},
|
273
|
+
OperatorApproval: {
|
274
|
+
schema: {
|
275
|
+
owner: "address",
|
276
|
+
operator: "address",
|
277
|
+
approved: "bool"
|
278
|
+
},
|
279
|
+
key: ["owner", "operator"],
|
280
|
+
codegen: {
|
281
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
282
|
+
tableIdArgument: true
|
283
|
+
}
|
284
|
+
},
|
285
|
+
ERC721Registry: {
|
286
|
+
schema: {
|
287
|
+
namespaceId: "ResourceId",
|
288
|
+
tokenAddress: "address"
|
289
|
+
},
|
290
|
+
key: ["namespaceId"],
|
291
|
+
codegen: {
|
292
|
+
outputDirectory: "../modules/erc721-puppet/tables",
|
293
|
+
tableIdArgument: true
|
294
|
+
}
|
295
|
+
}
|
296
|
+
},
|
297
|
+
excludeSystems: ["UniqueEntitySystem", "PuppetFactorySystem", "ERC20System", "ERC721System"]
|
298
|
+
});
|
299
|
+
//# sourceMappingURL=mud.config.cjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../mud.config.ts"],"sourcesContent":["import { defineWorld } from \"@latticexyz/world\";\n\nexport default defineWorld({\n userTypes: {\n ResourceId: { filePath: \"@latticexyz/store/src/ResourceId.sol\", type: \"bytes32\" },\n },\n tables: {\n /************************************************************************\n *\n * KEYS WITH VALUE MODULE\n *\n ************************************************************************/\n KeysWithValue: {\n schema: {\n valueHash: \"bytes32\",\n keysWithValue: \"bytes32[]\", // For now only supports 1 key per value\n },\n key: [\"valueHash\"],\n codegen: {\n outputDirectory: \"../modules/keyswithvalue/tables\",\n tableIdArgument: true,\n storeArgument: true,\n },\n },\n /************************************************************************\n *\n * KEYS IN TABLE MODULE\n *\n ************************************************************************/\n KeysInTable: {\n schema: {\n sourceTableId: \"ResourceId\",\n keys0: \"bytes32[]\",\n keys1: \"bytes32[]\",\n keys2: \"bytes32[]\",\n keys3: \"bytes32[]\",\n keys4: \"bytes32[]\",\n },\n key: [\"sourceTableId\"],\n codegen: {\n outputDirectory: \"../modules/keysintable/tables\",\n storeArgument: true,\n },\n },\n UsedKeysIndex: {\n schema: {\n sourceTableId: \"ResourceId\",\n keysHash: \"bytes32\",\n has: \"bool\",\n index: \"uint40\",\n },\n key: [\"sourceTableId\", \"keysHash\"],\n codegen: {\n outputDirectory: \"../modules/keysintable/tables\",\n dataStruct: false,\n storeArgument: true,\n },\n },\n /************************************************************************\n *\n * UNIQUE ENTITY MODULE\n *\n ************************************************************************/\n UniqueEntity: {\n schema: {\n value: \"uint256\",\n },\n key: [],\n codegen: {\n outputDirectory: \"../modules/uniqueentity/tables\",\n tableIdArgument: true,\n storeArgument: true,\n },\n },\n /************************************************************************\n *\n * STD DELEGATIONS MODULE\n *\n ************************************************************************/\n CallboundDelegations: {\n schema: {\n delegator: \"address\",\n delegatee: \"address\",\n systemId: \"ResourceId\",\n callDataHash: \"bytes32\",\n availableCalls: \"uint256\",\n },\n key: [\"delegator\", \"delegatee\", \"systemId\", \"callDataHash\"],\n codegen: {\n outputDirectory: \"../modules/std-delegations/tables\",\n },\n },\n SystemboundDelegations: {\n schema: {\n delegator: \"address\",\n delegatee: \"address\",\n systemId: \"ResourceId\",\n availableCalls: \"uint256\",\n },\n key: [\"delegator\", \"delegatee\", \"systemId\"],\n codegen: {\n outputDirectory: \"../modules/std-delegations/tables\",\n },\n },\n TimeboundDelegations: {\n schema: {\n delegator: \"address\",\n delegatee: \"address\",\n maxTimestamp: \"uint256\",\n },\n key: [\"delegator\", \"delegatee\"],\n codegen: {\n outputDirectory: \"../modules/std-delegations/tables\",\n },\n },\n /************************************************************************\n *\n * PUPPET MODULE\n *\n ************************************************************************/\n PuppetRegistry: {\n schema: {\n systemId: \"ResourceId\",\n puppet: \"address\",\n },\n key: [\"systemId\"],\n codegen: {\n outputDirectory: \"../modules/puppet/tables\",\n tableIdArgument: true,\n },\n },\n /************************************************************************\n *\n * TOKEN TABLES (SHARED BY ERC20, ERC721)\n *\n ************************************************************************/\n Balances: {\n schema: {\n account: \"address\",\n value: \"uint256\",\n },\n key: [\"account\"],\n codegen: {\n outputDirectory: \"../modules/tokens/tables\",\n tableIdArgument: true,\n },\n },\n /************************************************************************\n *\n * ERC20 MODULE\n *\n ************************************************************************/\n ERC20Metadata: {\n schema: {\n decimals: \"uint8\",\n name: \"string\",\n symbol: \"string\",\n },\n key: [],\n codegen: {\n outputDirectory: \"../modules/erc20-puppet/tables\",\n tableIdArgument: true,\n },\n },\n Allowances: {\n schema: {\n account: \"address\",\n spender: \"address\",\n value: \"uint256\",\n },\n key: [\"account\", \"spender\"],\n codegen: {\n outputDirectory: \"../modules/erc20-puppet/tables\",\n tableIdArgument: true,\n },\n },\n TotalSupply: {\n schema: {\n totalSupply: \"uint256\",\n },\n key: [],\n codegen: {\n outputDirectory: \"../modules/erc20-puppet/tables\",\n tableIdArgument: true,\n },\n },\n ERC20Registry: {\n schema: {\n namespaceId: \"ResourceId\",\n tokenAddress: \"address\",\n },\n key: [\"namespaceId\"],\n codegen: {\n outputDirectory: \"../modules/erc20-puppet/tables\",\n tableIdArgument: true,\n },\n },\n /************************************************************************\n *\n * ERC721 MODULE\n *\n ************************************************************************/\n ERC721Metadata: {\n schema: {\n name: \"string\",\n symbol: \"string\",\n baseURI: \"string\",\n },\n key: [],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n TokenURI: {\n schema: {\n tokenId: \"uint256\",\n tokenURI: \"string\",\n },\n key: [\"tokenId\"],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n Owners: {\n schema: {\n tokenId: \"uint256\",\n owner: \"address\",\n },\n key: [\"tokenId\"],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n TokenApproval: {\n schema: {\n tokenId: \"uint256\",\n account: \"address\",\n },\n key: [\"tokenId\"],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n OperatorApproval: {\n schema: {\n owner: \"address\",\n operator: \"address\",\n approved: \"bool\",\n },\n key: [\"owner\", \"operator\"],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n ERC721Registry: {\n schema: {\n namespaceId: \"ResourceId\",\n tokenAddress: \"address\",\n },\n key: [\"namespaceId\"],\n codegen: {\n outputDirectory: \"../modules/erc721-puppet/tables\",\n tableIdArgument: true,\n },\n },\n },\n excludeSystems: [\"UniqueEntitySystem\", \"PuppetFactorySystem\", \"ERC20System\", \"ERC721System\"],\n});\n"],"mappings":"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","names":[]}
|