-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: erc5564 contract refs * fix: erc6538 contract addr refs
- Loading branch information
1 parent
bc3b403
commit 9bce106
Showing
12 changed files
with
32 additions
and
41 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
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
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
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
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
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
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
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
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,9 +1,9 @@ | ||
// Singleton announcer contract addresses | ||
export enum ERC5564_CONTRACT { | ||
SEPOLIA = '0x55649E01B5Df198D18D95b5cc5051630cfD45564' | ||
} | ||
// This is the same for all chains | ||
export const ERC5564_CONTRACT_ADDRESS = | ||
'0x55649E01B5Df198D18D95b5cc5051630cfD45564'; | ||
|
||
// Singleton registry contract addresses | ||
export enum ERC6538_CONTRACT { | ||
SEPOLIA = '0x6538E6bf4B0eBd30A8Ea093027Ac2422ce5d6538' | ||
} | ||
// This is the same for all chains | ||
export const ERC6538_CONTRACT_ADDRESS = | ||
'0x6538E6bf4B0eBd30A8Ea093027Ac2422ce5d6538'; |
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,5 @@ | ||
export { ERC5564_CONTRACT, ERC6538_CONTRACT } from './contractAddresses'; | ||
export { | ||
ERC5564_CONTRACT_ADDRESS, | ||
ERC6538_CONTRACT_ADDRESS | ||
} from './contractAddresses'; | ||
export { ERC5564_BYTECODE, ERC6538_BYTECODE } from './bytecode'; |
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
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