Skip to content

Commit

Permalink
remove IERC20System from IBaseWorld
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Oct 30, 2023
1 parent 2d88cf7 commit 820502d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/world-modules/mud.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,5 @@ export default mudConfig({
},
},

excludeSystems: ["UniqueEntitySystem", "PuppetFactorySystem"],
excludeSystems: ["UniqueEntitySystem", "PuppetFactorySystem", "ERC20System"],
});
4 changes: 1 addition & 3 deletions packages/world-modules/src/interfaces/IBaseWorld.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ pragma solidity >=0.8.21;
import { IStore } from "@latticexyz/store/src/IStore.sol";
import { IWorldKernel } from "@latticexyz/world/src/IWorldKernel.sol";

import { IERC20System } from "./IERC20System.sol";

/**
* @title IBaseWorld
* @notice This interface integrates all systems and associated function selectors
* that are dynamically registered in the World during deployment.
* @dev This is an autogenerated file; do not edit manually.
*/
interface IBaseWorld is IStore, IWorldKernel, IERC20System {
interface IBaseWorld is IStore, IWorldKernel {

}

0 comments on commit 820502d

Please sign in to comment.