@latticexyz/world-modules 2.0.12-type-resolutions-d4eea91b → 2.0.12
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.d.ts +2 -0
- package/out/ERC20.t.sol/ERC20Test.json +1 -1
- package/out/ERC20Module.sol/ERC20Module.json +1 -1
- package/out/ERC20Module.sol/ERC20ModuleRegistrationLibrary.json +1 -1
- package/out/ERC721Module.sol/ERC721Module.json +1 -1
- package/out/KeysInTableModule.sol/KeysInTableModule.json +1 -1
- package/out/KeysWithValueModule.sol/KeysWithValueModule.json +1 -1
- package/out/Puppet.sol/Puppet.json +1 -1
- package/out/PuppetModule.sol/PuppetModule.json +1 -1
- package/out/StandardDelegationsModule.sol/StandardDelegationsModule.json +1 -1
- package/out/UniqueEntityModule.sol/UniqueEntityModule.json +1 -1
- package/package.json +15 -9
- package/src/modules/erc20-puppet/ERC20Module.sol +3 -1
- package/foundry.toml +0 -15
package/dist/mud.config.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
declare const _default: {
|
2
|
+
readonly sourceDirectory: "src";
|
2
3
|
readonly tables: {
|
3
4
|
readonly KeysWithValue: {
|
4
5
|
readonly tableId: `0x${string}`;
|
@@ -592,6 +593,7 @@ declare const _default: {
|
|
592
593
|
readonly storeImportPath: "@latticexyz/store/src/";
|
593
594
|
readonly userTypesFilename: "common.sol";
|
594
595
|
readonly outputDirectory: string;
|
596
|
+
readonly namespaceDirectories: false;
|
595
597
|
readonly indexFilename: "index.sol";
|
596
598
|
} & {
|
597
599
|
readonly worldInterfaceName: "IWorld";
|