-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(create-mud): make worlds.json address type more specific (#2685)
- Loading branch information
Showing
9 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"create-mud": patch | ||
--- | ||
|
||
Made `worlds.json`'s `address` type more like viem's `Hex` type so it's easy to pass through as an argument. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
declare const worlds: Partial<Record<string, { address: string; blockNumber?: number }>>; | ||
declare const worlds: Partial<Record<string, { address: `0x${string}`; blockNumber?: number }>>; | ||
export default worlds; |