@@ -6,7 +6,7 @@ import { ResourceId, WorldResourceIdLib } from "@latticexyz/world/src/WorldResou
66
77library ModuleConstants {
88 bytes14 internal constant NAMESPACE = "erc20-module " ;
9- bytes16 internal constant REGISTRY_TABLE_NAME = "ERC20_REGISTRY " ;
9+ bytes16 internal constant REGISTRY_TABLE_NAME = "ERC20Registry " ;
1010
1111 function namespaceId () internal pure returns (ResourceId) {
1212 return WorldResourceIdLib.encodeNamespace (NAMESPACE);
@@ -18,19 +18,19 @@ library ModuleConstants {
1818}
1919
2020library ERC20TableNames {
21- bytes16 internal constant TOTAL_SUPPLY = "TOTAL_SUPPLY " ;
21+ bytes16 internal constant TOTAL_SUPPLY = "TotalSupply " ;
2222
23- bytes16 internal constant BALANCES = "BALANCES " ;
23+ bytes16 internal constant BALANCES = "Balances " ;
2424
25- bytes16 internal constant ALLOWANCES = "ALLOWANCES " ;
25+ bytes16 internal constant ALLOWANCES = "Allowances " ;
2626
27- bytes16 internal constant METADATA = "METADATA " ;
27+ bytes16 internal constant METADATA = "Metadata " ;
2828}
2929
3030library OwnableTableNames {
31- bytes16 internal constant OWNER = "OWNER " ;
31+ bytes16 internal constant OWNER = "Owner " ;
3232}
3333
3434library PausableTableNames {
35- bytes16 internal constant PAUSED = "PAUSED " ;
35+ bytes16 internal constant PAUSED = "Paused " ;
3636}
0 commit comments