-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extract constants to shared files (#660)
- Loading branch information
Showing
3 changed files
with
12 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8.20; | ||
|
||
string constant INSTANCE_TARGET_NAME = "Instance"; | ||
string constant INSTANCE_ADMIN_TARGET_NAME = "InstanceAdmin"; | ||
string constant INSTANCE_STORE_TARGET_NAME = "InstanceStore"; | ||
string constant PRODUCT_STORE_TARGET_NAME = "ProductStore"; | ||
string constant BUNDLE_SET_TARGET_NAME = "BundleSet"; | ||
string constant RISK_SET_TARGET_NAME = "RiskSet"; | ||
|