@latticexyz/world 2.0.0-alpha.83 → 2.0.0-alpha.85
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/package.json +13 -7
- package/types/ethers-contracts/AccessControlTest.ts +472 -271
- package/types/ethers-contracts/CoreModule.ts +22 -15
- package/types/ethers-contracts/DSTest.ts +88 -25
- package/types/ethers-contracts/IBaseWorld.ts +940 -681
- package/types/ethers-contracts/IErrors.ts +3 -4
- package/types/ethers-contracts/IModule.ts +22 -15
- package/types/ethers-contracts/IMulticall3.ts +96 -62
- package/types/ethers-contracts/IRegistrationSystem.ts +249 -200
- package/types/ethers-contracts/IStore.ts +327 -234
- package/types/ethers-contracts/IStoreHook.ts +111 -90
- package/types/ethers-contracts/ISystemHook.ts +30 -25
- package/types/ethers-contracts/IUniqueEntitySystem.ts +12 -9
- package/types/ethers-contracts/IWorldCore.ts +312 -256
- package/types/ethers-contracts/IWorldTestSystem.ts +14 -11
- package/types/ethers-contracts/KeysWithValueHook.ts +111 -90
- package/types/ethers-contracts/KeysWithValueModule.ts +22 -15
- package/types/ethers-contracts/KeysWithValueModuleTest.ts +177 -58
- package/types/ethers-contracts/PayableFallbackSystem.ts +3 -4
- package/types/ethers-contracts/RegistrationModule.ts +22 -15
- package/types/ethers-contracts/RegistrationSystem.ts +249 -200
- package/types/ethers-contracts/SchemaLib.ts +3 -4
- package/types/ethers-contracts/SliceLib.ts +3 -4
- package/types/ethers-contracts/StdAssertions.ts +131 -33
- package/types/ethers-contracts/StdError.ts +17 -5
- package/types/ethers-contracts/StdInvariant.ts +20 -6
- package/types/ethers-contracts/StdStorageSafe.ts +16 -7
- package/types/ethers-contracts/Store.ts +327 -234
- package/types/ethers-contracts/StoreCore.ts +22 -8
- package/types/ethers-contracts/StoreSwitch.ts +3 -4
- package/types/ethers-contracts/StoreView.ts +327 -234
- package/types/ethers-contracts/SystemTest.ts +157 -42
- package/types/ethers-contracts/Test.ts +147 -34
- package/types/ethers-contracts/TestSystem.ts +6 -5
- package/types/ethers-contracts/UniqueEntityModule.ts +22 -15
- package/types/ethers-contracts/UniqueEntityModuleTest.ts +167 -50
- package/types/ethers-contracts/UniqueEntitySystem.ts +10 -9
- package/types/ethers-contracts/Vm.ts +3012 -1924
- package/types/ethers-contracts/VmSafe.ts +2065 -1301
- package/types/ethers-contracts/World.ts +689 -485
- package/types/ethers-contracts/WorldTest.ts +310 -156
- package/types/ethers-contracts/WorldTestSystem.ts +107 -62
- package/types/ethers-contracts/WorldTestTableHook.ts +119 -91
- package/types/ethers-contracts/common.ts +2 -0
- package/types/ethers-contracts/factories/AccessControlTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/CoreModule__factory.ts +10 -11
- package/types/ethers-contracts/factories/DSTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/IBaseWorld__factory.ts +2 -2
- package/types/ethers-contracts/factories/IErrors__factory.ts +2 -2
- package/types/ethers-contracts/factories/IModule__factory.ts +2 -2
- package/types/ethers-contracts/factories/IMulticall3__factory.ts +2 -2
- package/types/ethers-contracts/factories/IRegistrationSystem__factory.ts +2 -2
- package/types/ethers-contracts/factories/IStoreHook__factory.ts +2 -2
- package/types/ethers-contracts/factories/IStore__factory.ts +2 -2
- package/types/ethers-contracts/factories/ISystemHook__factory.ts +2 -2
- package/types/ethers-contracts/factories/IUniqueEntitySystem__factory.ts +2 -2
- package/types/ethers-contracts/factories/IWorldCore__factory.ts +2 -2
- package/types/ethers-contracts/factories/IWorldTestSystem__factory.ts +2 -2
- package/types/ethers-contracts/factories/KeysWithValueHook__factory.ts +10 -11
- package/types/ethers-contracts/factories/KeysWithValueModuleTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/KeysWithValueModule__factory.ts +10 -11
- package/types/ethers-contracts/factories/PayableFallbackSystem__factory.ts +10 -11
- package/types/ethers-contracts/factories/RegistrationModule__factory.ts +10 -11
- package/types/ethers-contracts/factories/RegistrationSystem__factory.ts +10 -11
- package/types/ethers-contracts/factories/SchemaLib__factory.ts +10 -11
- package/types/ethers-contracts/factories/SliceLib__factory.ts +10 -11
- package/types/ethers-contracts/factories/StdAssertions__factory.ts +2 -2
- package/types/ethers-contracts/factories/StdError__factory.ts +10 -11
- package/types/ethers-contracts/factories/StdInvariant__factory.ts +10 -11
- package/types/ethers-contracts/factories/StdStorageSafe__factory.ts +10 -11
- package/types/ethers-contracts/factories/StoreCore__factory.ts +10 -11
- package/types/ethers-contracts/factories/StoreSwitch__factory.ts +10 -11
- package/types/ethers-contracts/factories/StoreView__factory.ts +10 -11
- package/types/ethers-contracts/factories/Store__factory.ts +2 -2
- package/types/ethers-contracts/factories/SystemTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/TestSystem__factory.ts +10 -11
- package/types/ethers-contracts/factories/Test__factory.ts +2 -2
- package/types/ethers-contracts/factories/UniqueEntityModuleTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/UniqueEntityModule__factory.ts +10 -11
- package/types/ethers-contracts/factories/UniqueEntitySystem__factory.ts +10 -11
- package/types/ethers-contracts/factories/VmSafe__factory.ts +2 -2
- package/types/ethers-contracts/factories/Vm__factory.ts +2 -2
- package/types/ethers-contracts/factories/WorldTestSystem__factory.ts +10 -11
- package/types/ethers-contracts/factories/WorldTestTableHook__factory.ts +10 -11
- package/types/ethers-contracts/factories/WorldTest__factory.ts +10 -11
- package/types/ethers-contracts/factories/World__factory.ts +10 -11
- package/types/ethers-contracts/factories/index.ts +45 -0
- package/types/ethers-contracts/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latticexyz/world",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.85+4b532bee",
|
|
5
5
|
"description": "World framework",
|
|
6
6
|
"types": "./types/ethers-contracts/",
|
|
7
7
|
"exports": {
|
|
@@ -30,13 +30,16 @@
|
|
|
30
30
|
"gas-report": "mud gas-report --path test/* --path test/**/* --save gas-report.json"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@latticexyz/
|
|
36
|
-
"@latticexyz/
|
|
37
|
-
"@
|
|
33
|
+
"@ethersproject/abi": "^5.7.0",
|
|
34
|
+
"@ethersproject/providers": "^5.7.2",
|
|
35
|
+
"@latticexyz/cli": "^2.0.0-alpha.85+4b532bee",
|
|
36
|
+
"@latticexyz/config": "^2.0.0-alpha.85+4b532bee",
|
|
37
|
+
"@latticexyz/schema-type": "^2.0.0-alpha.85+4b532bee",
|
|
38
|
+
"@latticexyz/store": "^2.0.0-alpha.85+4b532bee",
|
|
39
|
+
"@typechain/ethers-v5": "^10.2.0",
|
|
38
40
|
"@types/mocha": "^9.1.1",
|
|
39
41
|
"ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
|
|
42
|
+
"ethers": "^5.7.2",
|
|
40
43
|
"forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3",
|
|
41
44
|
"hardhat": "^2.10.1",
|
|
42
45
|
"prettier": "^2.8.4",
|
|
@@ -50,11 +53,14 @@
|
|
|
50
53
|
"typedoc": "^0.23.10"
|
|
51
54
|
},
|
|
52
55
|
"peerDependencies": {
|
|
56
|
+
"@ethersproject/abi": "^5.7.0",
|
|
57
|
+
"@ethersproject/providers": "^5.7.2",
|
|
53
58
|
"@latticexyz/cli": "latest",
|
|
54
59
|
"@latticexyz/schema-type": "latest",
|
|
55
60
|
"@latticexyz/store": "latest",
|
|
56
61
|
"ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
|
|
62
|
+
"ethers": "^5.7.2",
|
|
57
63
|
"forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3"
|
|
58
64
|
},
|
|
59
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "4b532bee7fb0445ed624bd456b97e86a8f41e665"
|
|
60
66
|
}
|